Skip to Content Skip to Search

# Action Dispatch

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.

Namespace
Methods
E
U
Included Modules

Class Public methods

unknown

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 Public methods

eager_load!()

# File actionpack/lib/action_dispatch.rb, line 149
def eager_load!
  super
  Routing.eager_load!
end