rails--rails/actionpack/lib/abstract_controller.rb

25 lines
757 B
Ruby
Raw Normal View History

activesupport_path = File.expand_path('../../../activesupport/lib', __FILE__)
$:.unshift(activesupport_path) if File.directory?(activesupport_path) && !$:.include?(activesupport_path)
require 'active_support/ruby/shim'
require 'active_support/dependencies/autoload'
require 'active_support/core_ext/class/attribute'
require 'active_support/core_ext/module/attr_internal'
require 'active_support/core_ext/module/delegation'
require 'active_support/core_ext/module/anonymous'
module AbstractController
extend ActiveSupport::Autoload
2009-12-22 23:27:37 +00:00
autoload :Base
autoload :Callbacks
2010-01-23 09:23:06 +00:00
autoload :Collector
autoload :Compatibility
autoload :DetailsCache
2009-12-22 23:27:37 +00:00
autoload :Helpers
autoload :Layouts
autoload :Logger
autoload :Rendering
autoload :Translation
end