summaryrefslogtreecommitdiff
path: root/lib/bundler/constants.rb
blob: 8dd8a5381535c70700957d88c6fe5ec9bdce8d0c (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module Bundler
  WINDOWS = RbConfig::CONFIG["host_os"] =~ /(msdos|mswin|djgpp|mingw)/
  FREEBSD = RbConfig::CONFIG["host_os"].to_s.include?("bsd")
  NULL    = WINDOWS ? "NUL" : "/dev/null"
end