diff options
Diffstat (limited to 'lib/bundler/constants.rb')
| -rw-r--r-- | lib/bundler/constants.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/bundler/constants.rb b/lib/bundler/constants.rb new file mode 100644 index 0000000000..9564771e78 --- /dev/null +++ b/lib/bundler/constants.rb @@ -0,0 +1,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 |
