mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8 lines
212 B
Ruby
8 lines
212 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Bundler
|
||
|
WINDOWS = RbConfig::CONFIG["host_os"] =~ /(msdos|mswin|djgpp|mingw)/
|
||
|
FREEBSD = RbConfig::CONFIG["host_os"] =~ /bsd/
|
||
|
NULL = WINDOWS ? "NUL" : "/dev/null"
|
||
|
end
|