Class: Rvim::Filter::Result
- Inherits:
-
Struct
- Object
- Struct
- Rvim::Filter::Result
- Defined in:
- lib/rvim/filter.rb
Instance Attribute Summary collapse
-
#status ⇒ Object
Returns the value of attribute status.
-
#stderr ⇒ Object
Returns the value of attribute stderr.
-
#stdout ⇒ Object
Returns the value of attribute stdout.
Instance Method Summary collapse
Instance Attribute Details
#status ⇒ Object
Returns the value of attribute status
7 8 9 |
# File 'lib/rvim/filter.rb', line 7 def status @status end |
#stderr ⇒ Object
Returns the value of attribute stderr
7 8 9 |
# File 'lib/rvim/filter.rb', line 7 def stderr @stderr end |
#stdout ⇒ Object
Returns the value of attribute stdout
7 8 9 |
# File 'lib/rvim/filter.rb', line 7 def stdout @stdout end |
Instance Method Details
#success? ⇒ Boolean
8 9 10 |
# File 'lib/rvim/filter.rb', line 8 def success? status.success? end |