Skip to Content Skip to Search

class ActionDispatch::Routing::ConsoleFormatter::Unused

Inherits From

Public instance methods

Source code GitHub
# File actionpack/lib/action_dispatch/routing/inspector.rb, line 264
        def header(routes)
          @buffer << <<~MSG
            Found #{routes.count} unused #{"route".pluralize(routes.count)}:
          MSG

          super
        end
Source code GitHub
# File actionpack/lib/action_dispatch/routing/inspector.rb, line 272
def no_routes(routes, filter)
  @buffer <<
    if filter.none?
      "No unused routes found."
    elsif filter.key?(:controller)
      "No unused routes found for this controller."
    elsif filter.key?(:grep)
      "No unused routes found for this grep pattern."
    end
end

Definition files