aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/new_base.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-05-22 16:57:45 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-05-22 17:05:44 -0700
commitf9dde8fe4e14e7750e9a00c666b052bb409ead05 (patch)
treeb9cbb097c0f9b44ec0ba2b5a902a39e615d54986 /actionpack/lib/action_controller/new_base.rb
parentc90f613ad68253cb253bf47cb812f9e027c35d10 (diff)
downloadrails-f9dde8fe4e14e7750e9a00c666b052bb409ead05.tar.gz
rails-f9dde8fe4e14e7750e9a00c666b052bb409ead05.tar.bz2
rails-f9dde8fe4e14e7750e9a00c666b052bb409ead05.zip
Port cookies to new base
Diffstat (limited to 'actionpack/lib/action_controller/new_base.rb')
-rw-r--r--actionpack/lib/action_controller/new_base.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/new_base.rb b/actionpack/lib/action_controller/new_base.rb
index ad0e07e261..276be50614 100644
--- a/actionpack/lib/action_controller/new_base.rb
+++ b/actionpack/lib/action_controller/new_base.rb
@@ -35,9 +35,10 @@ module ActionController
autoload :HttpAuthentication, 'action_controller/base/http_authentication'
autoload :FilterParameterLogging, 'action_controller/base/filter_parameter_logging'
autoload :Translation, 'action_controller/translation'
+ autoload :Cookies, 'action_controller/base/cookies'
require 'action_controller/routing'
end
require 'action_dispatch'
-require 'action_view' \ No newline at end of file
+require 'action_view'