diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2017-12-27 21:50:06 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2017-12-27 21:50:06 +0530 |
commit | f96699511a2c426e036c57196a6eaaa540f9617c (patch) | |
tree | d29b74149b8f55d0ab8d73131b98df9beb7d45e4 /guides/source | |
parent | 17ad4eb6fb25e0c1dbd6772718a9097d63b64ad2 (diff) | |
download | rails-f96699511a2c426e036c57196a6eaaa540f9617c.tar.gz rails-f96699511a2c426e036c57196a6eaaa540f9617c.tar.bz2 rails-f96699511a2c426e036c57196a6eaaa540f9617c.zip |
Added a note about bootsnap in the Rails 5.2 upgrade guide [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index bb4ef26876..cba2600182 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -65,6 +65,17 @@ Overwrite /myapp/config/application.rb? (enter "h" for help) [Ynaqdh] Don't forget to review the difference, to see if there were any unexpected changes. +Upgrading from Rails 5.1 to Rails 5.2 +------------------------------------- + +For more information on changes made to Rails 5.2 please see the [release notes](5_2_release_notes.html). + +### Bootsnap + +Rails 5.2 adds bootsnap gem in the [newly generated app's Gemfile](https://github.com/rails/rails/pull/29313). +The `app:update` task sets it up in `boot.rb`. If you want to use it, then add it in the Gemfile, +otherwise change the `boot.rb` to not use bootsnap. + Upgrading from Rails 5.0 to Rails 5.1 ------------------------------------- |