Simon Baird wrote:
> class Hash
>  def <<(arg)
>    self.merge!(arg)
>  end
> end

class Hash
  alias << merge!
end

cheers

Simon