Skip to content

Commit

Permalink
Read the route name directly from the route instead of looking it up …
Browse files Browse the repository at this point in the history
…in the named routes hash

Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
  • Loading branch information
pixeltrix authored and jeremy committed Aug 28, 2010
1 parent 0c87873 commit 7f83aef
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions railties/lib/rails/tasks/routes.rake
Expand Up @@ -3,24 +3,18 @@ task :routes => :environment do
Rails.application.reload_routes!

all_routes = Rails.application.routes.routes
named_routes = Rails.application.routes.named_routes.routes

if ENV['CONTROLLER']
all_routes = all_routes.select{ |route| route.defaults[:controller] == ENV['CONTROLLER'] }
end

routes = all_routes.collect do |route|
# TODO: The :index method is deprecated in 1.9 in favor of :key
# but we don't have :key in 1.8.7. We can remove this check when
# stop supporting 1.8.x
key = Hash.method_defined?('key') ? 'key' : 'index'
name = named_routes.send(key, route).to_s

reqs = route.requirements.dup
reqs[:to] = route.app unless route.app.class.name.to_s =~ /^ActionDispatch::Routing/
reqs = reqs.empty? ? "" : reqs.inspect

{:name => name, :verb => route.verb.to_s, :path => route.path, :reqs => reqs}
{:name => route.name, :verb => route.verb.to_s, :path => route.path, :reqs => reqs}
end

routes.reject! { |r| r[:path] =~ %r{/rails/info/properties} } # Skip the route if it's internal info route
Expand Down

0 comments on commit 7f83aef

Please sign in to comment.