module Hashie::Extensions::StringifyKeys

def stringify_keys!

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

Convert all keys in the hash to strings.
def stringify_keys!
  StringifyKeys.stringify_keys!(self)
  self
end