Module: ActionDispatch
Overview
Action Dispatch is a module of Action Pack.
Action Dispatch parses information about the web request, handles routing as defined by the user, and does advanced processing related to HTTP such as MIME-type negotiation, decoding parameters in POST, PATCH, or PUT bodies, handling HTTP caching logic, cookies and sessions.
Class Attribute Summary
- .test_app (also: #test_app) rw
Class Method Summary
- .deprecator Internal use only
::ActiveSupport::Autoload
- Extended
Instance Attribute Summary
- #test_app rw
-
#verbose_redirect_logs
rw
:singleton-method:
Instance Method Summary
Class Attribute Details
.test_app (rw) Also known as: #test_app
[ GitHub ]# File 'actionpack/lib/action_dispatch.rb', line 127
mattr_accessor :test_app
Class Method Details
.deprecator
This method is for internal use only.
[ GitHub ]
# File 'actionpack/lib/action_dispatch/deprecator.rb', line 6
def self.deprecator # :nodoc: @deprecator ||= ActiveSupport::Deprecation.new end
Instance Attribute Details
#test_app (rw)
[ GitHub ]# File 'actionpack/lib/action_dispatch.rb', line 127
mattr_accessor :test_app
#verbose_redirect_logs (rw)
:singleton-method:
Specifies if the methods calling redirects in controllers and routes should
be logged below their relevant log lines. Defaults to false.
# File 'actionpack/lib/action_dispatch.rb', line 146
singleton_class.attr_accessor :verbose_redirect_logs
Instance Method Details
#eager_load!
[ GitHub ]# File 'actionpack/lib/action_dispatch.rb', line 149
def eager_load! super Routing.eager_load! end