Module Hashie::Extensions::StringifyKeys
In: lib/hashie/extensions/stringify_keys.rb

Methods

Included Modules

ClassMethods

Classes and Modules

Module Hashie::Extensions::StringifyKeys::ClassMethods

Public Instance methods

Return a new hash with all keys converted to strings.

Convert all keys in the hash to strings.

@example

  test = {:abc => 'def'}
  test.stringify_keys!
  test # => {'abc' => 'def'}

[Validate]