Sha256: f16de57c176ed47e642e05da023e8bb261a476c711840ca69cfa053b23d3bf69

Contents?: true

Size: 1.92 KB

Versions: 153

Compression:

Stored size: 1.92 KB

Contents

require 'abstract_controller'
require 'action_dispatch'

module ActionController
  extend ActiveSupport::Autoload

  autoload :Base
  autoload :Caching
  autoload :Metal
  autoload :Middleware

  autoload_under "metal" do
    autoload :Compatibility
    autoload :ConditionalGet
    autoload :Cookies
    autoload :DataStreaming
    autoload :Flash
    autoload :ForceSSL
    autoload :Head
    autoload :Helpers
    autoload :HideActions
    autoload :HttpAuthentication
    autoload :ImplicitRender
    autoload :Instrumentation
    autoload :MimeResponds
    autoload :ParamsWrapper
    autoload :RackDelegation
    autoload :Redirecting
    autoload :Renderers
    autoload :Rendering
    autoload :RequestForgeryProtection
    autoload :Rescue
    autoload :Responder
    autoload :SessionManagement
    autoload :Streaming
    autoload :Testing
    autoload :UrlFor
  end

  autoload :Integration,        'action_controller/deprecated/integration_test'
  autoload :IntegrationTest,    'action_controller/deprecated/integration_test'
  autoload :PerformanceTest,    'action_controller/deprecated/performance_test'
  autoload :UrlWriter,          'action_controller/deprecated'
  autoload :Routing,            'action_controller/deprecated'
  autoload :TestCase,           'action_controller/test_case'
  autoload :TemplateAssertions, 'action_controller/test_case'

  eager_autoload do
    autoload :RecordIdentifier
  end
end

# All of these simply register additional autoloads
require 'action_view'
require 'action_controller/vendor/html-scanner'

# Common Active Support usage in Action Controller
require 'active_support/concern'
require 'active_support/core_ext/class/attribute_accessors'
require 'active_support/core_ext/load_error'
require 'active_support/core_ext/module/attr_internal'
require 'active_support/core_ext/module/delegation'
require 'active_support/core_ext/name_error'
require 'active_support/core_ext/uri'
require 'active_support/inflector'

Version data entries

153 entries across 114 versions & 18 rubygems

Version Path
actionpack-3.2.22.5 lib/action_controller.rb
actionpack-3.2.22.4 lib/action_controller.rb
actionpack-3.2.22.3 lib/action_controller.rb
actionpack-3.2.22.2 lib/action_controller.rb
actionpack-3.2.22.1 lib/action_controller.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.12/lib/action_controller.rb
actionpack-3.2.22 lib/action_controller.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/actionpack-3.2.12/lib/action_controller.rb
actionpack-3.2.21 lib/action_controller.rb
actionpack-3.2.20 lib/action_controller.rb
actionpack-3.2.19 lib/action_controller.rb
actionpack-3.2.18 lib/action_controller.rb
actionpack-3.2.17 lib/action_controller.rb
actionpack-3.2.16 lib/action_controller.rb
actionpack-3.2.15 lib/action_controller.rb
actionpack-3.2.15.rc3 lib/action_controller.rb
actionpack-3.2.15.rc2 lib/action_controller.rb
actionpack-3.2.15.rc1 lib/action_controller.rb
actionpack-3.2.14 lib/action_controller.rb
actionpack-3.2.14.rc2 lib/action_controller.rb