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