aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/upgrading_ruby_on_rails.md
diff options
context:
space:
mode:
authorAlberto Almagro <albertoalmagro@gmail.com>2018-06-29 18:49:05 +0200
committerAlberto Almagro <albertoalmagro@gmail.com>2018-07-06 22:46:54 +0200
commit2e194d0c9edfa54cb955b48fa204de2f4c980239 (patch)
treeb4d26db1ddda8308231fff3a672d1e46fb2bee20 /guides/source/upgrading_ruby_on_rails.md
parenta7986aeda0b60a1453d7aa70077abcaa7ecab369 (diff)
downloadrails-2e194d0c9edfa54cb955b48fa204de2f4c980239.tar.gz
rails-2e194d0c9edfa54cb955b48fa204de2f4c980239.tar.bz2
rails-2e194d0c9edfa54cb955b48fa204de2f4c980239.zip
Substitute references to task for command
This commit substitutes references to rails/rake task for rails command
Diffstat (limited to 'guides/source/upgrading_ruby_on_rails.md')
-rw-r--r--guides/source/upgrading_ruby_on_rails.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index 087cf7cdc5..a40d1bbf7e 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -45,8 +45,8 @@ TIP: Ruby 1.8.7 p248 and p249 have marshaling bugs that crash Rails. Ruby Enterp
### The Update Task
-Rails provides the `app:update` task (`rake rails:update` on 4.2 and earlier). After updating the Rails version
-in the `Gemfile`, run this task.
+Rails provides the `app:update` command (`rake rails:update` on 4.2 and earlier). After updating the Rails version
+in the `Gemfile`, run this command.
This will help you with the creation of new files and changes of old files in an
interactive session.
@@ -85,7 +85,7 @@ For more information on changes made to Rails 5.2 please see the [release notes]
### 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,
+The `app:update` command 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.
### Expiry in signed or encrypted cookie is now embedded in the cookies values