aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/hash.rb
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2010-10-28 19:43:21 +0200
committerPiotr Sarnacki <drogus@gmail.com>2010-11-02 17:14:52 +0100
commit5071b727b438f1ca6be502c906f5af751abb0229 (patch)
treefba52afb44767c7d594a48c446bcbac8daff5886 /activesupport/lib/active_support/core_ext/hash.rb
parentcfbe5958311f21397c98657c3370d03dcf720fe1 (diff)
downloadrails-5071b727b438f1ca6be502c906f5af751abb0229.tar.gz
rails-5071b727b438f1ca6be502c906f5af751abb0229.tar.bz2
rails-5071b727b438f1ca6be502c906f5af751abb0229.zip
Added Hash#deep_dup function which performs deep duplication on given hash
Diffstat (limited to 'activesupport/lib/active_support/core_ext/hash.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/hash.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash.rb b/activesupport/lib/active_support/core_ext/hash.rb
index 501483498d..fd1cda991e 100644
--- a/activesupport/lib/active_support/core_ext/hash.rb
+++ b/activesupport/lib/active_support/core_ext/hash.rb
@@ -1,5 +1,6 @@
require 'active_support/core_ext/hash/conversions'
require 'active_support/core_ext/hash/deep_merge'
+require 'active_support/core_ext/hash/deep_dup'
require 'active_support/core_ext/hash/diff'
require 'active_support/core_ext/hash/except'
require 'active_support/core_ext/hash/indifferent_access'