# File lib/unicorn/stream_input.rb, line 96
  def each
    while line = gets
      yield line
    end

    self # Rack does not specify what the return value is here
  end