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

Methods

Public Instance methods

Return a copy of hash with all keys converted to strings. @param [::Hash] hash

Convert all keys in the hash to strings.

@param [::Hash] hash @example

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

Stringify all keys recursively within nested hashes and arrays. @api private

[Validate]