Class: ActionDispatch::Routing::ConsoleFormatter::Sheet

Inherits:
Base
  • Object
show all
Defined in:
actionpack/lib/action_dispatch/routing/inspector.rb

Direct Known Subclasses

Unused

Instance Method Summary collapse

Methods inherited from Base

#initialize, #no_routes, #result

Constructor Details

This class inherits a constructor from ActionDispatch::Routing::ConsoleFormatter::Base

Instance Method Details

#header(routes) ⇒ Object



199
200
201
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 199

def header(routes)
  @buffer << draw_header(routes)
end

#section(routes) ⇒ Object



195
196
197
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 195

def section(routes)
  @buffer << draw_section(routes)
end

#section_title(title) ⇒ Object



191
192
193
# File 'actionpack/lib/action_dispatch/routing/inspector.rb', line 191

def section_title(title)
  @buffer << "\n#{title}:"
end