diff options
author | Arthur Neves <arthurnn@gmail.com> | 2016-02-27 12:32:03 -0500 |
---|---|---|
committer | Arthur Neves <arthurnn@gmail.com> | 2016-02-27 12:32:03 -0500 |
commit | 3174b5f92a43e4bfdf4f833389b1ac819ac2cdc5 (patch) | |
tree | 275ab7ee5037dd4af0d7ace15a9b975f7e34adaa /guides | |
parent | 64e4f201a99bf37de8b88289601ab874849c9476 (diff) | |
download | rails-3174b5f92a43e4bfdf4f833389b1ac819ac2cdc5.tar.gz rails-3174b5f92a43e4bfdf4f833389b1ac819ac2cdc5.tar.bz2 rails-3174b5f92a43e4bfdf4f833389b1ac819ac2cdc5.zip |
Update docs to point to new update task.
This guides were pointing to this command `rails app:update`, which I
tried to run, but it didnt worked. I think the right command is `rails
rails:update` instead. Also thats the name of the rake task.
Also I removed the `Rake` word from the title, as we run it using
`rails` bin now.
cc @kaspth
[skip ci]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/upgrading_ruby_on_rails.md | 6 |
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 7653ea9472..8d45e09993 100644 --- a/guides/source/upgrading_ruby_on_rails.md +++ b/guides/source/upgrading_ruby_on_rails.md @@ -42,15 +42,15 @@ 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 Rake Task +### The Task -Rails provides the `app:update` rake task. After updating the Rails version +Rails provides the `rails:update` rake task. After updating the Rails version in the Gemfile, run this rake task. This will help you with the creation of new files and changes of old files in an interactive session. ```bash -$ rails app:update +$ rails rails:update identical config/boot.rb exist config conflict config/routes.rb |