class Rack::Response

def each(&callback)

def each(&callback)
  @body.each(&callback)
  @buffered = true
  if @block
    @writer = callback
    @block.call(self)
  end
end