Skip to Content Skip to Search
v7.1.0
class ActionDispatch::Routing::ConsoleFormatter::Sheet < ActionDispatch::Routing::ConsoleFormatter::Base
Methods
H
S

Public instance methods

header(routes)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/routing/inspector.rb, line 199
def header(routes)
  @buffer << draw_header(routes)
end

section(routes)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/routing/inspector.rb, line 195
def section(routes)
  @buffer << draw_section(routes)
end

section_title(title)

Permalink
Source code GitHub
# File actionpack/lib/action_dispatch/routing/inspector.rb, line 191
def section_title(title)
  @buffer << "\n#{title}:"
end
Definition files