Class: ActionDispatch::Routing::ConsoleFormatter::Base

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

Direct Known Subclasses

Expanded, Sheet

Instance Method Summary collapse

Constructor Details

#initializeBase

Returns a new instance of Base.



160
161
162
# File 'lib/action_dispatch/routing/inspector.rb', line 160

def initialize
  @buffer = []
end

Instance Method Details



177
178
# File 'lib/action_dispatch/routing/inspector.rb', line 177

def footer(routes)
end

#header(routes) ⇒ Object



174
175
# File 'lib/action_dispatch/routing/inspector.rb', line 174

def header(routes)
end

#no_routes(engine, routes, filter) ⇒ Object



180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/action_dispatch/routing/inspector.rb', line 180

def no_routes(engine, routes, filter)
  @buffer <<
    if filter.key?(:controller)
      "No routes were found for this controller."
    elsif filter.key?(:grep)
      "No routes were found for this grep pattern."
    elsif routes.none?
      if engine
        "No routes defined."
      else
        <<~MESSAGE
          You don't have any routes defined!

          Please add some routes in config/routes.rb.
        MESSAGE
      end
    end

  unless engine
    @buffer << "For more information about routes, see the Rails guide: https://guides.rubyonrails.org/routing.html."
  end
end

#resultObject



164
165
166
# File 'lib/action_dispatch/routing/inspector.rb', line 164

def result
  @buffer.join("\n")
end

#section(routes) ⇒ Object



171
172
# File 'lib/action_dispatch/routing/inspector.rb', line 171

def section(routes)
end

#section_title(title) ⇒ Object



168
169
# File 'lib/action_dispatch/routing/inspector.rb', line 168

def section_title(title)
end