Class: Rails::InfoController

Inherits:
ApplicationController show all
Defined in:
railties/lib/rails/info_controller.rb

Overview

:nodoc:

Constant Summary

Constants inherited from ActionController::Base

ActionController::Base::MODULES, ActionController::Base::PROTECTED_IVARS

Instance Method Summary collapse

Methods inherited from ActionController::Base

without_modules

Methods inherited from ActionController::Metal

action, action_encoding_template, controller_name, #controller_name, dispatch, #dispatch, #headers, #initialize, make_response!, middleware, #params, #params=, #performed?, #request, #reset_session, #response, #response=, #response_body=, #session, #set_request!, #set_response!, #to_a, #url_for, use

Methods included from ActionController::Testing::Functional

#clear_instance_variables_between_requests, #recycle!

Methods inherited from AbstractController::Base

abstract!, action_methods, #action_methods, #action_name, #available_action?, clear_action_methods!, controller_path, #controller_path, eager_load!, #formats, inherited, #inspect, internal_methods, method_added, #performed?, #process, #response_body, supports_path?

Methods included from ActiveSupport::DescendantsTracker

clear, #descendants, descendants, disable_clear!, reject!, store_inherited, subclasses, #subclasses

Methods included from ActiveSupport::Configurable

#config

Methods included from ActiveSupport::Concern

#append_features, #class_methods, extended, #included, #prepend_features, #prepended

Constructor Details

This class inherits a constructor from ActionController::Metal

Instance Method Details

#indexObject



12
13
14
# File 'railties/lib/rails/info_controller.rb', line 12

def index
  redirect_to action: :routes
end

#propertiesObject



16
17
18
19
# File 'railties/lib/rails/info_controller.rb', line 16

def properties
  @info = Rails::Info.to_html
  @page_title = "Properties"
end

#routesObject



21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'railties/lib/rails/info_controller.rb', line 21

def routes
  if query = params[:query]
    query = URI::DEFAULT_PARSER.escape query

    render json: {
      exact: matching_routes(query: query, exact_match: true),
      fuzzy: matching_routes(query: query, exact_match: false)
    }
  else
    @routes_inspector = ActionDispatch::Routing::RoutesInspector.new(_routes.routes)
    @page_title = "Routes"
  end
end