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

require "rbconfig"

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