diff options
author | Abhishek Jain <jainabhishek1610@gmail.com> | 2016-02-25 01:00:30 +0530 |
---|---|---|
committer | Abhishek Jain <jainabhishek1610@gmail.com> | 2016-02-25 01:00:30 +0530 |
commit | a39e195aefce67a404b6425fe73f351a6e4fb60d (patch) | |
tree | d85171ac95f53b93e4321b0e5541998bad8a9e61 /actionpack/lib/action_dispatch/journey | |
parent | f6fecabc0cb8ad7be3783d31656a0b10fe3b5bc7 (diff) | |
download | rails-a39e195aefce67a404b6425fe73f351a6e4fb60d.tar.gz rails-a39e195aefce67a404b6425fe73f351a6e4fb60d.tar.bz2 rails-a39e195aefce67a404b6425fe73f351a6e4fb60d.zip |
[ci skip] Replace usage of rake routes with rails routes
Diffstat (limited to 'actionpack/lib/action_dispatch/journey')
-rw-r--r-- | actionpack/lib/action_dispatch/journey/route.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/journey/route.rb b/actionpack/lib/action_dispatch/journey/route.rb index fee08fc3db..cfd6681dd1 100644 --- a/actionpack/lib/action_dispatch/journey/route.rb +++ b/actionpack/lib/action_dispatch/journey/route.rb @@ -82,7 +82,7 @@ module ActionDispatch end def requirements # :nodoc: - # needed for rails `rake routes` + # needed for rails `rails routes` @defaults.merge(path.requirements).delete_if { |_,v| /.+?/ == v } |