write

in http/get_simple/ruby/server/config.ru [71:77]


    def write(buffer)
      @block.call("#{buffer.bytesize.to_s(16)}\r\n") if @need_manual_chunked
      @block.call(buffer)
      @block.call("\r\n") if @need_manual_chunked
      buffer.bytesize
    end