Class: Haxe::Cli::Proxy::Command::Result
- Inherits:
-
Object
- Object
- Haxe::Cli::Proxy::Command::Result
- Defined in:
- lib/haxe/cli/proxy/command.rb
Instance Attribute Summary collapse
-
#exec_command ⇒ Object
readonly
Returns the value of attribute exec_command.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#stderr ⇒ Object
readonly
Returns the value of attribute stderr.
-
#stdout ⇒ Object
readonly
Returns the value of attribute stdout.
Instance Method Summary collapse
-
#initialize(exec_command, open3_captured) ⇒ Result
constructor
A new instance of Result.
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_command ⇒ Object (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 |
#status ⇒ Object (readonly)
Returns the value of attribute status.
92 93 94 |
# File 'lib/haxe/cli/proxy/command.rb', line 92 def status @status end |
#stderr ⇒ Object (readonly)
Returns the value of attribute stderr.
92 93 94 |
# File 'lib/haxe/cli/proxy/command.rb', line 92 def stderr @stderr end |
#stdout ⇒ Object (readonly)
Returns the value of attribute stdout.
92 93 94 |
# File 'lib/haxe/cli/proxy/command.rb', line 92 def stdout @stdout end |