class Aruba::Platforms::UnixCommandString
This is a command which should be run
@private
Public Class Methods
new(command, *arguments)
click to toggle source
# File lib/aruba/platforms/unix_command_string.rb, line 12 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/unix_command_string.rb, line 18 def to_a [@command, *@arguments] end