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

Methods

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'}

Protected Instance methods

Stringify all keys recursively within nested hashes and arrays.

[Validate]