aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-02-03 08:16:18 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2016-02-03 08:17:25 +0900
commitfae17243984965b152d8212be6405ce840887018 (patch)
tree09e5f277fb26f6607aeb7bbfc94ca754123da65d /railties/lib
parent49e0c4e8642a0160bd01c4490b4babe89108da48 (diff)
downloadrails-fae17243984965b152d8212be6405ce840887018.tar.gz
rails-fae17243984965b152d8212be6405ce840887018.tar.bz2
rails-fae17243984965b152d8212be6405ce840887018.zip
use rails command in routes task
For other task has become to use the rails command at doc and test, I think that routes task also it is better to use the rails command.
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails/tasks/routes.rake6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/lib/rails/tasks/routes.rake b/railties/lib/rails/tasks/routes.rake
index 353b8b4e72..939fa59c75 100644
--- a/railties/lib/rails/tasks/routes.rake
+++ b/railties/lib/rails/tasks/routes.rake
@@ -9,8 +9,8 @@ task routes: :environment do
inspector = ActionDispatch::Routing::RoutesInspector.new(all_routes)
if ARGV.any?{ |argv| argv.start_with? 'CONTROLLER' }
puts <<-eow.strip_heredoc
- Passing `CONTROLLER` to `bin/rake routes` is deprecated and will be removed in Rails 5.1.
- Please use `bin/rake routes -c controller_name` instead.
+ Passing `CONTROLLER` to `bin/rails routes` is deprecated and will be removed in Rails 5.1.
+ Please use `bin/rails routes -c controller_name` instead.
eow
end
@@ -18,7 +18,7 @@ task routes: :environment do
routes_filter = { controller: ENV['CONTROLLER'] } if ENV['CONTROLLER']
OptionParser.new do |opts|
- opts.banner = "Usage: rake routes [options]"
+ opts.banner = "Usage: rails routes [options]"
opts.on("-c", "--controller [CONTROLLER]") do |controller|
routes_filter = { controller: controller }
end