Parent

Methods

ActionController::CgiResponse

Public Instance Methods

out(output = $stdout) click to toggle source

on windows it is sometimes necessary to turn off writing output to avoid out of memory errors running under the console

# File lib/railsbench/write_headers_only.rb, line 4
def out(output = $stdout)
  convert_content_type!(@headers)
  output.binmode      if output.respond_to?(:binmode)
  output.sync = false if output.respond_to?(:sync=)
  begin
    output.write(@cgi.header(@headers))
    output.flush if output.respond_to?(:flush)
  rescue Errno::EPIPE => e
    # lost connection to the FCGI process -- ignore the output, then
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.