module Hashie::Extensions::IndifferentAccess

def indifferent_update(other_hash)

def indifferent_update(other_hash)
  return regular_update(other_hash) if hash_with_indifference?(other_hash)
  other_hash.each_pair do |k,v|
    self[k] = v
  end
end