mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 13:34:17 +02:00
7 lines
205 B
Ruby
7 lines
205 B
Ruby
# 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
|