Method: Rackup::Handler::CGI.send_body

Defined in:
lib/rackup/handler/cgi.rb

.send_body(body) ⇒ Object



51
52
53
54
55
56
# File 'lib/rackup/handler/cgi.rb', line 51

def self.send_body(body)
  body.each { |part|
    $stdout.print part
    $stdout.flush
  }
end