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.
Constant Summary
-
RFC2396_PARSER =
private
# File 'actionpack/lib/action_dispatch.rb', line 57defined?(URI::RFC2396_PARSER) ? URI::RFC2396_PARSER : URI::RFC2396_Parser.new
Class Attribute Summary
- .test_app (also: #test_app) rw
Class Method Summary
::ActiveSupport::Autoload
- Extended
Instance Attribute Summary
- #test_app rw
Instance Method Summary
Class Attribute Details
.test_app (rw) Also known as: #test_app
[ GitHub ]# File 'actionpack/lib/action_dispatch.rb', line 131
mattr_accessor :test_app
Instance Attribute Details
#test_app (rw)
[ GitHub ]# File 'actionpack/lib/action_dispatch.rb', line 131
mattr_accessor :test_app
Instance Method Details
#eager_load!
[ GitHub ]# File 'actionpack/lib/action_dispatch.rb', line 145
def eager_load! super Routing.eager_load! end