diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md index 2998e66272a9f706c195e76c3fb4be2cb8032dc1..cef83e42644dc8ecc416bc96e8690599de3c16d5 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -23,9 +23,9 @@ When changing Rails versions, it's best to move slowly, one minor version at a t The process should go as follows: 1. Write tests and make sure they pass -1. Move to the latest patch version after your current version -1. Fix tests and deprecated features -1. Move to the latest patch version of the next minor version +2. Move to the latest patch version after your current version +3. Fix tests and deprecated features +4. Move to the latest patch version of the next minor version Repeat this process until you reach your target Rails version. Each time you move versions, you will need to change the Rails version number in the Gemfile (and possibly other gem versions) and run `bundle update`. Then run the Update rake task mentioned below to update configuration files, then run your tests.