Created
July 20, 2009 20:25
-
-
Save hardbap/150881 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
desc 'Print out all defined routes in match order, with names. Target specific controller with CONTROLLER=x.' | |
task :routes => :environment do | |
all_routes = ENV['CONTROLLER'] ? ActionController::Routing::Routes.routes.select { |route| route.defaults[:controller] == ENV['CONTROLLER'] } : ActionController::Routing::Routes.routes | |
routes = all_routes.collect do |route| | |
name = ActionController::Routing::Routes.named_routes.routes.index(route).to_s | |
verb = route.conditions[:method].to_s.upcase | |
segs = route.segments.inject("") { |str,s| str << s.to_s } | |
segs.chop! if segs.length > 1 | |
reqs = route.requirements.empty? ? "" : route.requirements.inspect | |
{:name => name, :verb => verb, :segs => segs, :reqs => reqs} | |
end | |
name_width = routes.collect {|r| r[:name]}.collect {|n| n.length}.max | |
verb_width = routes.collect {|r| r[:verb]}.collect {|v| v.length}.max | |
segs_width = routes.collect {|r| r[:segs]}.collect {|s| s.length}.max | |
routes.each do |r| | |
puts "#{r[:name].rjust(name_width)} #{r[:verb].ljust(verb_width)} #{r[:segs].ljust(segs_width)} #{r[:reqs]}" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment