I had the same problem with my rake task.
namespace :assets do
task :package do
Jammit.package!
end
end
This happens when you use the embed_assets option. To fix this, I added: the base_url parameter for .package! and now it works as before.
namespace :assets do
task :package do
Jammit.package! :base_url => "http://mysite.org/"
end
end
source
share