action_controller.rb 2.6 KB
Newer Older
1 2
activesupport_path = File.expand_path('../../../activesupport/lib', __FILE__)
$:.unshift(activesupport_path) if File.directory?(activesupport_path) && !$:.include?(activesupport_path)
3
require 'active_support/ruby/shim'
C
Carlhuda 已提交
4

5
module ActionController
C
Carlhuda 已提交
6
  extend ActiveSupport::Autoload
7

J
Joshua Peek 已提交
8 9 10 11 12 13
  autoload :Base
  autoload :Caching
  autoload :PolymorphicRoutes
  autoload :Translation
  autoload :Metal
  autoload :Middleware
14

J
Joshua Peek 已提交
15
  autoload_under "metal" do
16
    autoload :Compatibility
J
Joshua Peek 已提交
17 18
    autoload :ConditionalGet
    autoload :Configuration
19 20 21
    autoload :Cookies
    autoload :FilterParameterLogging
    autoload :Flash
J
Joshua Peek 已提交
22 23 24
    autoload :Head
    autoload :Helpers
    autoload :HideActions
25
    autoload :HttpAuthentication
26
    autoload :Instrumentation
J
Joshua Peek 已提交
27 28 29 30
    autoload :MimeResponds
    autoload :RackDelegation
    autoload :Redirecting
    autoload :Renderers
31
    autoload :Rendering
32
    autoload :RequestForgeryProtection
J
Joshua Peek 已提交
33 34 35
    autoload :Rescue
    autoload :Responder
    autoload :SessionManagement
36
    autoload :Streaming
37
    autoload :Testing
J
Joshua Peek 已提交
38 39
    autoload :UrlFor
    autoload :Verification
40
  end
41

J
Joshua Peek 已提交
42 43 44
  autoload :Dispatcher,      'action_controller/dispatch/dispatcher'
  autoload :Integration,     'action_controller/deprecated/integration_test'
  autoload :IntegrationTest, 'action_controller/deprecated/integration_test'
45 46 47
  autoload :PerformanceTest, 'action_controller/deprecated/performance_test'
  autoload :Routing,         'action_controller/deprecated'
  autoload :TestCase,        'action_controller/test_case'
C
Carlhuda 已提交
48

J
Joshua Peek 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
  eager_autoload do
    autoload :RecordIdentifier
    autoload :UrlRewriter

    # TODO: Don't autoload exceptions, setup explicit
    # requires for files that need them
    autoload_at "action_controller/metal/exceptions" do
      autoload :ActionControllerError
      autoload :RenderError
      autoload :RoutingError
      autoload :MethodNotAllowed
      autoload :NotImplemented
      autoload :UnknownController
      autoload :MissingFile
      autoload :RenderError
      autoload :SessionOverflowError
      autoload :UnknownHttpMethod
    end
C
Carlhuda 已提交
67 68
  end
end
69

C
Carlhuda 已提交
70 71
# All of these simply register additional autoloads
require 'abstract_controller'
72 73
require 'action_dispatch'
require 'action_view'
C
Carlhuda 已提交
74
require 'action_controller/vendor/html-scanner'
75 76 77 78 79 80 81 82

# Common ActiveSupport usage in ActionController
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'
83
require 'active_support/inflector'