# File src/ruby_supportlib/phusion_passenger/utils/tee_input.rb, line 186
  def each
    while line = gets
      yield line
    end

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