Class: AdbCommand::Result
- Inherits:
-
Object
- Object
- AdbCommand::Result
- Defined in:
- lib/replicant/commands/adb_command.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
Returns the value of attribute code.
-
#output ⇒ Object
Returns the value of attribute output.
-
#pid ⇒ Object
Returns the value of attribute pid.
Instance Method Summary collapse
Instance Attribute Details
#code ⇒ Object
Returns the value of attribute code.
4 5 6 |
# File 'lib/replicant/commands/adb_command.rb', line 4 def code @code end |
#output ⇒ Object
Returns the value of attribute output.
4 5 6 |
# File 'lib/replicant/commands/adb_command.rb', line 4 def output @output end |
#pid ⇒ Object
Returns the value of attribute pid.
4 5 6 |
# File 'lib/replicant/commands/adb_command.rb', line 4 def pid @pid end |
Instance Method Details
#to_s ⇒ Object
6 7 8 |
# File 'lib/replicant/commands/adb_command.rb', line 6 def to_s "result: pid=#{pid} code=#{code} output=#{output}" end |