Class: Hash

Inherits:
Object
  • Object
show all
Defined in:
lib/gat/extends.rb

Instance Method Summary collapse

Instance Method Details

#deep_merge(hash) ⇒ Object

Merges self with another hash, recursively.

This code was lovingly stolen from some random gem: gemjack.com/gems/tartan-0.1.1/classes/Hash.html

Thanks to whoever made it.



95
96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/gat/extends.rb', line 95

def deep_merge(hash)
  target = dup
  
  hash.keys.each do |key|
    if hash[key].is_a? Hash and self[key].is_a? Hash
      target[key] = target[key].deep_merge(hash[key])
      next
    end

    target[key] = hash[key]
  end
  
  target
end