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

Methods

Included Modules

ClassMethods

Classes and Modules

Module Hashie::Extensions::SymbolizeKeys::ClassMethods

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

[Validate]