Module: Fretboards::Ext::Hash

Included in:
Hash
Defined in:
lib/fretboards/ext/hash.rb

Instance Method Summary collapse

Instance Method Details

#deep_merge(other_hash) ⇒ Object



5
6
7
# File 'lib/fretboards/ext/hash.rb', line 5

def deep_merge(other_hash)
  dup.deep_merge!(other_hash)
end

#deep_merge!(other_hash) ⇒ Object



9
10
11
12
13
14
15
# File 'lib/fretboards/ext/hash.rb', line 9

def deep_merge!(other_hash)
  other_hash.each_pair do |k,v|
    tv = self[k]
    self[k] = tv.is_a?(Hash) && v.is_a?(Hash) ? tv.deep_merge(v) : v
  end
  self
end