Skip to content

Commit

Permalink
Add some comments related to Hash method check.
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed May 16, 2010
1 parent 2dc1402 commit 6cabc9a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions railties/lib/rails/tasks/routes.rake
Expand Up @@ -3,6 +3,9 @@ task :routes => :environment do
Rails::Application.reload_routes!
all_routes = ENV['CONTROLLER'] ? Rails.application.routes.routes.select { |route| route.defaults[:controller] == ENV['CONTROLLER'] } : Rails.application.routes.routes
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_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
Expand Down

0 comments on commit 6cabc9a

Please sign in to comment.