Sha256: 5cbcb674ebc2f33c936d7a05eaa5058f5ae25bd476c46c8280cd7bdf563e6934
Contents?: true
Size: 407 Bytes
Versions: 25
Compression:
Stored size: 407 Bytes
Contents
module RSpec module Support # @api private # # Provides query methods for different OS or OS features. module OS def windows? RbConfig::CONFIG['host_os'] =~ /cygwin|mswin|mingw|bccwin|wince|emx/ end module_function :windows? def windows_file_path? ::File::ALT_SEPARATOR == '\\' end module_function :windows_file_path? end end end
Version data entries
25 entries across 24 versions & 7 rubygems