aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/http/parameters.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-07-04 14:17:34 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-07-04 14:17:34 -0300
commit540a0ba8e2234344b4f47ea1cdbedf8c84b74dbf (patch)
tree3d3e5027b68961eb6c8957a4048c8407feaa4d00 /actionpack/lib/action_dispatch/http/parameters.rb
parentc59c09126f9e80b45e381eb6939bb0577738924a (diff)
parentcb5f2d321587e80964e051b52c5d7e5a3cc0aaaa (diff)
downloadrails-540a0ba8e2234344b4f47ea1cdbedf8c84b74dbf.tar.gz
rails-540a0ba8e2234344b4f47ea1cdbedf8c84b74dbf.tar.bz2
rails-540a0ba8e2234344b4f47ea1cdbedf8c84b74dbf.zip
Merge pull request #16013 from tgxworld/remove_symbolized_path_parameters
Remove symbolized_path_parameters.
Diffstat (limited to 'actionpack/lib/action_dispatch/http/parameters.rb')
-rw-r--r--actionpack/lib/action_dispatch/http/parameters.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/actionpack/lib/action_dispatch/http/parameters.rb b/actionpack/lib/action_dispatch/http/parameters.rb
index 5f7627cf96..6f10fcd9bf 100644
--- a/actionpack/lib/action_dispatch/http/parameters.rb
+++ b/actionpack/lib/action_dispatch/http/parameters.rb
@@ -1,5 +1,6 @@
require 'active_support/core_ext/hash/keys'
require 'active_support/core_ext/hash/indifferent_access'
+require 'active_support/deprecation'
module ActionDispatch
module Http
@@ -24,8 +25,10 @@ module ActionDispatch
@env[PARAMETERS_KEY] = parameters
end
- # The same as <tt>path_parameters</tt> with explicitly symbolized keys.
def symbolized_path_parameters
+ ActiveSupport::Deprecation.warn(
+ "`symbolized_path_parameters` is deprecated. Please use `path_parameters`"
+ )
path_parameters
end
@@ -33,8 +36,6 @@ module ActionDispatch
# Returned hash keys are strings:
#
# {'action' => 'my_action', 'controller' => 'my_controller'}
- #
- # See <tt>symbolized_path_parameters</tt> for symbolized keys.
def path_parameters
@env[PARAMETERS_KEY] ||= {}
end