summaryrefslogtreecommitdiff
path: root/lib/bundler/constants.rb
blob: de9698b577e41b89bb30c21a304efdad0daeef1e (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    = File::NULL
end