aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/app_loader.rb
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2016-02-27 15:14:56 +0100
committerKasper Timm Hansen <kaspth@gmail.com>2016-02-27 15:14:56 +0100
commit6fb31638c8b61731103d4963272755b217a2df87 (patch)
treeaab6304c09234b82c2eb32a4423eca65b4717ae9 /railties/lib/rails/app_loader.rb
parent5cb307d85913e47f449b93a4a3ab374cdc0dad52 (diff)
parenteaec958630ea53cddb84ef4746b23bcd917ba45d (diff)
downloadrails-6fb31638c8b61731103d4963272755b217a2df87.tar.gz
rails-6fb31638c8b61731103d4963272755b217a2df87.tar.bz2
rails-6fb31638c8b61731103d4963272755b217a2df87.zip
Merge pull request #23439 from ryohashimoto/160203_rake_rails
Use app namespace for framework tasks
Diffstat (limited to 'railties/lib/rails/app_loader.rb')
-rw-r--r--railties/lib/rails/app_loader.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/app_loader.rb b/railties/lib/rails/app_loader.rb
index a9fe21824e..af004d85bf 100644
--- a/railties/lib/rails/app_loader.rb
+++ b/railties/lib/rails/app_loader.rb
@@ -16,7 +16,7 @@ like any other source code, rather than stubs that are generated on demand.
Here's how to upgrade:
bundle config --delete bin # Turn off Bundler's stub generator
- rake rails:update:bin # Use the new Rails 4 executables
+ rails app:update:bin # Use the new Rails 5 executables
git add bin # Add bin/ to source control
You may need to remove bin/ from your .gitignore as well.