class ActiveSupport::HashWithIndifferentAccess
def merge(*hashes, &block)
modify the receiver but rather returns a new hash with indifferent
This method has the same semantics of +update+, except it does not
def merge(*hashes, &block) dup.update(*hashes, &block) end