Flowdock
method

routes_inspector

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: DebugExceptions
routes_inspector(exception) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/middleware/debug_exceptions.rb, line 172
      def routes_inspector(exception)
        if @routes_app.respond_to?(:routes) && (exception.is_a?(ActionController::RoutingError) || exception.is_a?(ActionView::Template::Error))
          ActionDispatch::Routing::RoutesInspector.new(@routes_app.routes.routes)
        end
      end
Register or log in to add new notes.