diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2012-10-24 10:47:07 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2012-10-24 10:47:07 -0500 |
commit | 276e7b0a1d4b6b742733ee5b5c7dde4dd37a5e11 (patch) | |
tree | 26c0059d488bcd3e9f32329a21e93230fe90030b /guides/source | |
parent | 211accced6ccd457f54650bc3b7cf184f8ca0bba (diff) | |
download | rails-276e7b0a1d4b6b742733ee5b5c7dde4dd37a5e11.tar.gz rails-276e7b0a1d4b6b742733ee5b5c7dde4dd37a5e11.tar.bz2 rails-276e7b0a1d4b6b742733ee5b5c7dde4dd37a5e11.zip |
Update upgrading notes: users should stop using :concat and :cache options in asset tags
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/3_1_release_notes.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/guides/source/3_1_release_notes.md b/guides/source/3_1_release_notes.md index 1d79ea5b5a..d3f8abe0c8 100644 --- a/guides/source/3_1_release_notes.md +++ b/guides/source/3_1_release_notes.md @@ -129,6 +129,10 @@ config.static_cache_control = "public, max-age=3600" end ``` +#### Remove :cache and :concat options in asset helpers references in views + +* With the Asset Pipeline the :cache and :concat options aren't used anymore, delete these options from your views. + Creating a Rails 3.1 application -------------------------------- |