module Hashie::HashExtensions

def hashie_stringify_keys!

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