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
Source
# File lib/aruba/platforms/windows_platform.rb, line 20 def self.match? Gem.win_platform? end
Public Instance Methods
Source
# File lib/aruba/platforms/windows_platform.rb, line 39 def builtin_shell_commands %w(cd dir echo exit set type) end
Source
# File lib/aruba/platforms/windows_platform.rb, line 25 def command_string WindowsCommandString end
Source
# File lib/aruba/platforms/windows_platform.rb, line 30 def environment_variables WindowsEnvironmentVariables end
Source
# File lib/aruba/platforms/windows_platform.rb, line 43 def term_signal_supported? false end
Source
# File lib/aruba/platforms/windows_platform.rb, line 35 def which(program, path = ENV["PATH"]) WindowsWhich.new.call(program, path) end
@see UnixPlatform#which