Class: ConcurrentPipeline::Shell::Result
- Inherits:
-
Struct
- Object
- Struct
- ConcurrentPipeline::Shell::Result
- Defined in:
- lib/concurrent_pipeline/shell.rb
Instance Attribute Summary collapse
-
#command ⇒ Object
Returns the value of attribute command.
-
#stderr ⇒ Object
Returns the value of attribute stderr.
-
#stdout ⇒ Object
Returns the value of attribute stdout.
-
#success ⇒ Object
Returns the value of attribute success.
Instance Method Summary collapse
Instance Attribute Details
#command ⇒ Object
Returns the value of attribute command
9 10 11 |
# File 'lib/concurrent_pipeline/shell.rb', line 9 def command @command end |
#stderr ⇒ Object
Returns the value of attribute stderr
9 10 11 |
# File 'lib/concurrent_pipeline/shell.rb', line 9 def stderr @stderr end |
#stdout ⇒ Object
Returns the value of attribute stdout
9 10 11 |
# File 'lib/concurrent_pipeline/shell.rb', line 9 def stdout @stdout end |
#success ⇒ Object
Returns the value of attribute success
9 10 11 |
# File 'lib/concurrent_pipeline/shell.rb', line 9 def success @success end |
Instance Method Details
#success? ⇒ Boolean
10 11 12 |
# File 'lib/concurrent_pipeline/shell.rb', line 10 def success? success end |