Class: ActionDispatch::Routing::ConsoleFormatter::Sheet
- Inherits:
-
Base
- Object
- Base
- ActionDispatch::Routing::ConsoleFormatter::Sheet
show all
- Defined in:
- lib/action_dispatch/routing/inspector.rb
Direct Known Subclasses
Unused
Instance Method Summary
collapse
Methods inherited from Base
#initialize, #no_routes, #result
Instance Method Details
217
218
219
|
# File 'lib/action_dispatch/routing/inspector.rb', line 217
def (routes)
@buffer << ""
end
|
213
214
215
|
# File 'lib/action_dispatch/routing/inspector.rb', line 213
def (routes)
@buffer << (routes)
end
|
#section(routes) ⇒ Object
209
210
211
|
# File 'lib/action_dispatch/routing/inspector.rb', line 209
def section(routes)
@buffer << draw_section(routes)
end
|
#section_title(title) ⇒ Object
205
206
207
|
# File 'lib/action_dispatch/routing/inspector.rb', line 205
def section_title(title)
@buffer << "#{title}:"
end
|