aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2014-07-24 13:51:51 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2014-07-24 13:51:51 -0300
commit3f4e97f807eb475ac8c311e5baf138249a8a1ab2 (patch)
tree41d31e87736bce2a3d3a5cbc323f74a2cbf513a6 /activesupport/lib
parent5f25435bf4b3c4e6c1dbac92ef9063420d28dc49 (diff)
parentc17c262cfcae307def3a0657602adccaf7fa91cf (diff)
downloadrails-3f4e97f807eb475ac8c311e5baf138249a8a1ab2.tar.gz
rails-3f4e97f807eb475ac8c311e5baf138249a8a1ab2.tar.bz2
rails-3f4e97f807eb475ac8c311e5baf138249a8a1ab2.zip
Merge pull request #16281 from arthurnn/copy_default_proc_hwia
Make HWIA copy the default proc too.
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/hash_with_indifferent_access.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/hash_with_indifferent_access.rb b/activesupport/lib/active_support/hash_with_indifferent_access.rb
index e1eb81b8bc..dc76a77a6c 100644
--- a/activesupport/lib/active_support/hash_with_indifferent_access.rb
+++ b/activesupport/lib/active_support/hash_with_indifferent_access.rb
@@ -75,6 +75,7 @@ module ActiveSupport
hash = hash.to_hash
new(hash).tap do |new_hash|
new_hash.default = hash.default
+ new_hash.default_proc = hash.default_proc if hash.default_proc
end
end