aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-12-10 11:00:44 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2008-12-10 11:00:44 -0800
commite4c0163f3288cf992b8a60666d79f20f74daeab8 (patch)
tree6715f3b178e968cc7bea38c9bb888b61f8d2bfd3 /actionpack/lib/action_controller.rb
parent05f2183747c8e75c9e8bbaadb9573b4bdf41ecfc (diff)
downloadrails-e4c0163f3288cf992b8a60666d79f20f74daeab8.tar.gz
rails-e4c0163f3288cf992b8a60666d79f20f74daeab8.tar.bz2
rails-e4c0163f3288cf992b8a60666d79f20f74daeab8.zip
Fix ActionController autoloads
Diffstat (limited to 'actionpack/lib/action_controller.rb')
-rw-r--r--actionpack/lib/action_controller.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller.rb b/actionpack/lib/action_controller.rb
index 5d5d6b8c9c..abc404afe7 100644
--- a/actionpack/lib/action_controller.rb
+++ b/actionpack/lib/action_controller.rb
@@ -38,7 +38,7 @@ module ActionController
# TODO: Review explicit to see if they will automatically be handled by
# the initilizer if they are really needed.
def self.load_all!
- [Base, CgiRequest, CgiResponse, RackRequest, RackRequest, Http::Headers, UrlRewriter, UrlWriter]
+ [Base, CGIHandler, CgiRequest, RackRequest, RackRequest, Http::Headers, UrlRewriter, UrlWriter]
end
autoload :AbstractRequest, 'action_controller/request'
@@ -91,7 +91,6 @@ module ActionController
# DEPRECATE: Remove CGI support
autoload :CgiRequest, 'action_controller/cgi_process'
- autoload :CgiResponse, 'action_controller/cgi_process'
autoload :CGIHandler, 'action_controller/cgi_process'
end