class Hash

def stringify_keys

#=> { "name" => "Rob", "age" => "28" }
hash.stringify_keys

hash = { name: 'Rob', age: '28' }

Return a new hash with all keys converted to strings.
def stringify_keys
  transform_keys{ |key| key.to_s }
end