method
transform_keys
v4.1.8 -
Show latest stable
- Class:
Hash
transform_keys()public
Returns a new hash with all keys converted using the block operation.
hash = { name: 'Rob', age: '28' } hash.transform_keys{ |key| key.to_s.upcase } # => {"NAME"=>"Rob", "AGE"=>"28"}