diff options
author | Eileen M. Uchitelle <eileencodes@users.noreply.github.com> | 2018-01-18 15:02:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-18 15:02:02 -0500 |
commit | face13715eab2e5a8be24516ac804ee457c7eed2 (patch) | |
tree | 124b1d9c33ca5ae1863871d945d284e4ec848a35 /guides | |
parent | 7df7780e40b08ebc27b9a9650148e93f144ab1e6 (diff) | |
parent | f96699511a2c426e036c57196a6eaaa540f9617c (diff) | |
download | rails-face13715eab2e5a8be24516ac804ee457c7eed2.tar.gz rails-face13715eab2e5a8be24516ac804ee457c7eed2.tar.bz2 rails-face13715eab2e5a8be24516ac804ee457c7eed2.zip |
Merge pull request #31577 from prathamesh-sonpatki/upgrade-guide-bootsnap
Added a note about bootsnap in the Rails 5.2 upgrade guide [ci skip]
Diffstat (limited to 'guides')
-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 d406b7b98b..51b284ff12 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 ------------------------------------- |