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
-
#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(open3_captured) ⇒ Result
constructor
A new instance of Result.
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
#status ⇒ Object (readonly)
Returns the value of attribute status.
91 92 93 |
# File 'lib/haxe/cli/proxy/command.rb', line 91 def status @status end |
#stderr ⇒ Object (readonly)
Returns the value of attribute stderr.
91 92 93 |
# File 'lib/haxe/cli/proxy/command.rb', line 91 def stderr @stderr end |
#stdout ⇒ Object (readonly)
Returns the value of attribute stdout.
91 92 93 |
# File 'lib/haxe/cli/proxy/command.rb', line 91 def stdout @stdout end |