class Thor::OrderedHash

def +(other)

def +(other)
  new = clone
  other.each do |key, value|
    new[key] = value unless self[key]
  end
  new
end