diff options
author | Claas Zurawski <claas.zurawski@googlemail.com> | 2018-08-22 10:15:49 +0200 |
---|---|---|
committer | Claas Zurawski <claas.zurawski@googlemail.com> | 2018-08-22 10:15:49 +0200 |
commit | d587cf2325c26467e820f8997824c744ba7bc550 (patch) | |
tree | fbae1f7c17cc11d6cf923244c40208685a1f8ecc | |
parent | 4858310e3663f10bba85e4c2013c803b4bd6cbbc (diff) | |
download | rails-d587cf2325c26467e820f8997824c744ba7bc550.tar.gz rails-d587cf2325c26467e820f8997824c744ba7bc550.tar.bz2 rails-d587cf2325c26467e820f8997824c744ba7bc550.zip |
Fixed file name [ci skip]
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index 7e77181efd..89de180508 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -68,7 +68,7 @@ Don't forget to review the difference, to see if there were any unexpected chang ### 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` has not been changed yet. +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. |