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

Inherits:
Base
  • Object
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

Constructor Details

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

Instance Method Details

#header(routes) ⇒ Object



201
202
203
# File 'lib/action_dispatch/routing/inspector.rb', line 201

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

#section(routes) ⇒ Object



197
198
199
# File 'lib/action_dispatch/routing/inspector.rb', line 197

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

#section_title(title) ⇒ Object



193
194
195
# File 'lib/action_dispatch/routing/inspector.rb', line 193

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