class Hash

def deep_transform_keys!(&block)

nested hashes and arrays.
This includes the keys from the root hash and from all
Destructively converts all keys by using the block operation.
def deep_transform_keys!(&block)
  _deep_transform_keys_in_object!(self, &block)
end