# File lib/cgikit/resource.rb, line 149
  def <<( bytes )
    open do
      @tempfile.seek(0, IO::SEEK_END)
      if ByteData === bytes then
        @tempfile << bytes.bytes
      else
        @tempfile << bytes
      end
      self
    end
  end