Class: Vagrant::Util::Subprocess::Result
- Inherits:
-
Object
- Object
- Vagrant::Util::Subprocess::Result
- Defined in:
- lib/vagrant/util/subprocess.rb
Overview
Container class to store the results of executing a subprocess.
Instance Attribute Summary collapse
-
#exit_code ⇒ Object
readonly
Returns the value of attribute exit_code.
-
#stderr ⇒ Object
readonly
Returns the value of attribute stderr.
-
#stdout ⇒ Object
readonly
Returns the value of attribute stdout.
Instance Method Summary collapse
-
#initialize(exit_code, stdout, stderr) ⇒ Result
constructor
A new instance of Result.
Constructor Details
#initialize(exit_code, stdout, stderr) ⇒ Result
Returns a new instance of Result.
262 263 264 265 266 |
# File 'lib/vagrant/util/subprocess.rb', line 262 def initialize(exit_code, stdout, stderr) @exit_code = exit_code @stdout = stdout @stderr = stderr end |
Instance Attribute Details
#exit_code ⇒ Object (readonly)
Returns the value of attribute exit_code.
258 259 260 |
# File 'lib/vagrant/util/subprocess.rb', line 258 def exit_code @exit_code end |
#stderr ⇒ Object (readonly)
Returns the value of attribute stderr.
260 261 262 |
# File 'lib/vagrant/util/subprocess.rb', line 260 def stderr @stderr end |
#stdout ⇒ Object (readonly)
Returns the value of attribute stdout.
259 260 261 |
# File 'lib/vagrant/util/subprocess.rb', line 259 def stdout @stdout end |