aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-12-19 17:15:22 -0600
committerJoshua Peek <josh@joshpeek.com>2008-12-19 17:15:22 -0600
commitfda62ecf707b4023b30303dd0baf303f1ef8d344 (patch)
tree7329cd55304c2f5b092817171805fa7cf1088e97 /actionpack/lib/action_controller.rb
parenta14bbd7a8574c3b485d4b71e0950b2b9ff4e90d7 (diff)
downloadrails-fda62ecf707b4023b30303dd0baf303f1ef8d344.tar.gz
rails-fda62ecf707b4023b30303dd0baf303f1ef8d344.tar.bz2
rails-fda62ecf707b4023b30303dd0baf303f1ef8d344.zip
Rename AbstractResponse to Response and inheirt from Rack::Response
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 eaf7779f1e..ae947820b4 100644
--- a/actionpack/lib/action_controller.rb
+++ b/actionpack/lib/action_controller.rb
@@ -42,7 +42,6 @@ module ActionController
end
autoload :AbstractRequest, 'action_controller/request'
- autoload :AbstractResponse, 'action_controller/response'
autoload :Base, 'action_controller/base'
autoload :Benchmarking, 'action_controller/benchmarking'
autoload :Caching, 'action_controller/caching'
@@ -61,8 +60,8 @@ module ActionController
autoload :MimeResponds, 'action_controller/mime_responds'
autoload :PolymorphicRoutes, 'action_controller/polymorphic_routes'
autoload :RackRequest, 'action_controller/rack_process'
- autoload :RackResponse, 'action_controller/rack_process'
autoload :RecordIdentifier, 'action_controller/record_identifier'
+ autoload :Response, 'action_controller/response'
autoload :RequestForgeryProtection, 'action_controller/request_forgery_protection'
autoload :Rescue, 'action_controller/rescue'
autoload :Resources, 'action_controller/resources'