2009-12-16 12:56:51 -05:00
|
|
|
activesupport_path = File.expand_path('../../../activesupport/lib', __FILE__)
|
|
|
|
$:.unshift(activesupport_path) if File.directory?(activesupport_path) && !$:.include?(activesupport_path)
|
|
|
|
|
2009-12-20 17:06:40 -05:00
|
|
|
require 'active_support/ruby/shim'
|
2009-12-16 12:56:51 -05:00
|
|
|
require 'active_support/core_ext/module/attr_internal'
|
|
|
|
require 'active_support/core_ext/module/delegation'
|
2009-08-06 21:51:24 -04:00
|
|
|
|
|
|
|
module AbstractController
|
2009-12-02 23:01:01 -05:00
|
|
|
extend ActiveSupport::Autoload
|
|
|
|
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Base
|
|
|
|
autoload :Callbacks
|
|
|
|
autoload :Helpers
|
|
|
|
autoload :Layouts
|
|
|
|
autoload :LocalizedCache
|
|
|
|
autoload :Logger
|
|
|
|
autoload :Rendering
|
2009-08-06 21:51:24 -04:00
|
|
|
end
|