Class: Haxe::Cli::Proxy::Command::Result

Inherits:
Object
  • Object
show all
Defined in:
lib/haxe/cli/proxy/command.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(open3_captured) ⇒ Result

Returns a new instance of Result.



93
94
95
# File 'lib/haxe/cli/proxy/command.rb', line 93

def initialize(open3_captured)
  @stdout, @stderr, @status = open3_captured
end

Instance Attribute Details

#statusObject (readonly)

Returns the value of attribute status.



91
92
93
# File 'lib/haxe/cli/proxy/command.rb', line 91

def status
  @status
end

#stderrObject (readonly)

Returns the value of attribute stderr.



91
92
93
# File 'lib/haxe/cli/proxy/command.rb', line 91

def stderr
  @stderr
end

#stdoutObject (readonly)

Returns the value of attribute stdout.



91
92
93
# File 'lib/haxe/cli/proxy/command.rb', line 91

def stdout
  @stdout
end