class Aruba::Platforms::UnixCommandString

This is a command which should be run

Public Class Methods

new(cmd) click to toggle source
# File lib/aruba/platforms/unix_command_string.rb, line 10
def initialize(cmd)
  __setobj__ cmd
end

Public Instance Methods

inspect() click to toggle source
Alias for: to_s
to_a() click to toggle source

Convert to array

# File lib/aruba/platforms/unix_command_string.rb, line 15
def to_a
  Shellwords.split __getobj__
end
to_s() click to toggle source
# File lib/aruba/platforms/unix_command_string.rb, line 20
def to_s
  __getobj__.to_s
end
Also aliased as: inspect