Class: Rails::InfoController
- Inherits:
-
ActionController::Base
- Object
- AbstractController::Base
- ActionController::Metal
- ActionController::Base
- Rails::InfoController
- Defined in:
- railties/lib/rails/info_controller.rb
Overview
:nodoc:
Constant Summary
Constants inherited from ActionController::Base
ActionController::Base::MODULES
Instance Method Summary collapse
Methods inherited from ActionController::Base
Methods inherited from ActionController::Metal
action, call, #content_type, #content_type=, controller_name, #controller_name, #dispatch, #env, inherited, #initialize, #location, #location=, middleware, #params, #params=, #performed?, #response_body=, #status, #status=, #to_a, #url_for, use
Methods inherited from AbstractController::Base
abstract!, action_methods, #action_methods, #available_action?, clear_action_methods!, #controller_path, controller_path, hidden_actions, inherited, internal_methods, method_added, #process
Methods included from ActiveSupport::DescendantsTracker
clear, descendants, #descendants, #direct_descendants, direct_descendants, #inherited, store_inherited
Methods included from ActiveSupport::Configurable
Methods included from ActiveSupport::Concern
#append_features, extended, #included
Constructor Details
This class inherits a constructor from ActionController::Metal
Instance Method Details
#index ⇒ Object
10 11 12 |
# File 'railties/lib/rails/info_controller.rb', line 10 def index redirect_to action: :routes end |
#properties ⇒ Object
14 15 16 |
# File 'railties/lib/rails/info_controller.rb', line 14 def properties @info = Rails::Info.to_html end |
#routes ⇒ Object
18 19 20 |
# File 'railties/lib/rails/info_controller.rb', line 18 def routes @routes_inspector = ActionDispatch::Routing::RoutesInspector.new(_routes.routes) end |