class Hashie::Mash
def deep_update(other_hash)
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
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