aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorप्रथमेश Sonpatki <csonpatki@gmail.com>2016-02-28 19:45:35 +0530
committerप्रथमेश Sonpatki <csonpatki@gmail.com>2016-02-28 19:45:35 +0530
commit4c43a10accd9938c82682aa2d408d40ad195963e (patch)
treec5e5eef7e7e2e4eb5834f8c35eabc550fdfb4d07 /guides
parenta362c83222ef75b56ceb625e64b296af90f5e285 (diff)
parent21da4cba136153dc4d75981b6da65b136eed4ccc (diff)
downloadrails-4c43a10accd9938c82682aa2d408d40ad195963e.tar.gz
rails-4c43a10accd9938c82682aa2d408d40ad195963e.tar.bz2
rails-4c43a10accd9938c82682aa2d408d40ad195963e.zip
Merge pull request #23943 from y-yagi/remove_rake_word
remove "rake" word [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/rails_on_rack.md2
-rw-r--r--guides/source/upgrading_ruby_on_rails.md6
2 files changed, 4 insertions, 4 deletions
diff --git a/guides/source/rails_on_rack.md b/guides/source/rails_on_rack.md
index 3b61d65df5..b712965b7f 100644
--- a/guides/source/rails_on_rack.md
+++ b/guides/source/rails_on_rack.md
@@ -93,7 +93,7 @@ NOTE: `ActionDispatch::MiddlewareStack` is Rails equivalent of `Rack::Builder`,
### Inspecting Middleware Stack
-Rails has a handy rake task for inspecting the middleware stack in use:
+Rails has a handy task for inspecting the middleware stack in use:
```bash
$ bin/rails middleware
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index 9d0fec5ab1..d5576be6f2 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -27,7 +27,7 @@ The process should go as follows:
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.
+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.
You can find a list of all released Rails versions [here](https://rubygems.org/gems/rails/versions).
@@ -44,8 +44,8 @@ TIP: Ruby 1.8.7 p248 and p249 have marshaling bugs that crash Rails. Ruby Enterp
### The Task
-Rails provides the `app:update` rake task. After updating the Rails version
-in the Gemfile, run this rake task.
+Rails provides the `app:update` task. After updating the Rails version
+in the Gemfile, run this task.
This will help you with the creation of new files and changes of old files in an
interactive session.