Methods
N
O
Attributes
[RW] env_table
[RW] stdinput
[RW] stdoutput
Class Public methods
new(env_table, input = nil, output = nil)
# File rails/railties/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
Instance Public methods
out(stream)
# File rails/railties/lib/commands/ncgi/listener, line 20
def out(stream) # Ignore the requested output stream
  super(stdoutput)
end