module Hashie::Extensions::IndifferentAccess

def convert!

is injecting itself into member hashes.
their proper indifferent state. Used when IndifferentAccess
Iterates through the keys and values, reconverting them to
def convert!
  keys.each do |k|
    regular_writer convert_key(k), convert_value(regular_delete(k))
  end
  self
end