6 lines
183 B
Ruby
6 lines
183 B
Ruby
|
module Bundler
|
||
|
WINDOWS = RbConfig::CONFIG["host_os"] =~ %r!(msdos|mswin|djgpp|mingw)!
|
||
|
FREEBSD = RbConfig::CONFIG["host_os"] =~ /bsd/
|
||
|
NULL = WINDOWS ? "NUL" : "/dev/null"
|
||
|
end
|