diff options
Diffstat (limited to 'guides/source/3_1_release_notes.md')
-rw-r--r-- | guides/source/3_1_release_notes.md | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/guides/source/3_1_release_notes.md b/guides/source/3_1_release_notes.md index 1d79ea5b5a..5c99892e39 100644 --- a/guides/source/3_1_release_notes.md +++ b/guides/source/3_1_release_notes.md @@ -129,11 +129,15 @@ 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 -------------------------------- ```bash -# You should have the 'rails' rubygem installed +# You should have the 'rails' RubyGem installed $ rails new myapp $ cd myapp ``` |