module Hashie::HashExtensions

def hashie_stringify_keys!

to their string representations.
Destructively convert all of the keys of a Hash
def hashie_stringify_keys!
  keys.each do |k|
    self[k.to_s] = delete(k) unless String === k
  end
  self
end