Sha256: 3c1cd7f6696d7237bb5792c50c75da109886e1fb15f6d0ee4d6c09e61c123699

Contents?: true

Size: 1.68 KB

Versions: 36

Compression:

Stored size: 1.68 KB

Contents

# frozen_string_literal: true

require "abstract_controller"
require "action_dispatch"
require "action_controller/metal/strong_parameters"

module ActionController
  extend ActiveSupport::Autoload

  autoload :API
  autoload :Base
  autoload :Metal
  autoload :Renderer
  autoload :FormBuilder

  eager_autoload do
    autoload :Caching
  end

  autoload_under "metal" do
    eager_autoload do
      autoload :Live
    end

    autoload :ConditionalGet
    autoload :ContentSecurityPolicy
    autoload :Cookies
    autoload :DataStreaming
    autoload :DefaultHeaders
    autoload :EtagWithTemplateDigest
    autoload :EtagWithFlash
    autoload :PermissionsPolicy
    autoload :Flash
    autoload :Head
    autoload :Helpers
    autoload :HttpAuthentication
    autoload :BasicImplicitRender
    autoload :ImplicitRender
    autoload :Instrumentation
    autoload :Logging
    autoload :MimeResponds
    autoload :ParamsWrapper
    autoload :Redirecting
    autoload :Renderers
    autoload :Rendering
    autoload :RequestForgeryProtection
    autoload :Rescue
    autoload :Streaming
    autoload :StrongParameters
    autoload :ParameterEncoding
    autoload :Testing
    autoload :UrlFor
  end

  autoload_under "api" do
    autoload :ApiRendering
  end

  autoload :TestCase,           "action_controller/test_case"
  autoload :TemplateAssertions, "action_controller/test_case"
end

# Common Active Support usage in Action Controller
require "active_support/core_ext/module/attribute_accessors"
require "active_support/core_ext/load_error"
require "active_support/core_ext/module/attr_internal"
require "active_support/core_ext/name_error"
require "active_support/core_ext/uri"
require "active_support/inflector"

Version data entries

36 entries across 36 versions & 4 rubygems

Version Path
actionpack-6.1.7.10 lib/action_controller.rb
actionpack-6.1.7.9 lib/action_controller.rb
actionpack-6.1.7.8 lib/action_controller.rb
actionpack-6.1.7.7 lib/action_controller.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionpack-6.1.6.1/lib/action_controller.rb
actionpack-6.1.7.6 lib/action_controller.rb
actionpack-6.1.7.5 lib/action_controller.rb
actionpack-6.1.7.4 lib/action_controller.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionpack-6.1.6.1/lib/action_controller.rb
actionpack-6.1.7.3 lib/action_controller.rb
actionpack-6.1.7.2 lib/action_controller.rb
actionpack-6.1.7.1 lib/action_controller.rb
actionpack-6.1.7 lib/action_controller.rb
actionpack-6.1.6.1 lib/action_controller.rb
actionpack-6.1.6 lib/action_controller.rb
actionpack-6.1.5.1 lib/action_controller.rb
actionpack-6.1.5 lib/action_controller.rb
actionpack-6.1.4.7 lib/action_controller.rb
actionpack-6.1.4.6 lib/action_controller.rb
actionpack-6.1.4.5 lib/action_controller.rb