aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-01-17 09:58:52 -0200
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-01-17 18:07:08 -0200
commite5e87041ceafc64d11a01e5a1c7ce1f978a788a6 (patch)
tree872b2ac666e18b0ec4c75aad6ce8bf135e1462f5 /actionpack/lib/action_controller
parent9d4fd613a69378b38b061580e6b979e61fe9a823 (diff)
downloadrails-e5e87041ceafc64d11a01e5a1c7ce1f978a788a6.tar.gz
rails-e5e87041ceafc64d11a01e5a1c7ce1f978a788a6.tar.bz2
rails-e5e87041ceafc64d11a01e5a1c7ce1f978a788a6.zip
Deprecate AC::UnknownError and AC::DoubleRenderError
Use the constants AbstractController::ActionNotFound and AbstractController::DoubleRenderError respectively instead.
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/metal/compatibility.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/metal/compatibility.rb b/actionpack/lib/action_controller/metal/compatibility.rb
index 21626fde44..9895b2b4b5 100644
--- a/actionpack/lib/action_controller/metal/compatibility.rb
+++ b/actionpack/lib/action_controller/metal/compatibility.rb
@@ -9,8 +9,8 @@ module ActionController
# Temporary hax
included do
- ::ActionController::UnknownAction = ::AbstractController::ActionNotFound
- ::ActionController::DoubleRenderError = ::AbstractController::DoubleRenderError
+ ::ActionController::UnknownAction = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActionController::UnknownAction', '::AbstractController::ActionNotFound')
+ ::ActionController::DoubleRenderError = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActionController::DoubleRenderError', '::AbstractController::DoubleRenderError')
# ROUTES TODO: This should be handled by a middleware and route generation
# should be able to handle SCRIPT_NAME