1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Added a note about bootsnap in the Rails 5.2 upgrade guide [ci skip]

This commit is contained in:
Prathamesh Sonpatki 2017-12-27 21:50:06 +05:30
parent 17ad4eb6fb
commit f96699511a
No known key found for this signature in database
GPG key ID: 8B90F6B89E2BCB71

View file

@ -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
-------------------------------------