class Hashie::Mash

def deep_update(*other_hashes, &blk)

in hash, merging each hash in the hierarchy.
Recursively merges this mash with the passed
def deep_update(*other_hashes, &blk)
  other_hashes.each do |other_hash|
    _deep_update(other_hash, &blk)
  end
  self
end