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(exec_command, open3_captured) ⇒ Result

Returns a new instance of Result.



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

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

Instance Attribute Details

#exec_commandObject (readonly)

Returns the value of attribute exec_command.



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

def exec_command
  @exec_command
end

#statusObject (readonly)

Returns the value of attribute status.



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

def status
  @status
end

#stderrObject (readonly)

Returns the value of attribute stderr.



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

def stderr
  @stderr
end

#stdoutObject (readonly)

Returns the value of attribute stdout.



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

def stdout
  @stdout
end