rails/actionpack/lib/action_controller.rb

75 lines
2.1 KiB
Ruby
Raw Normal View History

require 'active_support/rails'
require 'abstract_controller'
require 'action_dispatch'
require 'action_controller/metal/live'
module ActionController
extend ActiveSupport::Autoload
2009-12-22 23:27:37 +00:00
autoload :Base
autoload :Caching
autoload :Metal
autoload :Middleware
2009-12-22 23:27:37 +00:00
autoload_under "metal" do
autoload :Compatibility
2009-12-22 23:27:37 +00:00
autoload :ConditionalGet
autoload :Cookies
2011-04-18 06:17:47 +00:00
autoload :DataStreaming
autoload :Flash
autoload :ForceSSL
2009-12-22 23:27:37 +00:00
autoload :Head
autoload :Helpers
autoload :HideActions
autoload :HttpAuthentication
autoload :ImplicitRender
autoload :Instrumentation
2009-12-22 23:27:37 +00:00
autoload :MimeResponds
autoload :ParamsWrapper
2009-12-22 23:27:37 +00:00
autoload :RackDelegation
autoload :Redirecting
autoload :Renderers
2010-01-04 21:59:23 +00:00
autoload :Rendering
autoload :RequestForgeryProtection
2009-12-22 23:27:37 +00:00
autoload :Rescue
autoload :Responder
autoload :Streaming
autoload :StrongParameters
2010-01-04 21:59:23 +00:00
autoload :Testing
autoload :UrlFor
2009-12-13 01:41:58 +00:00
end
autoload :Integration, 'action_controller/deprecated/integration_test'
autoload :IntegrationTest, 'action_controller/deprecated/integration_test'
autoload :PerformanceTest, 'action_controller/deprecated/performance_test'
autoload :Routing, 'action_controller/deprecated'
autoload :TestCase, 'action_controller/test_case'
autoload :TemplateAssertions, 'action_controller/test_case'
eager_autoload do
autoload :RecordIdentifier
end
def self.eager_load!
super
ActionController::Caching.eager_load!
HTML.eager_load!
end
end
# All of these simply register additional autoloads
require 'action_view'
require 'action_view/vendor/html-scanner'
ActiveSupport.on_load(:action_view) do
ActionView::RoutingUrlFor.send(:include, ActionDispatch::Routing::UrlFor)
end
# Common Active Support usage in Action Controller
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/name_error'
require 'active_support/core_ext/uri'
require 'active_support/inflector'