diff options
author | José Valim <jose.valim@gmail.com> | 2010-01-24 11:06:06 +0100 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-01-24 11:06:06 +0100 |
commit | e0bdc4f446686a498c3117e27ed8561f5c6d34f1 (patch) | |
tree | 3b702991c7abdcdf5827b02b70fdfd59f1573e97 /railties/lib/rails/tasks | |
parent | 5cd9aad4fdf55c591fe8e12657008e83315251d7 (diff) | |
download | rails-e0bdc4f446686a498c3117e27ed8561f5c6d34f1.tar.gz rails-e0bdc4f446686a498c3117e27ed8561f5c6d34f1.tar.bz2 rails-e0bdc4f446686a498c3117e27ed8561f5c6d34f1.zip |
Ensure namespaced controllers in engines work.
Diffstat (limited to 'railties/lib/rails/tasks')
-rw-r--r-- | railties/lib/rails/tasks/routes.rake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/railties/lib/rails/tasks/routes.rake b/railties/lib/rails/tasks/routes.rake index 2395d73b2f..e8da72db4d 100644 --- a/railties/lib/rails/tasks/routes.rake +++ b/railties/lib/rails/tasks/routes.rake @@ -1,5 +1,6 @@ desc 'Print out all defined routes in match order, with names. Target specific controller with CONTROLLER=x.' task :routes => :environment do + Rails::Application.reload_routes! 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 |