Sha256: 2545c31f978e3bcb6647a7e8b678f96172b89da35071fce57d26881a7701fbb1
Contents?: true
Size: 293 Bytes
Versions: 126
Compression:
Stored size: 293 Bytes
Contents
# Utility methods for handling system os information require 'rbconfig' module Pkg::Util::OS def windows? case RbConfig::CONFIG['host_os'] when /mswin|mingw/i true else false end end module_function :windows? DEVNULL = windows? ? 'NUL' : '/dev/null' end
Version data entries
126 entries across 126 versions & 1 rubygems