class method
self.new
Ruby on Rails 2.3.18
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
self.new(env_table, input = nil, output = nil)
No documentation comment.
Parameters
-
env_tablereq -
inputopt = nil -
outputopt = nil
Source
# File 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
Defined in railties/lib/commands/ncgi/listener line 13
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in RemoteCGI