Class: Fog::SSH::Result
- Inherits:
-
Object
- Object
- Fog::SSH::Result
- Defined in:
- lib/fog/core/ssh.rb
Instance Attribute Summary collapse
-
#command ⇒ Object
Returns the value of attribute command.
-
#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
- #display_stderr ⇒ Object
- #display_stdout ⇒ Object
-
#initialize(command) ⇒ Result
constructor
A new instance of Result.
Constructor Details
#initialize(command) ⇒ Result
Returns a new instance of Result.
152 153 154 155 156 |
# File 'lib/fog/core/ssh.rb', line 152 def initialize(command) @command = command @stderr = "" @stdout = "" end |
Instance Attribute Details
#command ⇒ Object
Returns the value of attribute command.
137 138 139 |
# File 'lib/fog/core/ssh.rb', line 137 def command @command end |
#status ⇒ Object
Returns the value of attribute status.
137 138 139 |
# File 'lib/fog/core/ssh.rb', line 137 def status @status end |
#stderr ⇒ Object
Returns the value of attribute stderr.
137 138 139 |
# File 'lib/fog/core/ssh.rb', line 137 def stderr @stderr end |
#stdout ⇒ Object
Returns the value of attribute stdout.
137 138 139 |
# File 'lib/fog/core/ssh.rb', line 137 def stdout @stdout end |
Instance Method Details
#display_stderr ⇒ Object
148 149 150 |
# File 'lib/fog/core/ssh.rb', line 148 def display_stderr Fog::Formatador.display_line(stderr.split("\r\n")) end |
#display_stdout ⇒ Object
139 140 141 142 143 144 145 146 |
# File 'lib/fog/core/ssh.rb', line 139 def display_stdout data = stdout.split("\r\n") if data.is_a?(String) Fog::Formatador.display_line(data) elsif data.is_a?(Array) Fog::Formatador.display_lines(data) end end |