Skip to Content Skip to Search

module ActionDispatch

# 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.

Inherits From

Public instance methods

Source code GitHub
# File actionpack/lib/action_dispatch.rb, line 135
def eager_load!
  super
  Routing.eager_load!
end

Namespace

Definition files

78 More Less