class Hashie::Rash

def update(other)

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