class Aruba::Platforms::UnixCommandString
This is a command which should be run
@private
Public Class Methods
Source
# File lib/aruba/platforms/unix_command_string.rb, line 14 def initialize(command, *arguments) @command = command @arguments = arguments end
Public Instance Methods
Source
# File lib/aruba/platforms/unix_command_string.rb, line 20 def to_a [@command, *@arguments] end
Convert to array