Class: ActionDispatch::Routing::RoutesInspector
- Inherits:
-
Object
- Object
- ActionDispatch::Routing::RoutesInspector
- Defined in:
- lib/action_dispatch/routing/inspector.rb
Overview
This class is just used for displaying route information when someone executes ‘bin/rails routes` or looks at the RoutingError page. People should not use this class.
Instance Method Summary collapse
- #format(formatter, filter = {}) ⇒ Object
-
#initialize(routes) ⇒ RoutesInspector
constructor
:nodoc:.
Constructor Details
#initialize(routes) ⇒ RoutesInspector
:nodoc:
72 73 74 75 |
# File 'lib/action_dispatch/routing/inspector.rb', line 72 def initialize(routes) @engines = {} @routes = routes end |
Instance Method Details
#format(formatter, filter = {}) ⇒ Object
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/action_dispatch/routing/inspector.rb', line 77 def format(formatter, filter = {}) routes_to_display = filter_routes(normalize_filter(filter)) routes = collect_routes(routes_to_display) if routes.none? formatter.no_routes(collect_routes(@routes), filter) return formatter.result end formatter.header routes formatter.section routes @engines.each do |name, engine_routes| formatter.section_title "Routes for #{name}" formatter.section engine_routes end formatter.result end |