class Bundler::Thor::CoreExt::HashWithIndifferentAccess

def merge!(other)

def merge!(other)
  other.each do |key, value|
    self[convert_key(key)] = value
  end
  self
end