diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-05-02 18:11:34 -0700 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-05-02 18:11:34 -0700 |
commit | b93def9799219dc2ab7a18f1d712f1c2e29dbd54 (patch) | |
tree | b54363982b3499d4ce834a1bb49c159505509d8e /actionpack/lib/action_dispatch | |
parent | 260104243b74546e6d0b9b161d37039782988083 (diff) | |
parent | e737f142bd102b4c464481ab685cad2a00ee022e (diff) | |
download | rails-b93def9799219dc2ab7a18f1d712f1c2e29dbd54.tar.gz rails-b93def9799219dc2ab7a18f1d712f1c2e29dbd54.tar.bz2 rails-b93def9799219dc2ab7a18f1d712f1c2e29dbd54.zip |
Merge pull request #6131 from schneems/schneems/routes_backtrace
Add backtrace to development routing error page
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.erb | 4 |
1 files changed, 3 insertions, 1 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 f06c07daa5..177d383e94 100644 --- a/actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.erb +++ b/actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.erb @@ -12,4 +12,6 @@ <% end %> <p> Try running <code>rake routes</code> for more information on available routes. -</p>
\ No newline at end of file +</p> + +<%= render :template => "rescues/_trace" %> |