class Aruba::Platforms::WindowsPlatform

@private
This includes all methods for the Windows platform
any further notice.
Those methods can be changed at any time in the feature or removed without
All methods found here are not considered part of the public API of aruba.
WARNING:

def self.match?

def self.match?
  Gem.win_platform?
end

def builtin_shell_commands

def builtin_shell_commands
  %w(cd dir echo exit set type)
end

def command_string

Other tags:
    See: UnixPlatform#command_string -
def command_string
  WindowsCommandString
end

def environment_variables

Other tags:
    See: UnixPlatform#environment_variables -
def environment_variables
  WindowsEnvironmentVariables
end

def term_signal_supported?

def term_signal_supported?
  false
end

def which(program, path = ENV["PATH"])

Other tags:
    See: UnixPlatform#which -
def which(program, path = ENV["PATH"])
  WindowsWhich.new.call(program, path)
end