-
Don't serve up assets without digests in development.
If
config.assets.digest = true
andconfig.assets.raise_runtime_errors = true
, serve an asset only if the request has a digest.Dan Kang
-
Fix issues related
config.assets.manifest
option, including issues withassets:precompile
Rake task.Johnny Shields
-
Correct NameError on Sprockets::Rails::VERSION.
It turns out
sprockets/railtie
gets required directly, without ever loadingsprockets/rails
.Matthew Draper
-
Fix the precompile checker to to use asset's logical path.
Matthew Draper
-
Doesn't require
depend_on_assset
if any sprockets helper is used.Matthew Draper
- Support Rails 3 applications. It was removed in the previous release but it was release inside a 2.1.0 by mistake.
-
Drop support to Rails 3 applications.
-
Respect
Rails.public_path
when computing the path to the manifest file.Steven Wisener
-
Restore
config.assets.manifest
option, which was removed in Rails 4.0.0. This change does not affect existing behavior if the option is not set.Johnny Shields
-
Respect
asset_host
andrelative_url_root
to invalidate cache.Lucas Mazza
-
Assets not in the precompile list can be checked for errors by setting
config.assets.raise_runtime_errors = true
in any environmentRichard Schneeman
-
Allow keep value to be specified for
assets:clean
run with args for exampleassets:clean[0]
will keep no old asset copiesRichard Schneeman
-
Fix
javascript_include_tag
/stylesheet_include_tag
helpers whendebug: => false
is used.Guillermo Iguaran
-
Fix issue when precompiling html.erb files.
Fixes #45.
Zach Ohlgren