Methods

Instance Public methods

header(routes)

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

section(routes)

📝 Source code
# File actionpack/lib/action_dispatch/routing/inspector.rb, line 195
        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 191
        def section_title(title)
          @buffer << "\n#{title}:"
        end
🔎 See on GitHub