aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-08-22 13:05:51 -0500
committerGitHub <noreply@github.com>2018-08-22 13:05:51 -0500
commit541b78a71fb1dbd926916177168a327bee239c4a (patch)
tree8e5ea6f502aba8cdd3443a1794bda70cac9aa3cd
parent4e9ff46cea5ac48aa2c976f0cc4edb8ba7225746 (diff)
parentd587cf2325c26467e820f8997824c744ba7bc550 (diff)
downloadrails-541b78a71fb1dbd926916177168a327bee239c4a.tar.gz
rails-541b78a71fb1dbd926916177168a327bee239c4a.tar.bz2
rails-541b78a71fb1dbd926916177168a327bee239c4a.zip
Merge pull request #33685 from krusty3002/master
Added explanation about new_framework_defaults.rb file [ci skip]
-rw-r--r--guides/source/upgrading_ruby_on_rails.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index 319bc09be3..89de180508 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -66,6 +66,13 @@ 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.
+### Configure Framework Defaults
+
+The new Rails version might have different configuration defaults than the previous version. However, after following the steps described above, your application would still run with configuration defaults from the *previous* Rails version. That's because the value for `config.load_defaults` in `config/application.rb` has not been changed yet.
+
+To allow you to upgrade to new defaults one by one, the update task has created a file `config/initializers/new_framework_defaults.rb`. Once your application is ready to run with new defaults, you can remove this file and flip the `config.load_defaults` value.
+
+
Upgrading from Rails 5.2 to Rails 6.0
-------------------------------------