summaryrefslogtreecommitdiff
path: root/lib/bundler/constants.rb
blob: 704bcac84fb25b0e424d6a66f9e538413e17cf3c (plain)
1
2
3
4
5
module Bundler
  WINDOWS = RbConfig::CONFIG["host_os"] =~ /(msdos|mswin|djgpp|mingw)/
  FREEBSD = RbConfig::CONFIG["host_os"] =~ /bsd/
  NULL    = WINDOWS ? "NUL" : "/dev/null"
end