class Hash

def deep_stringify_keys!

nested hashes and arrays.
This includes the keys from the root hash and from all
Destructively convert all keys to strings.
def deep_stringify_keys!
  deep_transform_keys!{ |key| key.to_s }
end