class Hashie::Mash

def deep_update(other_hash)

in hash, merging each hash in the hierarchy.
Recursively merges this mash with the passed
def deep_update(other_hash)
  other_hash.each_pair do |k,v|
    regular_writer(convert_key(k), convert_value(other_hash[k], true))
  end
  self
end