class Hash

def deep_stringify_keys!

nested hashes and arrays.
This includes the keys from the root hash and from all
Destructively converts all keys to strings.
def deep_stringify_keys!
  deep_transform_keys!(&:to_s)
end