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

Methods

Public Instance methods

Return a new hash with all keys converted to symbols.

Convert all keys in the hash to symbols.

@example

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

Protected Instance methods

Symbolize all keys recursively within nested hashes and arrays.

[Validate]