Skip to content

Commit

Permalink
make rake routes print the name of a Rack endpoint app [#5338 state:r…
Browse files Browse the repository at this point in the history
…esolved]

Signed-off-by: José Valim <jose.valim@gmail.com>
  • Loading branch information
amerine authored and josevalim committed Aug 15, 2010
1 parent 2f9f082 commit 99f3997
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions railties/lib/rails/tasks/routes.rake
Expand Up @@ -9,13 +9,15 @@ task :routes => :environment do
key_method = Hash.method_defined?('key') ? 'key' : 'index'
name = Rails.application.routes.named_routes.routes.send(key_method, route).to_s
reqs = route.requirements.empty? ? "" : route.requirements.inspect
{:name => name, :verb => route.verb.to_s, :path => route.path, :reqs => reqs}
app = route.app.to_s =~ /ActionDispatch.*/ ? "" : route.app.to_s
{:name => name, :verb => route.verb.to_s, :path => route.path, :reqs => reqs, :app => app}
end
routes.reject!{ |r| r[:path] == "/rails/info/properties" } # skip the route if it's internal info route
name_width = routes.collect {|r| r[:name]}.collect {|n| n.length}.max
verb_width = routes.collect {|r| r[:verb]}.collect {|v| v.length}.max
path_width = routes.collect {|r| r[:path]}.collect {|s| s.length}.max
app_width = routes.collect {|r| r[:app]}.collect {|a| a.length}.max
routes.each do |r|
puts "#{r[:name].rjust(name_width)} #{r[:verb].ljust(verb_width)} #{r[:path].ljust(path_width)} #{r[:reqs]}"
puts "#{r[:name].rjust(name_width)} #{r[:verb].ljust(verb_width)} #{r[:path].ljust(path_width)} #{r[:reqs]} #{(r[:app].length > 0 ? '=> ' + r[:app] : '').ljust(app_width)}"
end
end
end

0 comments on commit 99f3997

Please sign in to comment.