class Aruba::Platforms::WindowsPlatform

WARNING: All methods found here are not considered part of the public API of aruba.

Those methods can be changed at any time in the feature or removed without any further notice.

This includes all methods for the Windows platform

@private

Public Class Methods

match?() click to toggle source
# File lib/aruba/platforms/windows_platform.rb, line 20
def self.match?
  Gem.win_platform?
end

Public Instance Methods

builtin_shell_commands() click to toggle source
# File lib/aruba/platforms/windows_platform.rb, line 39
def builtin_shell_commands
  %w(cd dir echo exit set type)
end
command_string() click to toggle source

@see UnixPlatform#command_string

# File lib/aruba/platforms/windows_platform.rb, line 25
def command_string
  WindowsCommandString
end
environment_variables() click to toggle source

@see UnixPlatform#environment_variables

# File lib/aruba/platforms/windows_platform.rb, line 30
def environment_variables
  WindowsEnvironmentVariables
end
term_signal_supported?() click to toggle source
# File lib/aruba/platforms/windows_platform.rb, line 43
def term_signal_supported?
  false
end
which(program, path = ENV["PATH"]) click to toggle source

@see UnixPlatform#which

# File lib/aruba/platforms/windows_platform.rb, line 35
def which(program, path = ENV["PATH"])
  WindowsWhich.new.call(program, path)
end