Sha256: f7dbb09bfe6a4500c4943aa602bb8d646ae4ccc3c154445a9e0ecadd055591e9

Contents?: true

Size: 394 Bytes

Versions: 117

Compression:

Stored size: 394 Bytes

Contents

class Hash
  # Returns a deep copy of hash.
  #
  #   hash = { :a => { :b => 'b' } }
  #   dup  = hash.deep_dup
  #   dup[:a][:c] = 'c'
  #
  #   hash[:a][:c] #=> nil
  #   dup[:a][:c]  #=> "c"
  def deep_dup
    duplicate = self.dup
    duplicate.each_pair do |k,v|
      tv = duplicate[k]
      duplicate[k] = tv.is_a?(Hash) && v.is_a?(Hash) ? tv.deep_dup : v
    end
    duplicate
  end
end

Version data entries

117 entries across 89 versions & 22 rubygems

Version Path
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activesupport-3.2.22.5/lib/active_support/core_ext/hash/deep_dup.rb
activesupport-3.2.22.5 lib/active_support/core_ext/hash/deep_dup.rb
activesupport-3.2.22.4 lib/active_support/core_ext/hash/deep_dup.rb
activesupport-3.2.22.3 lib/active_support/core_ext/hash/deep_dup.rb
activesupport-3.2.22.2 lib/active_support/core_ext/hash/deep_dup.rb
activesupport-3.2.22.1 lib/active_support/core_ext/hash/deep_dup.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/core_ext/hash/deep_dup.rb
activesupport-3.2.22 lib/active_support/core_ext/hash/deep_dup.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.12/lib/active_support/core_ext/hash/deep_dup.rb
activesupport-3.2.21 lib/active_support/core_ext/hash/deep_dup.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/core_ext/hash/deep_dup.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/core_ext/hash/deep_dup.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/core_ext/hash/deep_dup.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/core_ext/hash/deep_dup.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/core_ext/hash/deep_dup.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/core_ext/hash/deep_dup.rb
activesupport-3.2.20 lib/active_support/core_ext/hash/deep_dup.rb
activesupport-3.2.19 lib/active_support/core_ext/hash/deep_dup.rb
activesupport-3.2.18 lib/active_support/core_ext/hash/deep_dup.rb
activesupport-3.2.17 lib/active_support/core_ext/hash/deep_dup.rb