aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2017-02-06 14:27:08 +0100
committerRobin Dupret <robin.dupret@gmail.com>2017-02-19 22:06:12 +0100
commite532531939a610c3a1ba4594d325b10a0c9b4546 (patch)
tree377843c41a67eaa8b0d3a2161549981edba61baa /activesupport/lib
parent4f2aa162ed3dc419fa1a7880ecd77d47ba28a8d3 (diff)
downloadrails-e532531939a610c3a1ba4594d325b10a0c9b4546.tar.gz
rails-e532531939a610c3a1ba4594d325b10a0c9b4546.tar.bz2
rails-e532531939a610c3a1ba4594d325b10a0c9b4546.zip
Deprecate the top-level `HashWithIndifferentAccess` contant
This constant was kept for the sake of backward compatibility; it is still available under `ActiveSupport::HashWithIndifferentAccess`. Furthermore, since Ruby 2.5 (https://bugs.ruby-lang.org/issues/11547) won't support top level constant lookup, people would have to update their code anyway.
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/hash_with_indifferent_access.rb18
1 files changed, 17 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/hash_with_indifferent_access.rb b/activesupport/lib/active_support/hash_with_indifferent_access.rb
index 79e7feaf47..8638667082 100644
--- a/activesupport/lib/active_support/hash_with_indifferent_access.rb
+++ b/activesupport/lib/active_support/hash_with_indifferent_access.rb
@@ -316,4 +316,20 @@ module ActiveSupport
end
end
-HashWithIndifferentAccess = ActiveSupport::HashWithIndifferentAccess
+class HashWithIndifferentAccess < ActiveSupport::HashWithIndifferentAccess
+ def initialize(*)
+ ActiveSupport::Deprecation.warn "HashWithIndifferentAccess is deprecated!" \
+ "Use ActiveSupport::HashWithIndifferentAccess instead."
+ super
+ end
+
+ def self.inherited(*)
+ ActiveSupport::Deprecation.warn "HashWithIndifferentAccess is deprecated!" \
+ "Use ActiveSupport::HashWithIndifferentAccess instead."
+ super
+ end
+
+ def encode_with(coder)
+ coder.represent_object(nil, ActiveSupport::HashWithIndifferentAccess.new(self))
+ end
+end