summaryrefslogtreecommitdiff
path: root/lib/bundler/constants.rb
blob: 9564771e78afbb655b1226988550bd2ececd4860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

require "rbconfig"

module Bundler
  WINDOWS = RbConfig::CONFIG["host_os"] =~ /(msdos|mswin|djgpp|mingw)/
  deprecate_constant :WINDOWS

  FREEBSD = RbConfig::CONFIG["host_os"].to_s.include?("bsd")
  deprecate_constant :FREEBSD

  NULL = File::NULL
  deprecate_constant :NULL
end