Parent

Methods

Class/Module Index [+]

Quicksearch

RemoteCGI

Attributes

env_table[RW]
stdinput[RW]
stdoutput[RW]

Public Class Methods

new(env_table, input = nil, output = nil) click to toggle source
# File lib/commands/ncgi/listener, line 13
def initialize(env_table, input = nil, output = nil)
  self.env_table = env_table
  self.stdinput = input || StringIO.new
  self.stdoutput = output || StringIO.new
  super()
end

Public Instance Methods

out(stream) click to toggle source
# File lib/commands/ncgi/listener, line 20
def out(stream) # Ignore the requested output stream
  super(stdoutput)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.