class Hashie::Mash

def to_hash

Converts a mash back to a hash (with stringified keys)
def to_hash
  Hash.new(default).merge(self)
end