Methods
Instance Public methods
footer(routes)
📝 Source code
# File actionpack/lib/action_dispatch/routing/inspector.rb, line 217
def footer(routes)
@buffer << ""
end
🔎 See on GitHub
header(routes)
📝 Source code
# File actionpack/lib/action_dispatch/routing/inspector.rb, line 213
def header(routes)
@buffer << draw_header(routes)
end
🔎 See on GitHub
section(routes)
📝 Source code
# File actionpack/lib/action_dispatch/routing/inspector.rb, line 209
def section(routes)
@buffer << draw_section(routes)
end
🔎 See on GitHub
section_title(title)
📝 Source code
# File actionpack/lib/action_dispatch/routing/inspector.rb, line 205
def section_title(title)
@buffer << "#{title}:"
end
🔎 See on GitHub