diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-10-17 22:17:08 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-10-17 22:18:08 -0300 |
commit | d7f8b2a06811ca3266946b1e6bef27cd5ce09762 (patch) | |
tree | c61f6bad54222436e62ef5f78ad13ef7a5a10789 | |
parent | e6278348b7a4b2df0b10336f0287f064e068fa3f (diff) | |
download | rails-d7f8b2a06811ca3266946b1e6bef27cd5ce09762.tar.gz rails-d7f8b2a06811ca3266946b1e6bef27cd5ce09762.tar.bz2 rails-d7f8b2a06811ca3266946b1e6bef27cd5ce09762.zip |
Add more CHANGELOG entries from #7927
Also remove references for RAILS_ASSET_ID from the guides
[ci skip]
-rw-r--r-- | actionpack/CHANGELOG.md | 5 | ||||
-rw-r--r-- | guides/source/configuring.md | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index b84b461ce8..60aa675c3d 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,5 +1,10 @@ ## Rails 4.0.0 (unreleased) ## +* Remove support for the RAILS_ASSET_ID environment configuration + (no longer needed now that we have the asset pipeline). + + *Josh Peek* + * Remove old asset_path configuration (no longer needed now that we have the asset pipeline). *Josh Peek* diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 1a9a2abef9..ab2766054b 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -567,8 +567,6 @@ Some parts of Rails can also be configured externally by supplying environment v * `ENV["RAILS_RELATIVE_URL_ROOT"]` is used by the routing code to recognize URLs when you deploy your application to a subdirectory. -* `ENV["RAILS_ASSET_ID"]` will override the default cache-busting timestamps that Rails generates for downloadable assets. - * `ENV["RAILS_CACHE_ID"]` and `ENV["RAILS_APP_VERSION"]` are used to generate expanded cache keys in Rails' caching code. This allows you to have multiple separate caches from the same application. |