aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-04-13 00:06:18 +0530
committerVipul A M <vipulnsward@gmail.com>2016-04-13 00:06:18 +0530
commitfe9bd013e2806066e0e43b8b0b4dabab0c8549d1 (patch)
treeae20b3e778a2f2d6c19c77cda4329ce2bee897dc /guides
parentab4361698a7c632d368fa8259b7287e86345887a (diff)
downloadrails-fe9bd013e2806066e0e43b8b0b4dabab0c8549d1.tar.gz
rails-fe9bd013e2806066e0e43b8b0b4dabab0c8549d1.tar.bz2
rails-fe9bd013e2806066e0e43b8b0b4dabab0c8549d1.zip
- Make sure we end sentences
- Change from "The Task" to "The Update Task" as referred elsewhere [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/upgrading_ruby_on_rails.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index 0c1e00100b..6d6e8f79c3 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -22,10 +22,10 @@ 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
-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
+1. Write tests and make sure they pass.
+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 task mentioned below to update configuration files, then run your tests.
@@ -42,7 +42,7 @@ Rails generally stays close to the latest released Ruby version when it's releas
TIP: Ruby 1.8.7 p248 and p249 have marshaling bugs that crash Rails. Ruby Enterprise Edition has these fixed since the release of 1.8.7-2010.02. On the 1.9 front, Ruby 1.9.1 is not usable because it outright segfaults, so if you want to use 1.9.x, jump straight to 1.9.3 for smooth sailing.
-### The Task
+### The Update Task
Rails provides the `app:update` task. After updating the Rails version
in the Gemfile, run this task.