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