diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-01-05 13:59:00 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-01-05 14:31:03 +0100 |
commit | 80795e02ca7025651ee7abc2e85e123e5e0a7ad6 (patch) | |
tree | 8dc6b747221945e37a0ea1959a9c567271a16cdc /actionpack/lib/action_dispatch/middleware/templates/rescues | |
parent | af5c0fd85fce1adb311083dd1ecf96432ee8caa3 (diff) | |
download | rails-80795e02ca7025651ee7abc2e85e123e5e0a7ad6.tar.gz rails-80795e02ca7025651ee7abc2e85e123e5e0a7ad6.tar.bz2 rails-80795e02ca7025651ee7abc2e85e123e5e0a7ad6.zip |
display mountable engine routes on RoutingError.
Diffstat (limited to 'actionpack/lib/action_dispatch/middleware/templates/rescues')
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.erb b/actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.erb index 77804a8cbb..9463da520b 100644 --- a/actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.erb +++ b/actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.erb @@ -15,6 +15,7 @@ <% end %> <%= render template: "rescues/_trace" %> +<% if @routes_inspector %> <h2> Routes </h2> @@ -23,6 +24,5 @@ Routes match in priority from top to bottom </p> -<%= render layout: "routes/route_wrapper" do %> - <%= render partial: "routes/route", collection: @routes %> + <%= @routes_inspector.format(ActionDispatch::DebugExceptions::TableRoutesFormatter.new(self)) %> <% end %> |