2018-11-02 19:07:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gem
|
|
|
|
if version = ENV["BUNDLER_SPEC_RUBYGEMS_VERSION"]
|
|
|
|
remove_const(:VERSION) if const_defined?(:VERSION)
|
|
|
|
VERSION = version
|
|
|
|
end
|
|
|
|
|
|
|
|
class Platform
|
|
|
|
@local = new(ENV["BUNDLER_SPEC_PLATFORM"]) if ENV["BUNDLER_SPEC_PLATFORM"]
|
|
|
|
end
|
|
|
|
@platforms = [Gem::Platform::RUBY, Gem::Platform.local]
|
|
|
|
|
|
|
|
if defined?(@path_to_default_spec_map) && !ENV["BUNDLER_SPEC_KEEP_DEFAULT_BUNDLER_GEM"]
|
|
|
|
@path_to_default_spec_map.delete_if do |_path, spec|
|
|
|
|
spec.name == "bundler"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if ENV["BUNDLER_SPEC_VERSION"]
|
2019-06-01 05:49:40 -04:00
|
|
|
require "bundler/version"
|
|
|
|
|
2018-11-02 19:07:56 -04:00
|
|
|
module Bundler
|
|
|
|
remove_const(:VERSION) if const_defined?(:VERSION)
|
|
|
|
VERSION = ENV["BUNDLER_SPEC_VERSION"].dup
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if ENV["BUNDLER_SPEC_WINDOWS"] == "true"
|
|
|
|
require "bundler/constants"
|
|
|
|
|
|
|
|
module Bundler
|
|
|
|
remove_const :WINDOWS if defined?(WINDOWS)
|
|
|
|
WINDOWS = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Object
|
|
|
|
if ENV["BUNDLER_SPEC_RUBY_ENGINE"]
|
2019-04-12 13:05:26 -04:00
|
|
|
if RUBY_ENGINE != "jruby" && ENV["BUNDLER_SPEC_RUBY_ENGINE"] == "jruby"
|
2018-11-02 19:07:56 -04:00
|
|
|
begin
|
|
|
|
# this has to be done up front because psych will try to load a .jar
|
|
|
|
# if it thinks its on jruby
|
|
|
|
require "psych"
|
|
|
|
rescue LoadError
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-12 13:05:26 -04:00
|
|
|
remove_const :RUBY_ENGINE
|
2018-11-02 19:07:56 -04:00
|
|
|
RUBY_ENGINE = ENV["BUNDLER_SPEC_RUBY_ENGINE"]
|
|
|
|
|
2019-08-04 08:52:15 -04:00
|
|
|
remove_const :RUBY_ENGINE_VERSION
|
|
|
|
RUBY_ENGINE_VERSION = ENV["BUNDLER_SPEC_RUBY_ENGINE_VERSION"]
|
2018-11-02 19:07:56 -04:00
|
|
|
end
|
|
|
|
end
|