class Aruba::Platforms::WindowsCommandString

This is a command which should be run

@private

Public Class Methods

new(command, *arguments) click to toggle source
# File lib/aruba/platforms/windows_command_string.rb, line 9
def initialize(command, *arguments)
  @command = command
  @arguments = arguments
end

Public Instance Methods

to_a() click to toggle source

Convert to array

# File lib/aruba/platforms/windows_command_string.rb, line 15
def to_a
  [@command, *@arguments]
end