mirror of
https://github.com/ruby/ruby.git
synced 2025-09-21 03:24:00 +02:00
Merge pull request #5482 from hsbt/rubygems-3-3-bundler-2-3
Merge RubyGems 3.3.x and Bundler 2.3.x
This commit is contained in:
parent
69463805f0
commit
6794f8cf92
115 changed files with 1701 additions and 889 deletions
|
@ -1407,8 +1407,12 @@ yes-test-bundler-precheck: main
|
|||
no-test-bundler-prepare: no-test-bundler-precheck
|
||||
yes-test-bundler-prepare: yes-test-bundler-precheck
|
||||
$(ACTIONS_GROUP)
|
||||
$(XRUBY) -C "$(srcdir)" bin/gem install --no-document \
|
||||
--install-dir .bundle --conservative "rspec:~> 3.8" "rake:~> 13.0" "parallel_tests:~> 2.29"
|
||||
$(XRUBY) -C $(srcdir) -Ilib \
|
||||
-e 'ENV["GEM_HOME"] = File.expand_path(".bundle")' \
|
||||
-e 'ENV["BUNDLE_APP_CONFIG"] = File.expand_path(".bundle")' \
|
||||
-e 'ENV["BUNDLE_PATH__SYSTEM"] = "true"' \
|
||||
-e 'ENV["BUNDLE_WITHOUT"] = "lint doc"' \
|
||||
-e 'load "spec/bundler/support/bundle.rb"' -- install --gemfile=tool/bundler/dev_gems.rb
|
||||
$(ACTIONS_ENDGROUP)
|
||||
|
||||
RSPECOPTS =
|
||||
|
|
|
@ -11,6 +11,6 @@ net-pop 0.1.1 https://github.com/ruby/net-pop
|
|||
net-smtp 0.3.1 https://github.com/ruby/net-smtp
|
||||
matrix 0.4.2 https://github.com/ruby/matrix
|
||||
prime 0.1.2 https://github.com/ruby/prime
|
||||
rbs 2.0.0 https://github.com/ruby/rbs
|
||||
rbs 2.1.0 https://github.com/ruby/rbs
|
||||
typeprof 0.21.1 https://github.com/ruby/typeprof
|
||||
debug 1.4.0 https://github.com/ruby/debug
|
||||
|
|
|
@ -809,17 +809,10 @@ module Bundler
|
|||
|
||||
current = Gem::Version.new(VERSION)
|
||||
return if current >= latest
|
||||
latest_installed = Bundler.rubygems.find_name("bundler").map(&:version).max
|
||||
|
||||
installation = "To install the latest version, run `gem install bundler#{" --pre" if latest.prerelease?}`"
|
||||
if latest_installed && latest_installed > current
|
||||
suggestion = "To update to the most recent installed version (#{latest_installed}), run `bundle update --bundler`"
|
||||
suggestion = "#{installation}\n#{suggestion}" if latest_installed < latest
|
||||
else
|
||||
suggestion = installation
|
||||
end
|
||||
|
||||
Bundler.ui.warn "The latest bundler is #{latest}, but you are currently running #{current}.\n#{suggestion}"
|
||||
Bundler.ui.warn \
|
||||
"The latest bundler is #{latest}, but you are currently running #{current}.\n" \
|
||||
"To update to the most recent version, run `bundle update --bundler`"
|
||||
rescue RuntimeError
|
||||
nil
|
||||
end
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
require "rbconfig"
|
||||
require "shellwords"
|
||||
require "fiddle"
|
||||
|
||||
module Bundler
|
||||
class CLI::Doctor
|
||||
|
@ -71,7 +72,14 @@ module Bundler
|
|||
|
||||
definition.specs.each do |spec|
|
||||
bundles_for_gem(spec).each do |bundle|
|
||||
bad_paths = dylibs(bundle).select {|f| !File.exist?(f) }
|
||||
bad_paths = dylibs(bundle).select do |f|
|
||||
begin
|
||||
Fiddle.dlopen(f)
|
||||
false
|
||||
rescue Fiddle::DLError
|
||||
true
|
||||
end
|
||||
end
|
||||
if bad_paths.any?
|
||||
broken_links[spec] ||= []
|
||||
broken_links[spec].concat(bad_paths)
|
||||
|
|
|
@ -38,6 +38,7 @@ module Bundler
|
|||
namespaced_path = name.tr("-", "/")
|
||||
constant_name = name.gsub(/-[_-]*(?![_-]|$)/) { "::" }.gsub(/([_-]+|(::)|^)(.|$)/) { $2.to_s + $3.upcase }
|
||||
constant_array = constant_name.split("::")
|
||||
minitest_constant_name = constant_array.clone.tap {|a| a[-1] = "Test#{a[-1]}" }.join("::") # Foo::Bar => Foo::TestBar
|
||||
|
||||
use_git = Bundler.git_present? && options[:git]
|
||||
|
||||
|
@ -69,6 +70,7 @@ module Bundler
|
|||
:git => use_git,
|
||||
:github_username => github_username.empty? ? "[USERNAME]" : github_username,
|
||||
:required_ruby_version => required_ruby_version,
|
||||
:minitest_constant_name => minitest_constant_name,
|
||||
}
|
||||
ensure_safe_gem_name(name, constant_array)
|
||||
|
||||
|
@ -104,9 +106,17 @@ module Bundler
|
|||
)
|
||||
config[:test_task] = :spec
|
||||
when "minitest"
|
||||
# Generate path for minitest target file (FileList["test/**/test_*.rb"])
|
||||
# foo => test/test_foo.rb
|
||||
# foo-bar => test/foo/test_bar.rb
|
||||
# foo_bar => test/test_foo_bar.rb
|
||||
paths = namespaced_path.rpartition("/")
|
||||
paths[2] = "test_#{paths[2]}"
|
||||
minitest_namespaced_path = paths.join("")
|
||||
|
||||
templates.merge!(
|
||||
"test/minitest/test_helper.rb.tt" => "test/test_helper.rb",
|
||||
"test/minitest/test_newgem.rb.tt" => "test/test_#{namespaced_path}.rb"
|
||||
"test/minitest/test_newgem.rb.tt" => "test/#{minitest_namespaced_path}.rb"
|
||||
)
|
||||
config[:test_task] = :test
|
||||
when "test-unit"
|
||||
|
|
|
@ -23,7 +23,7 @@ module Bundler
|
|||
output << "No ruby version specified"
|
||||
end
|
||||
else
|
||||
output << "Your platform is: #{RUBY_PLATFORM}"
|
||||
output << "Your platform is: #{Gem::Platform.local}"
|
||||
output << "Your app has gems that work on these platforms:\n#{platforms.join("\n")}"
|
||||
|
||||
if ruby_version
|
||||
|
|
|
@ -11,12 +11,16 @@ module Bundler
|
|||
def run
|
||||
Bundler.ui.level = "warn" if options[:quiet]
|
||||
|
||||
update_bundler = options[:bundler]
|
||||
|
||||
Bundler.self_manager.update_bundler_and_restart_with_it_if_needed(update_bundler) if update_bundler
|
||||
|
||||
Plugin.gemfile_install(Bundler.default_gemfile) if Bundler.feature_flag.plugins?
|
||||
|
||||
sources = Array(options[:source])
|
||||
groups = Array(options[:group]).map(&:to_sym)
|
||||
|
||||
full_update = gems.empty? && sources.empty? && groups.empty? && !options[:ruby] && !options[:bundler]
|
||||
full_update = gems.empty? && sources.empty? && groups.empty? && !options[:ruby] && !update_bundler
|
||||
|
||||
if full_update && !options[:all]
|
||||
if Bundler.feature_flag.update_requires_all_flag?
|
||||
|
@ -49,7 +53,7 @@ module Bundler
|
|||
|
||||
Bundler.definition(:gems => gems, :sources => sources, :ruby => options[:ruby],
|
||||
:conservative => conservative,
|
||||
:bundler => options[:bundler])
|
||||
:bundler => update_bundler)
|
||||
end
|
||||
|
||||
Bundler::CLI::Common.configure_gem_version_promoter(Bundler.definition, options)
|
||||
|
|
|
@ -73,12 +73,6 @@ module Bundler
|
|||
end.flatten(1)
|
||||
end
|
||||
|
||||
def spec(name, version, platform = nil)
|
||||
Bundler::CompactIndexClient.debug { "spec(name = #{name}, version = #{version}, platform = #{platform})" }
|
||||
update_info(name)
|
||||
@cache.specific_dependency(name, version, platform)
|
||||
end
|
||||
|
||||
def update_and_parse_checksums!
|
||||
Bundler::CompactIndexClient.debug { "update_and_parse_checksums!" }
|
||||
return @info_checksums_by_name if @parsed_checksums
|
||||
|
|
|
@ -76,15 +76,6 @@ module Bundler
|
|||
end
|
||||
end
|
||||
|
||||
def specific_dependency(name, version, platform)
|
||||
pattern = [version, platform].compact.join("-")
|
||||
return nil if pattern.empty?
|
||||
|
||||
gem_lines = info_path(name).read
|
||||
gem_line = gem_lines[/^#{Regexp.escape(pattern)}\b.*/, 0]
|
||||
gem_line ? parse_gem(gem_line) : nil
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def lines(path)
|
||||
|
|
|
@ -265,7 +265,7 @@ module Bundler
|
|||
else
|
||||
# Run a resolve against the locally available gems
|
||||
Bundler.ui.debug("Found changes from the lockfile, re-resolving dependencies because #{change_reason}")
|
||||
expanded_dependencies = expand_dependencies(dependencies + metadata_dependencies, @remote)
|
||||
expanded_dependencies = expand_dependencies(dependencies + metadata_dependencies, true)
|
||||
Resolver.resolve(expanded_dependencies, source_requirements, last_resolve, gem_version_promoter, additional_base_requirements_for_resolve, platforms)
|
||||
end
|
||||
end
|
||||
|
@ -309,14 +309,6 @@ module Bundler
|
|||
end
|
||||
end
|
||||
|
||||
def locked_bundler_version
|
||||
if @locked_bundler_version && @locked_bundler_version < Gem::Version.new(Bundler::VERSION)
|
||||
new_version = Bundler::VERSION
|
||||
end
|
||||
|
||||
new_version || @locked_bundler_version || Bundler::VERSION
|
||||
end
|
||||
|
||||
def locked_ruby_version
|
||||
return unless ruby_version
|
||||
if @unlock[:ruby] || !@locked_ruby_version
|
||||
|
@ -503,6 +495,7 @@ module Bundler
|
|||
|
||||
def current_ruby_platform_locked?
|
||||
return false unless generic_local_platform == Gem::Platform::RUBY
|
||||
return false if Bundler.settings[:force_ruby_platform] && !@platforms.include?(Gem::Platform::RUBY)
|
||||
|
||||
current_platform_locked?
|
||||
end
|
||||
|
|
|
@ -5,14 +5,15 @@ module Bundler
|
|||
class EndpointSpecification < Gem::Specification
|
||||
include MatchPlatform
|
||||
|
||||
attr_reader :name, :version, :platform, :required_rubygems_version, :required_ruby_version, :checksum
|
||||
attr_reader :name, :version, :platform, :checksum
|
||||
attr_accessor :source, :remote, :dependencies
|
||||
|
||||
def initialize(name, version, platform, dependencies, metadata = nil)
|
||||
def initialize(name, version, platform, spec_fetcher, dependencies, metadata = nil)
|
||||
super()
|
||||
@name = name
|
||||
@version = Gem::Version.create version
|
||||
@platform = platform
|
||||
@spec_fetcher = spec_fetcher
|
||||
@dependencies = dependencies.map {|dep, reqs| build_dependency(dep, reqs) }
|
||||
|
||||
@loaded_from = nil
|
||||
|
@ -21,6 +22,14 @@ module Bundler
|
|||
parse_metadata(metadata)
|
||||
end
|
||||
|
||||
def required_ruby_version
|
||||
@required_ruby_version ||= _remote_specification.required_ruby_version
|
||||
end
|
||||
|
||||
def required_rubygems_version
|
||||
@required_rubygems_version ||= _remote_specification.required_rubygems_version
|
||||
end
|
||||
|
||||
def fetch_platform
|
||||
@platform
|
||||
end
|
||||
|
@ -105,12 +114,21 @@ module Bundler
|
|||
|
||||
private
|
||||
|
||||
def _remote_specification
|
||||
@_remote_specification ||= @spec_fetcher.fetch_spec([@name, @version, @platform])
|
||||
end
|
||||
|
||||
def local_specification_path
|
||||
"#{base_dir}/specifications/#{full_name}.gemspec"
|
||||
end
|
||||
|
||||
def parse_metadata(data)
|
||||
return unless data
|
||||
unless data
|
||||
@required_ruby_version = nil
|
||||
@required_rubygems_version = nil
|
||||
return
|
||||
end
|
||||
|
||||
data.each do |k, v|
|
||||
next unless v
|
||||
case k.to_s
|
||||
|
|
|
@ -71,7 +71,7 @@ module Bundler
|
|||
def self.ruby_version
|
||||
str = String.new(RUBY_VERSION)
|
||||
str << "p#{RUBY_PATCHLEVEL}" if defined? RUBY_PATCHLEVEL
|
||||
str << " (#{RUBY_RELEASE_DATE} revision #{RUBY_REVISION}) [#{RUBY_PLATFORM}]"
|
||||
str << " (#{RUBY_RELEASE_DATE} revision #{RUBY_REVISION}) [#{Gem::Platform.local}]"
|
||||
end
|
||||
|
||||
def self.git_version
|
||||
|
|
|
@ -129,17 +129,15 @@ module Bundler
|
|||
specs = fetchers.last.specs(gem_names)
|
||||
else
|
||||
specs = []
|
||||
fetchers.shift until fetchers.first.available? || fetchers.empty?
|
||||
fetchers.dup.each do |f|
|
||||
break unless f.api_fetcher? && !gem_names || !specs = f.specs(gem_names)
|
||||
fetchers.delete(f)
|
||||
@fetchers = fetchers.drop_while do |f|
|
||||
!f.available? || (f.api_fetcher? && !gem_names) || !specs = f.specs(gem_names)
|
||||
end
|
||||
@use_api = false if fetchers.none?(&:api_fetcher?)
|
||||
end
|
||||
|
||||
specs.each do |name, version, platform, dependencies, metadata|
|
||||
spec = if dependencies
|
||||
EndpointSpecification.new(name, version, platform, dependencies, metadata)
|
||||
EndpointSpecification.new(name, version, platform, self, dependencies, metadata)
|
||||
else
|
||||
RemoteSpecification.new(name, version, platform, self)
|
||||
end
|
||||
|
@ -272,8 +270,7 @@ module Bundler
|
|||
# cached gem specification path, if one exists
|
||||
def gemspec_cached_path(spec_file_name)
|
||||
paths = Bundler.rubygems.spec_cache_dirs.map {|dir| File.join(dir, spec_file_name) }
|
||||
paths = paths.select {|path| File.file? path }
|
||||
paths.first
|
||||
paths.find {|path| File.file? path }
|
||||
end
|
||||
|
||||
HTTP_ERRORS = [
|
||||
|
@ -301,8 +298,6 @@ module Bundler
|
|||
store
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def remote_uri
|
||||
@remote.uri
|
||||
end
|
||||
|
|
|
@ -57,16 +57,6 @@ module Bundler
|
|||
gem_info
|
||||
end
|
||||
|
||||
def fetch_spec(spec)
|
||||
spec -= [nil, "ruby", ""]
|
||||
contents = compact_index_client.spec(*spec)
|
||||
return nil if contents.nil?
|
||||
contents.unshift(spec.first)
|
||||
contents[3].map! {|d| Gem::Dependency.new(*d) }
|
||||
EndpointSpecification.new(*contents)
|
||||
end
|
||||
compact_index_request :fetch_spec
|
||||
|
||||
def available?
|
||||
unless SharedHelpers.md5_available?
|
||||
Bundler.ui.debug("FIPS mode is enabled, bundler can't use the CompactIndex API")
|
||||
|
|
|
@ -21,32 +21,6 @@ module Bundler
|
|||
raise HTTPError, "Could not fetch specs from #{display_uri} due to underlying error <#{e.message}>"
|
||||
end
|
||||
end
|
||||
|
||||
def fetch_spec(spec)
|
||||
spec -= [nil, "ruby", ""]
|
||||
spec_file_name = "#{spec.join "-"}.gemspec"
|
||||
|
||||
uri = Bundler::URI.parse("#{remote_uri}#{Gem::MARSHAL_SPEC_DIR}#{spec_file_name}.rz")
|
||||
if uri.scheme == "file"
|
||||
path = Bundler.rubygems.correct_for_windows_path(uri.path)
|
||||
Bundler.load_marshal Bundler.rubygems.inflate(Gem.read_binary(path))
|
||||
elsif cached_spec_path = gemspec_cached_path(spec_file_name)
|
||||
Bundler.load_gemspec(cached_spec_path)
|
||||
else
|
||||
Bundler.load_marshal Bundler.rubygems.inflate(downloader.fetch(uri).body)
|
||||
end
|
||||
rescue MarshalError
|
||||
raise HTTPError, "Gemspec #{spec} contained invalid data.\n" \
|
||||
"Your network or your gem server is probably having issues right now."
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
# cached gem specification path, if one exists
|
||||
def gemspec_cached_path(spec_file_name)
|
||||
paths = Bundler.rubygems.spec_cache_dirs.map {|dir| File.join(dir, spec_file_name) }
|
||||
paths.find {|path| File.file? path }
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -107,9 +107,9 @@ module Bundler
|
|||
SharedHelpers.filesystem_access(File.join(base, "checksums")) {|p| FileUtils.mkdir_p(p) }
|
||||
file_name = "#{File.basename(built_gem_path)}.sha512"
|
||||
require "digest/sha2"
|
||||
checksum = ::Digest::SHA512.new.hexdigest(built_gem_path.to_s)
|
||||
checksum = ::Digest::SHA512.file(built_gem_path).hexdigest
|
||||
target = File.join(base, "checksums", file_name)
|
||||
File.write(target, checksum)
|
||||
File.write(target, checksum + "\n")
|
||||
Bundler.ui.confirm "#{name} #{version} checksum written to checksums/#{file_name}."
|
||||
end
|
||||
|
||||
|
|
|
@ -90,11 +90,11 @@ module Bundler
|
|||
MatchPlatform.platforms_match?(spec.platform, platform_object)
|
||||
end
|
||||
installable_candidates = same_platform_candidates.select do |spec|
|
||||
!spec.is_a?(EndpointSpecification) ||
|
||||
spec.is_a?(StubSpecification) ||
|
||||
(spec.required_ruby_version.satisfied_by?(Gem.ruby_version) &&
|
||||
spec.required_rubygems_version.satisfied_by?(Gem.rubygems_version))
|
||||
end
|
||||
search = installable_candidates.last || same_platform_candidates.last
|
||||
search = installable_candidates.last
|
||||
search.dependencies = dependencies if search && (search.is_a?(RemoteSpecification) || search.is_a?(EndpointSpecification))
|
||||
search
|
||||
end
|
||||
|
|
|
@ -71,7 +71,7 @@ module Bundler
|
|||
end
|
||||
|
||||
def add_bundled_with
|
||||
add_section("BUNDLED WITH", definition.locked_bundler_version.to_s)
|
||||
add_section("BUNDLED WITH", Bundler::VERSION)
|
||||
end
|
||||
|
||||
def add_section(name, value)
|
||||
|
|
|
@ -27,6 +27,13 @@ module Bundler
|
|||
@platform = _remote_specification.platform
|
||||
end
|
||||
|
||||
# A fallback is included because the original version of the specification
|
||||
# API didn't include that field, so some marshalled specs in the index have it
|
||||
# set to +nil+.
|
||||
def required_rubygems_version
|
||||
@required_rubygems_version ||= _remote_specification.required_rubygems_version || Gem::Requirement.default
|
||||
end
|
||||
|
||||
def full_name
|
||||
if platform == Gem::Platform::RUBY || platform.nil?
|
||||
"#{@name}-#{@version}"
|
||||
|
|
|
@ -249,10 +249,11 @@ module Bundler
|
|||
end
|
||||
|
||||
def verify_gemfile_dependencies_are_found!(requirements)
|
||||
requirements.each do |requirement|
|
||||
requirements.map! do |requirement|
|
||||
name = requirement.name
|
||||
next if name == "bundler"
|
||||
next unless search_for(requirement).empty?
|
||||
next requirement if name == "bundler"
|
||||
next requirement unless search_for(requirement).empty?
|
||||
next unless requirement.current_platform?
|
||||
|
||||
if (base = @base[name]) && !base.empty?
|
||||
version = base.first.version
|
||||
|
@ -266,7 +267,7 @@ module Bundler
|
|||
message = gem_not_found_message(name, requirement, source_for(name))
|
||||
end
|
||||
raise GemNotFound, message
|
||||
end
|
||||
end.compact!
|
||||
end
|
||||
|
||||
def gem_not_found_message(name, requirement, source, extra_message = "")
|
||||
|
@ -358,25 +359,19 @@ module Bundler
|
|||
o << "\n"
|
||||
o << %(Running `bundle update` will rebuild your snapshot from scratch, using only\n)
|
||||
o << %(the gems in your Gemfile, which may resolve the conflict.\n)
|
||||
elsif !conflict.existing
|
||||
elsif !conflict.existing && !name.end_with?("\0")
|
||||
o << "\n"
|
||||
|
||||
relevant_source = conflict.requirement.source || source_for(name)
|
||||
|
||||
metadata_requirement = name.end_with?("\0")
|
||||
|
||||
extra_message = if conflict.requirement_trees.first.size > 1
|
||||
", which is required by gem '#{SharedHelpers.pretty_dependency(conflict.requirement_trees.first[-2])}',"
|
||||
else
|
||||
""
|
||||
end
|
||||
|
||||
if metadata_requirement
|
||||
o << "#{SharedHelpers.pretty_dependency(conflict.requirement)}#{extra_message} is not available in #{relevant_source}"
|
||||
else
|
||||
o << gem_not_found_message(name, conflict.requirement, relevant_source, extra_message)
|
||||
end
|
||||
end
|
||||
end,
|
||||
:version_for_spec => lambda {|spec| spec.version },
|
||||
:incompatible_version_message_for_conflict => lambda do |name, _conflict|
|
||||
|
|
|
@ -95,7 +95,7 @@ module Bundler
|
|||
|
||||
def metadata_dependencies(platform)
|
||||
spec = @specs[platform].first
|
||||
return [] unless spec.is_a?(Gem::Specification)
|
||||
return [] if spec.is_a?(LazySpecification)
|
||||
dependencies = []
|
||||
if !spec.required_ruby_version.nil? && !spec.required_ruby_version.none?
|
||||
dependencies << DepProxy.get_proxy(Gem::Dependency.new("Ruby\0", spec.required_ruby_version), platform)
|
||||
|
|
|
@ -103,7 +103,7 @@ module Bundler
|
|||
|
||||
def self.system
|
||||
ruby_engine = RUBY_ENGINE.dup
|
||||
ruby_version = ENV.fetch("BUNDLER_SPEC_RUBY_VERSION") { RUBY_VERSION }.dup
|
||||
ruby_version = RUBY_VERSION.dup
|
||||
ruby_engine_version = RUBY_ENGINE_VERSION.dup
|
||||
patchlevel = RUBY_PATCHLEVEL.to_s
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ module Bundler
|
|||
def restart_with_locked_bundler_if_needed
|
||||
return unless needs_switching? && installed?
|
||||
|
||||
restart_with_locked_bundler
|
||||
restart_with(lockfile_version)
|
||||
end
|
||||
|
||||
def install_locked_bundler_and_restart_with_it_if_needed
|
||||
|
@ -19,23 +19,48 @@ module Bundler
|
|||
"Bundler #{current_version} is running, but your lockfile was generated with #{lockfile_version}. " \
|
||||
"Installing Bundler #{lockfile_version} and restarting using that version."
|
||||
|
||||
install_and_restart_with_locked_bundler
|
||||
install_and_restart_with(lockfile_version)
|
||||
end
|
||||
|
||||
def update_bundler_and_restart_with_it_if_needed(target)
|
||||
return unless autoswitching_applies?
|
||||
|
||||
spec = resolve_update_version_from(target)
|
||||
return unless spec
|
||||
|
||||
version = spec.version
|
||||
|
||||
Bundler.ui.info "Updating bundler to #{version}."
|
||||
|
||||
install(spec)
|
||||
|
||||
restart_with(version)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def install_and_restart_with_locked_bundler
|
||||
bundler_dep = Gem::Dependency.new("bundler", lockfile_version)
|
||||
def install_and_restart_with(version)
|
||||
requirement = Gem::Requirement.new(version)
|
||||
spec = find_latest_matching_spec(requirement)
|
||||
|
||||
Gem.install(bundler_dep)
|
||||
if spec.nil?
|
||||
Bundler.ui.warn "Your lockfile is locked to a version of bundler (#{lockfile_version}) that doesn't exist at https://rubygems.org/. Going on using #{current_version}"
|
||||
return
|
||||
end
|
||||
|
||||
install(spec)
|
||||
rescue StandardError => e
|
||||
Bundler.ui.trace e
|
||||
Bundler.ui.warn "There was an error installing the locked bundler version (#{lockfile_version}), rerun with the `--verbose` flag for more details. Going on using bundler #{current_version}."
|
||||
else
|
||||
restart_with_locked_bundler
|
||||
restart_with(version)
|
||||
end
|
||||
|
||||
def restart_with_locked_bundler
|
||||
def install(spec)
|
||||
spec.source.install(spec)
|
||||
end
|
||||
|
||||
def restart_with(version)
|
||||
configured_gem_home = ENV["GEM_HOME"]
|
||||
configured_gem_path = ENV["GEM_PATH"]
|
||||
|
||||
|
@ -44,33 +69,100 @@ module Bundler
|
|||
|
||||
Bundler.with_original_env do
|
||||
Kernel.exec(
|
||||
{ "GEM_HOME" => configured_gem_home, "GEM_PATH" => configured_gem_path, "BUNDLER_VERSION" => lockfile_version },
|
||||
{ "GEM_HOME" => configured_gem_home, "GEM_PATH" => configured_gem_path, "BUNDLER_VERSION" => version.to_s },
|
||||
*cmd
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
def needs_switching?
|
||||
autoswitching_applies? &&
|
||||
released?(lockfile_version) &&
|
||||
!running?(lockfile_version) &&
|
||||
!updating?
|
||||
end
|
||||
|
||||
def autoswitching_applies?
|
||||
ENV["BUNDLER_VERSION"].nil? &&
|
||||
Bundler.rubygems.supports_bundler_trampolining? &&
|
||||
SharedHelpers.in_bundle? &&
|
||||
lockfile_version &&
|
||||
!lockfile_version.end_with?(".dev") &&
|
||||
lockfile_version != current_version
|
||||
lockfile_version
|
||||
end
|
||||
|
||||
def resolve_update_version_from(target)
|
||||
requirement = Gem::Requirement.new(target)
|
||||
update_candidate = find_latest_matching_spec(requirement)
|
||||
|
||||
if update_candidate.nil?
|
||||
raise InvalidOption, "The `bundle update --bundler` target version (#{target}) does not exist"
|
||||
end
|
||||
|
||||
resolved_version = update_candidate.version
|
||||
needs_update = requirement.specific? ? !running?(resolved_version) : running_older_than?(resolved_version)
|
||||
|
||||
return unless needs_update
|
||||
|
||||
update_candidate
|
||||
end
|
||||
|
||||
def local_specs
|
||||
@local_specs ||= Bundler::Source::Rubygems.new("allow_local" => true).specs.select {|spec| spec.name == "bundler" }
|
||||
end
|
||||
|
||||
def remote_specs
|
||||
@remote_specs ||= begin
|
||||
source = Bundler::Source::Rubygems.new("remotes" => "https://rubygems.org")
|
||||
source.remote!
|
||||
source.add_dependency_names("bundler")
|
||||
source.specs
|
||||
end
|
||||
end
|
||||
|
||||
def find_latest_matching_spec(requirement)
|
||||
local_result = find_latest_matching_spec_from_collection(local_specs, requirement)
|
||||
return local_result if local_result && requirement.specific?
|
||||
|
||||
remote_result = find_latest_matching_spec_from_collection(remote_specs, requirement)
|
||||
return remote_result if local_result.nil?
|
||||
|
||||
[local_result, remote_result].max
|
||||
end
|
||||
|
||||
def find_latest_matching_spec_from_collection(specs, requirement)
|
||||
specs.sort.reverse_each.find {|spec| requirement.satisfied_by?(spec.version) }
|
||||
end
|
||||
|
||||
def running?(version)
|
||||
version == current_version
|
||||
end
|
||||
|
||||
def running_older_than?(version)
|
||||
current_version < version
|
||||
end
|
||||
|
||||
def released?(version)
|
||||
!version.to_s.end_with?(".dev")
|
||||
end
|
||||
|
||||
def updating?
|
||||
"update".start_with?(ARGV.first || " ") && ARGV[1..-1].any? {|a| a.start_with?("--bundler") }
|
||||
end
|
||||
|
||||
def installed?
|
||||
Bundler.configure
|
||||
|
||||
Bundler.rubygems.find_bundler(lockfile_version)
|
||||
Bundler.rubygems.find_bundler(lockfile_version.to_s)
|
||||
end
|
||||
|
||||
def current_version
|
||||
@current_version ||= Bundler::VERSION
|
||||
@current_version ||= Gem::Version.new(Bundler::VERSION)
|
||||
end
|
||||
|
||||
def lockfile_version
|
||||
@lockfile_version ||= Bundler::LockfileParser.bundled_with
|
||||
return @lockfile_version if defined?(@lockfile_version)
|
||||
|
||||
parsed_version = Bundler::LockfileParser.bundled_with
|
||||
@lockfile_version = parsed_version ? Gem::Version.new(parsed_version) : nil
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
|
|||
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
||||
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
||||
`git ls-files -z`.split("\x0").reject do |f|
|
||||
(f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
||||
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
||||
end
|
||||
end
|
||||
spec.bindir = "exe"
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
# For available configuration options, see:
|
||||
# https://github.com/testdouble/standard
|
||||
ruby_version: <%= ::Gem::Version.new(config[:required_ruby_version]).segments[0..1].join(".") %>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
require "test_helper"
|
||||
|
||||
class Test<%= config[:constant_name] %> < Minitest::Test
|
||||
class <%= config[:minitest_constant_name] %> < Minitest::Test
|
||||
def test_that_it_has_a_version_number
|
||||
refute_nil ::<%= config[:constant_name] %>::VERSION
|
||||
end
|
||||
|
|
|
@ -107,10 +107,7 @@ class Bundler::Thor
|
|||
#
|
||||
def replace!(regexp, string, force)
|
||||
content = File.read(destination)
|
||||
before, after = content.split(regexp, 2)
|
||||
snippet = (behavior == :after ? after : before).to_s
|
||||
|
||||
if force || !snippet.include?(replacement)
|
||||
if force || !content.include?(replacement)
|
||||
success = content.gsub!(regexp, string)
|
||||
|
||||
File.open(destination, "wb") { |file| file.write(content) } unless pretend?
|
||||
|
|
2
lib/bundler/vendor/thor/lib/thor/version.rb
vendored
2
lib/bundler/vendor/thor/lib/thor/version.rb
vendored
|
@ -1,3 +1,3 @@
|
|||
class Bundler::Thor
|
||||
VERSION = "1.1.0"
|
||||
VERSION = "1.2.1"
|
||||
end
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# frozen_string_literal: false
|
||||
|
||||
module Bundler
|
||||
VERSION = "2.3.3".freeze
|
||||
VERSION = "2.3.6".freeze
|
||||
|
||||
def self.bundler_major_version
|
||||
@bundler_major_version ||= VERSION.split(".").first.to_i
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
require 'rbconfig'
|
||||
|
||||
module Gem
|
||||
VERSION = "3.3.3".freeze
|
||||
VERSION = "3.3.6".freeze
|
||||
end
|
||||
|
||||
# Must be first since it unloads the prelude from 1.9.2
|
||||
|
@ -606,17 +606,10 @@ An Array (#{env.inspect}) was passed in from #{caller[3]}
|
|||
def self.load_yaml
|
||||
return if @yaml_loaded
|
||||
|
||||
begin
|
||||
# Try requiring the gem version *or* stdlib version of psych.
|
||||
require 'psych'
|
||||
rescue ::LoadError
|
||||
# If we can't load psych, that's fine, go on.
|
||||
else
|
||||
require_relative 'rubygems/psych_additions'
|
||||
require_relative 'rubygems/psych_tree'
|
||||
end
|
||||
|
||||
require 'yaml'
|
||||
require_relative 'rubygems/safe_yaml'
|
||||
|
||||
@yaml_loaded = true
|
||||
|
@ -766,11 +759,11 @@ An Array (#{env.inspect}) was passed in from #{caller[3]}
|
|||
# Safely read a file in binary mode on all platforms.
|
||||
|
||||
def self.read_binary(path)
|
||||
open_with_flock(path, 'rb+') do |io|
|
||||
open_file(path, 'rb+') do |io|
|
||||
io.read
|
||||
end
|
||||
rescue Errno::EACCES, Errno::EROFS
|
||||
open_with_flock(path, 'rb') do |io|
|
||||
open_file(path, 'rb') do |io|
|
||||
io.read
|
||||
end
|
||||
end
|
||||
|
@ -778,17 +771,17 @@ An Array (#{env.inspect}) was passed in from #{caller[3]}
|
|||
##
|
||||
# Safely write a file in binary mode on all platforms.
|
||||
def self.write_binary(path, data)
|
||||
open_with_flock(path, 'wb') do |io|
|
||||
open_file(path, 'wb') do |io|
|
||||
io.write data
|
||||
end
|
||||
end
|
||||
|
||||
##
|
||||
# Open a file with given flags, and protect access with flock
|
||||
# Open a file with given flags, and on Windows protect access with flock
|
||||
|
||||
def self.open_with_flock(path, flags, &block)
|
||||
def self.open_file(path, flags, &block)
|
||||
File.open(path, flags) do |io|
|
||||
if !java_platform? && !solaris_platform?
|
||||
if !java_platform? && win_platform?
|
||||
begin
|
||||
io.flock(File::LOCK_EX)
|
||||
rescue Errno::ENOSYS, Errno::ENOTSUP
|
||||
|
@ -1316,6 +1309,7 @@ An Array (#{env.inspect}) was passed in from #{caller[3]}
|
|||
autoload :Source, File.expand_path('rubygems/source', __dir__)
|
||||
autoload :SourceList, File.expand_path('rubygems/source_list', __dir__)
|
||||
autoload :SpecFetcher, File.expand_path('rubygems/spec_fetcher', __dir__)
|
||||
autoload :SpecificationPolicy, File.expand_path('rubygems/specification_policy', __dir__)
|
||||
autoload :Util, File.expand_path('rubygems/util', __dir__)
|
||||
autoload :Version, File.expand_path('rubygems/version', __dir__)
|
||||
end
|
||||
|
|
|
@ -53,41 +53,41 @@ use with other commands.
|
|||
"#{program_name} REGEXP"
|
||||
end
|
||||
|
||||
def fetch_remote_specs(dependency) # :nodoc:
|
||||
def fetch_remote_specs(name, requirement, prerelease) # :nodoc:
|
||||
fetcher = Gem::SpecFetcher.fetcher
|
||||
|
||||
ss, = fetcher.spec_for_dependency dependency
|
||||
specs_type = prerelease ? :complete : :released
|
||||
|
||||
ss.map {|spec, _| spec }
|
||||
ss = if name.nil?
|
||||
fetcher.detect(specs_type) { true }
|
||||
else
|
||||
fetcher.detect(specs_type) do |name_tuple|
|
||||
name === name_tuple.name && requirement.satisfied_by?(name_tuple.version)
|
||||
end
|
||||
end
|
||||
|
||||
def fetch_specs(name_pattern, dependency) # :nodoc:
|
||||
ss.map {|tuple, source| source.fetch_spec(tuple) }
|
||||
end
|
||||
|
||||
def fetch_specs(name_pattern, requirement, prerelease) # :nodoc:
|
||||
specs = []
|
||||
|
||||
if local?
|
||||
specs.concat Gem::Specification.stubs.find_all {|spec|
|
||||
name_pattern =~ spec.name and
|
||||
dependency.requirement.satisfied_by? spec.version
|
||||
name_matches = name_pattern ? name_pattern =~ spec.name : true
|
||||
version_matches = requirement.satisfied_by?(spec.version)
|
||||
|
||||
name_matches and version_matches
|
||||
}.map(&:to_spec)
|
||||
end
|
||||
|
||||
specs.concat fetch_remote_specs dependency if remote?
|
||||
specs.concat fetch_remote_specs name_pattern, requirement, prerelease if remote?
|
||||
|
||||
ensure_specs specs
|
||||
|
||||
specs.uniq.sort
|
||||
end
|
||||
|
||||
def gem_dependency(pattern, version, prerelease) # :nodoc:
|
||||
dependency = Gem::Deprecate.skip_during do
|
||||
Gem::Dependency.new pattern, version
|
||||
end
|
||||
|
||||
dependency.prerelease = prerelease
|
||||
|
||||
dependency
|
||||
end
|
||||
|
||||
def display_pipe(specs) # :nodoc:
|
||||
specs.each do |spec|
|
||||
unless spec.dependencies.empty?
|
||||
|
@ -119,11 +119,9 @@ use with other commands.
|
|||
ensure_local_only_reverse_dependencies
|
||||
|
||||
pattern = name_pattern options[:args]
|
||||
requirement = Gem::Requirement.new options[:version]
|
||||
|
||||
dependency =
|
||||
gem_dependency pattern, options[:version], options[:prerelease]
|
||||
|
||||
specs = fetch_specs pattern, dependency
|
||||
specs = fetch_specs pattern, requirement, options[:prerelease]
|
||||
|
||||
reverse = reverse_dependencies specs
|
||||
|
||||
|
@ -162,14 +160,6 @@ use with other commands.
|
|||
response
|
||||
end
|
||||
|
||||
def remote_specs(dependency) # :nodoc:
|
||||
fetcher = Gem::SpecFetcher.fetcher
|
||||
|
||||
ss, _ = fetcher.spec_for_dependency dependency
|
||||
|
||||
ss.map {|s,o| s }
|
||||
end
|
||||
|
||||
def reverse_dependencies(specs) # :nodoc:
|
||||
reverse = Hash.new {|h, k| h[k] = [] }
|
||||
|
||||
|
@ -205,7 +195,7 @@ use with other commands.
|
|||
private
|
||||
|
||||
def name_pattern(args)
|
||||
args << '' if args.empty?
|
||||
return if args.empty?
|
||||
|
||||
if args.length == 1 and args.first =~ /\A(.*)(i)?\z/m
|
||||
flags = $2 ? Regexp::IGNORECASE : nil
|
||||
|
|
|
@ -8,7 +8,12 @@ class Gem::Commands::FetchCommand < Gem::Command
|
|||
include Gem::VersionOption
|
||||
|
||||
def initialize
|
||||
super 'fetch', 'Download a gem and place it in the current directory'
|
||||
defaults = {
|
||||
:suggest_alternate => true,
|
||||
:version => Gem::Requirement.default,
|
||||
}
|
||||
|
||||
super 'fetch', 'Download a gem and place it in the current directory', defaults
|
||||
|
||||
add_bulk_threshold_option
|
||||
add_proxy_option
|
||||
|
@ -18,6 +23,10 @@ class Gem::Commands::FetchCommand < Gem::Command
|
|||
add_version_option
|
||||
add_platform_option
|
||||
add_prerelease_option
|
||||
|
||||
add_option '--[no-]suggestions', 'Suggest alternates when gems are not found' do |value, options|
|
||||
options[:suggest_alternate] = value
|
||||
end
|
||||
end
|
||||
|
||||
def arguments # :nodoc:
|
||||
|
@ -42,15 +51,27 @@ then repackaging it.
|
|||
"#{program_name} GEMNAME [GEMNAME ...]"
|
||||
end
|
||||
|
||||
def check_version # :nodoc:
|
||||
if options[:version] != Gem::Requirement.default and
|
||||
get_all_gem_names.size > 1
|
||||
alert_error "Can't use --version with multiple gems. You can specify multiple gems with" \
|
||||
" version requirements using `gem fetch 'my_gem:1.0.0' 'my_other_gem:~>2.0.0'`"
|
||||
terminate_interaction 1
|
||||
end
|
||||
end
|
||||
|
||||
def execute
|
||||
version = options[:version] || Gem::Requirement.default
|
||||
check_version
|
||||
version = options[:version]
|
||||
|
||||
platform = Gem.platforms.last
|
||||
gem_names = get_all_gem_names
|
||||
gem_names = get_all_gem_names_and_versions
|
||||
|
||||
gem_names.each do |gem_name|
|
||||
dep = Gem::Dependency.new gem_name, version
|
||||
gem_names.each do |gem_name, gem_version|
|
||||
gem_version ||= version
|
||||
dep = Gem::Dependency.new gem_name, gem_version
|
||||
dep.prerelease = options[:prerelease]
|
||||
suppress_suggestions = !options[:suggest_alternate]
|
||||
|
||||
specs_and_sources, errors =
|
||||
Gem::SpecFetcher.fetcher.spec_for_dependency dep
|
||||
|
@ -63,12 +84,10 @@ then repackaging it.
|
|||
spec, source = specs_and_sources.max_by {|s,| s }
|
||||
|
||||
if spec.nil?
|
||||
show_lookup_failure gem_name, version, errors, options[:domain]
|
||||
show_lookup_failure gem_name, gem_version, errors, suppress_suggestions, options[:domain]
|
||||
next
|
||||
end
|
||||
|
||||
source.download spec
|
||||
|
||||
say "Downloaded #{spec.full_name}"
|
||||
end
|
||||
end
|
||||
|
|
|
@ -10,7 +10,7 @@ class Gem::Commands::ListCommand < Gem::Command
|
|||
|
||||
def initialize
|
||||
super 'list', 'Display local gems whose name matches REGEXP',
|
||||
:name => //, :domain => :local, :details => false, :versions => true,
|
||||
:domain => :local, :details => false, :versions => true,
|
||||
:installed => nil, :version => Gem::Requirement.default
|
||||
|
||||
add_query_options
|
||||
|
|
|
@ -20,7 +20,7 @@ class Gem::Commands::QueryCommand < Gem::Command
|
|||
def initialize(name = 'query',
|
||||
summary = 'Query gem information in local or remote repositories')
|
||||
super name, summary,
|
||||
:name => //, :domain => :local, :details => false, :versions => true,
|
||||
:domain => :local, :details => false, :versions => true,
|
||||
:installed => nil, :version => Gem::Requirement.default
|
||||
|
||||
add_option('-n', '--name-matches REGEXP',
|
||||
|
|
|
@ -7,7 +7,7 @@ class Gem::Commands::SearchCommand < Gem::Command
|
|||
|
||||
def initialize
|
||||
super 'search', 'Display remote gems whose name matches REGEXP',
|
||||
:name => //, :domain => :remote, :details => false, :versions => true,
|
||||
:domain => :remote, :details => false, :versions => true,
|
||||
:installed => nil, :version => Gem::Requirement.default
|
||||
|
||||
add_query_options
|
||||
|
|
|
@ -286,9 +286,10 @@ command to remove old versions.
|
|||
|
||||
check_oldest_rubygems version
|
||||
|
||||
update_gem 'rubygems-update', version
|
||||
|
||||
installed_gems = Gem::Specification.find_all_by_name 'rubygems-update', requirement
|
||||
installed_gems = update_gem('rubygems-update', version) if installed_gems.empty? || installed_gems.first.version != version
|
||||
return if installed_gems.empty?
|
||||
|
||||
version = installed_gems.first.version
|
||||
|
||||
install_rubygems version
|
||||
|
@ -335,7 +336,9 @@ command to remove old versions.
|
|||
#
|
||||
def oldest_supported_version
|
||||
@oldest_supported_version ||=
|
||||
if Gem.ruby_version > Gem::Version.new("3.0.a")
|
||||
if Gem.ruby_version > Gem::Version.new("3.1.a")
|
||||
Gem::Version.new("3.3.3")
|
||||
elsif Gem.ruby_version > Gem::Version.new("3.0.a")
|
||||
Gem::Version.new("3.2.3")
|
||||
elsif Gem.ruby_version > Gem::Version.new("2.7.a")
|
||||
Gem::Version.new("3.1.2")
|
||||
|
|
|
@ -201,8 +201,8 @@ class Gem::Installer
|
|||
#
|
||||
# If +@force+ is set +filename+ is overwritten.
|
||||
#
|
||||
# If +filename+ exists and is a RubyGems wrapper for different gem the user
|
||||
# is consulted.
|
||||
# If +filename+ exists and it is a RubyGems wrapper for a different gem, then
|
||||
# the user is consulted.
|
||||
#
|
||||
# If +filename+ exists and +@bin_dir+ is Gem.default_bindir (/usr/local) the
|
||||
# user is consulted.
|
||||
|
@ -220,7 +220,17 @@ class Gem::Installer
|
|||
existing = nil
|
||||
|
||||
File.open generated_bin, 'rb' do |io|
|
||||
next unless io.gets =~ /^#!/ # shebang
|
||||
line = io.gets
|
||||
shebang = /^#!.*ruby/
|
||||
|
||||
if load_relative_enabled?
|
||||
until line.nil? || line =~ shebang do
|
||||
line = io.gets
|
||||
end
|
||||
end
|
||||
|
||||
next unless line =~ shebang
|
||||
|
||||
io.gets # blankline
|
||||
|
||||
# TODO detect a specially formatted comment instead of trying
|
||||
|
@ -585,7 +595,6 @@ class Gem::Installer
|
|||
#
|
||||
|
||||
def shebang(bin_file_name)
|
||||
ruby_name = RbConfig::CONFIG['ruby_install_name'] if @env_shebang
|
||||
path = File.join gem_dir, spec.bindir, bin_file_name
|
||||
first_line = File.open(path, "rb") {|file| file.gets } || ""
|
||||
|
||||
|
@ -598,7 +607,7 @@ class Gem::Installer
|
|||
|
||||
if which = Gem.configuration[:custom_shebang]
|
||||
# replace bin_file_name with "ruby" to avoid endless loops
|
||||
which = which.gsub(/ #{bin_file_name}$/," #{RbConfig::CONFIG['ruby_install_name']}")
|
||||
which = which.gsub(/ #{bin_file_name}$/," #{ruby_install_name}")
|
||||
|
||||
which = which.gsub(/\$(\w+)/) do
|
||||
case $1
|
||||
|
@ -614,14 +623,12 @@ class Gem::Installer
|
|||
end
|
||||
|
||||
"#!#{which}"
|
||||
elsif not ruby_name
|
||||
"#!#{Gem.ruby}#{opts}"
|
||||
elsif opts
|
||||
"#!/bin/sh\n'exec' #{ruby_name.dump} '-x' \"$0\" \"$@\"\n#{shebang}"
|
||||
else
|
||||
elsif @env_shebang
|
||||
# Create a plain shebang line.
|
||||
@env_path ||= ENV_PATHS.find {|env_path| File.executable? env_path }
|
||||
"#!#{@env_path} #{ruby_name}"
|
||||
"#!#{@env_path} #{ruby_install_name}"
|
||||
else
|
||||
"#{bash_prolog_script}#!#{Gem.ruby}#{opts}"
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -805,7 +812,6 @@ TEXT
|
|||
# return the stub script text used to launch the true Ruby script
|
||||
|
||||
def windows_stub_script(bindir, bin_file_name)
|
||||
rb_config = RbConfig::CONFIG
|
||||
rb_topdir = RbConfig::TOPDIR || File.dirname(rb_config["bindir"])
|
||||
|
||||
# get ruby executable file name from RbConfig
|
||||
|
@ -973,4 +979,37 @@ TEXT
|
|||
Gem::Command.build_args
|
||||
end
|
||||
end
|
||||
|
||||
def rb_config
|
||||
RbConfig::CONFIG
|
||||
end
|
||||
|
||||
def ruby_install_name
|
||||
rb_config["ruby_install_name"]
|
||||
end
|
||||
|
||||
def load_relative_enabled?
|
||||
rb_config["LIBRUBY_RELATIVE"] == 'yes'
|
||||
end
|
||||
|
||||
def bash_prolog_script
|
||||
if load_relative_enabled?
|
||||
script = +<<~EOS
|
||||
bindir="${0%/*}"
|
||||
EOS
|
||||
|
||||
script << %Q(exec "$bindir/#{ruby_install_name}" "-x" "$0" "$@"\n)
|
||||
|
||||
<<~EOS
|
||||
#!/bin/sh
|
||||
# -*- ruby -*-
|
||||
_=_\\
|
||||
=begin
|
||||
#{script.chomp}
|
||||
=end
|
||||
EOS
|
||||
else
|
||||
""
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -230,7 +230,7 @@ class Gem::Package
|
|||
|
||||
tar.add_file_signed 'checksums.yaml.gz', 0444, @signer do |io|
|
||||
gzip_to io do |gz_io|
|
||||
YAML.dump checksums_by_algorithm, gz_io
|
||||
Psych.dump checksums_by_algorithm, gz_io
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -145,7 +145,7 @@ class Gem::Package::Old < Gem::Package
|
|||
|
||||
begin
|
||||
@spec = Gem::Specification.from_yaml yaml
|
||||
rescue YAML::SyntaxError
|
||||
rescue Psych::SyntaxError
|
||||
raise Gem::Exception, "Failed to parse gem specification out of gem file"
|
||||
end
|
||||
rescue ArgumentError
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# frozen_string_literal: true
|
||||
# This exists just to satisfy bugs in marshal'd gemspecs that
|
||||
# contain a reference to YAML::PrivateType. We prune these out
|
||||
# contain a reference to Psych::PrivateType. We prune these out
|
||||
# in Specification._load, but if we don't have the constant, Marshal
|
||||
# blows up.
|
||||
|
||||
|
|
|
@ -54,14 +54,14 @@ module Gem::QueryUtils
|
|||
end
|
||||
|
||||
def defaults_str # :nodoc:
|
||||
"--local --name-matches // --no-details --versions --no-installed"
|
||||
"--local --no-details --versions --no-installed"
|
||||
end
|
||||
|
||||
def execute
|
||||
gem_names = Array(options[:name])
|
||||
|
||||
if !args.empty?
|
||||
gem_names = options[:exact] ? args.map{|arg| /\A#{Regexp.escape(arg)}\Z/ } : args.map{|arg| /#{arg}/i }
|
||||
gem_names = if args.empty?
|
||||
[options[:name]]
|
||||
else
|
||||
options[:exact] ? args.map{|arg| /\A#{Regexp.escape(arg)}\Z/ } : args.map{|arg| /#{arg}/i }
|
||||
end
|
||||
|
||||
terminate_interaction(check_installed_gems(gem_names)) if check_installed_gems?
|
||||
|
@ -96,7 +96,7 @@ module Gem::QueryUtils
|
|||
end
|
||||
|
||||
def gem_name?
|
||||
!options[:name].source.empty?
|
||||
!options[:name].nil?
|
||||
end
|
||||
|
||||
def prerelease
|
||||
|
@ -129,12 +129,10 @@ module Gem::QueryUtils
|
|||
display_header("LOCAL")
|
||||
|
||||
specs = Gem::Specification.find_all do |s|
|
||||
s.name =~ name and req =~ s.version
|
||||
end
|
||||
name_matches = name ? s.name =~ name : true
|
||||
version_matches = show_prereleases? || !s.version.prerelease?
|
||||
|
||||
dep = Gem::Deprecate.skip_during { Gem::Dependency.new name, req }
|
||||
specs.select! do |s|
|
||||
dep.match?(s.name, s.version, show_prereleases?)
|
||||
name_matches and version_matches
|
||||
end
|
||||
|
||||
spec_tuples = specs.map do |spec|
|
||||
|
@ -149,7 +147,7 @@ module Gem::QueryUtils
|
|||
|
||||
fetcher = Gem::SpecFetcher.fetcher
|
||||
|
||||
spec_tuples = if name.respond_to?(:source) && name.source.empty?
|
||||
spec_tuples = if name.nil?
|
||||
fetcher.detect(specs_type) { true }
|
||||
else
|
||||
fetcher.detect(specs_type) do |name_tuple|
|
||||
|
|
|
@ -76,21 +76,21 @@ class Gem::Resolver::InstallerSet < Gem::Resolver::Set
|
|||
|
||||
newest = found.last
|
||||
|
||||
unless newest
|
||||
exc = Gem::UnsatisfiableDependencyError.new request
|
||||
exc.errors = errors
|
||||
|
||||
raise exc
|
||||
end
|
||||
|
||||
unless @force
|
||||
found_matching_metadata = found.reverse.find do |spec|
|
||||
metadata_satisfied?(spec)
|
||||
end
|
||||
|
||||
if found_matching_metadata.nil?
|
||||
if newest
|
||||
ensure_required_ruby_version_met(newest.spec)
|
||||
ensure_required_rubygems_version_met(newest.spec)
|
||||
else
|
||||
exc = Gem::UnsatisfiableDependencyError.new request
|
||||
exc.errors = errors
|
||||
|
||||
raise exc
|
||||
end
|
||||
else
|
||||
newest = found_matching_metadata
|
||||
end
|
||||
|
|
|
@ -24,33 +24,33 @@ module Gem
|
|||
runtime
|
||||
].freeze
|
||||
|
||||
if ::YAML.respond_to? :safe_load
|
||||
if ::Psych.respond_to? :safe_load
|
||||
def self.safe_load(input)
|
||||
if Gem::Version.new(Psych::VERSION) >= Gem::Version.new('3.1.0.pre1')
|
||||
::YAML.safe_load(input, permitted_classes: PERMITTED_CLASSES, permitted_symbols: PERMITTED_SYMBOLS, aliases: true)
|
||||
::Psych.safe_load(input, permitted_classes: PERMITTED_CLASSES, permitted_symbols: PERMITTED_SYMBOLS, aliases: true)
|
||||
else
|
||||
::YAML.safe_load(input, PERMITTED_CLASSES, PERMITTED_SYMBOLS, true)
|
||||
::Psych.safe_load(input, PERMITTED_CLASSES, PERMITTED_SYMBOLS, true)
|
||||
end
|
||||
end
|
||||
|
||||
def self.load(input)
|
||||
if Gem::Version.new(Psych::VERSION) >= Gem::Version.new('3.1.0.pre1')
|
||||
::YAML.safe_load(input, permitted_classes: [::Symbol])
|
||||
::Psych.safe_load(input, permitted_classes: [::Symbol])
|
||||
else
|
||||
::YAML.safe_load(input, [::Symbol])
|
||||
::Psych.safe_load(input, [::Symbol])
|
||||
end
|
||||
end
|
||||
else
|
||||
unless Gem::Deprecate.skip
|
||||
warn "YAML safe loading is not available. Please upgrade psych to a version that supports safe loading (>= 2.0)."
|
||||
warn "Psych safe loading is not available. Please upgrade psych to a version that supports safe loading (>= 2.0)."
|
||||
end
|
||||
|
||||
def self.safe_load(input, *args)
|
||||
::YAML.load input
|
||||
::Psych.load input
|
||||
end
|
||||
|
||||
def self.load(input)
|
||||
::YAML.load input
|
||||
::Psych.load input
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -261,7 +261,7 @@ require_relative 'openssl'
|
|||
# 2. Grab the public key from the gemspec
|
||||
#
|
||||
# gem spec some_signed_gem-1.0.gem cert_chain | \
|
||||
# ruby -ryaml -e 'puts YAML.load($stdin)' > public_key.crt
|
||||
# ruby -rpsych -e 'puts Psych.load($stdin)' > public_key.crt
|
||||
#
|
||||
# 3. Generate a SHA1 hash of the data.tar.gz
|
||||
#
|
||||
|
|
|
@ -11,7 +11,6 @@ require_relative 'basic_specification'
|
|||
require_relative 'stub_specification'
|
||||
require_relative 'platform'
|
||||
require_relative 'requirement'
|
||||
require_relative 'specification_policy'
|
||||
require_relative 'util/list'
|
||||
|
||||
##
|
||||
|
@ -226,7 +225,7 @@ class Gem::Specification < Gem::BasicSpecification
|
|||
attr_reader :version
|
||||
|
||||
##
|
||||
# A short summary of this gem's description. Displayed in `gem list -d`.
|
||||
# A short summary of this gem's description. Displayed in <tt>gem list -d</tt>.
|
||||
#
|
||||
# The #description should be more detailed than the summary.
|
||||
#
|
||||
|
@ -272,7 +271,7 @@ class Gem::Specification < Gem::BasicSpecification
|
|||
# A list of authors for this gem.
|
||||
#
|
||||
# Alternatively, a single author can be specified by assigning a string to
|
||||
# `spec.author`
|
||||
# +spec.author+
|
||||
#
|
||||
# Usage:
|
||||
#
|
||||
|
@ -1116,7 +1115,7 @@ class Gem::Specification < Gem::BasicSpecification
|
|||
file = file.dup.tap(&Gem::UNTAINT)
|
||||
return unless File.file?(file)
|
||||
|
||||
code = Gem.open_with_flock(file, 'r:UTF-8:-', &:read)
|
||||
code = Gem.open_file(file, 'r:UTF-8:-', &:read)
|
||||
|
||||
code.tap(&Gem::UNTAINT)
|
||||
|
||||
|
@ -1280,10 +1279,10 @@ class Gem::Specification < Gem::BasicSpecification
|
|||
raise TypeError, "invalid Gem::Specification format #{array.inspect}"
|
||||
end
|
||||
|
||||
# Cleanup any YAML::PrivateType. They only show up for an old bug
|
||||
# Cleanup any Psych::PrivateType. They only show up for an old bug
|
||||
# where nil => null, so just convert them to nil based on the type.
|
||||
|
||||
array.map! {|e| e.kind_of?(YAML::PrivateType) ? nil : e }
|
||||
array.map! {|e| e.kind_of?(Psych::PrivateType) ? nil : e }
|
||||
|
||||
spec.instance_variable_set :@rubygems_version, array[0]
|
||||
# spec version
|
||||
|
|
|
@ -110,7 +110,7 @@ class Gem::StubSpecification < Gem::BasicSpecification
|
|||
begin
|
||||
saved_lineno = $.
|
||||
|
||||
Gem.open_with_flock loaded_from, OPEN_MODE do |file|
|
||||
Gem.open_file loaded_from, OPEN_MODE do |file|
|
||||
begin
|
||||
file.readline # discard encoding line
|
||||
stubline = file.readline.chomp
|
||||
|
@ -190,9 +190,6 @@ class Gem::StubSpecification < Gem::BasicSpecification
|
|||
end
|
||||
|
||||
@spec ||= Gem::Specification.load(loaded_from)
|
||||
@spec.ignored = @ignored if @spec
|
||||
|
||||
@spec
|
||||
end
|
||||
|
||||
##
|
||||
|
|
|
@ -341,9 +341,11 @@ class Gem::Version
|
|||
# Compares this version with +other+ returning -1, 0, or 1 if the
|
||||
# other version is larger, the same, or smaller than this
|
||||
# one. Attempts to compare to something that's not a
|
||||
# <tt>Gem::Version</tt> return +nil+.
|
||||
# <tt>Gem::Version</tt> or a valid version String return +nil+.
|
||||
|
||||
def <=>(other)
|
||||
return self <=> self.class.new(other) if (String === other) && self.class.correct?(other)
|
||||
|
||||
return unless Gem::Version === other
|
||||
return 0 if @version == other._version || canonical_segments == other.canonical_segments
|
||||
|
||||
|
|
|
@ -170,7 +170,7 @@ RSpec.describe "bundle executable" do
|
|||
bundle "fail", :env => { "BUNDLER_VERSION" => bundler_version }, :raise_on_error => false
|
||||
expect(err).to start_with(<<-EOS.strip)
|
||||
The latest bundler is #{latest_version}, but you are currently running #{bundler_version}.
|
||||
To install the latest version, run `gem install bundler`
|
||||
To update to the most recent version, run `bundle update --bundler`
|
||||
EOS
|
||||
end
|
||||
|
||||
|
@ -195,7 +195,7 @@ To install the latest version, run `gem install bundler`
|
|||
bundle "fail", :env => { "BUNDLER_VERSION" => bundler_version }, :raise_on_error => false
|
||||
expect(err).to start_with(<<-EOS.strip)
|
||||
The latest bundler is #{latest_version}, but you are currently running #{bundler_version}.
|
||||
To install the latest version, run `gem install bundler --pre`
|
||||
To update to the most recent version, run `bundle update --bundler`
|
||||
EOS
|
||||
end
|
||||
end
|
||||
|
|
|
@ -5,9 +5,10 @@ RSpec.describe Bundler::EndpointSpecification do
|
|||
let(:version) { "1.0.0" }
|
||||
let(:platform) { Gem::Platform::RUBY }
|
||||
let(:dependencies) { [] }
|
||||
let(:spec_fetcher) { double(:spec_fetcher) }
|
||||
let(:metadata) { nil }
|
||||
|
||||
subject(:spec) { described_class.new(name, version, platform, dependencies, metadata) }
|
||||
subject(:spec) { described_class.new(name, version, platform, spec_fetcher, dependencies, metadata) }
|
||||
|
||||
describe "#build_dependency" do
|
||||
let(:name) { "foo" }
|
||||
|
@ -48,7 +49,9 @@ RSpec.describe Bundler::EndpointSpecification do
|
|||
end
|
||||
|
||||
it "supports equality comparison" do
|
||||
other_spec = described_class.new("bar", version, platform, dependencies, metadata)
|
||||
remote_spec = double(:remote_spec, :required_ruby_version => nil, :required_rubygems_version => nil)
|
||||
allow(spec_fetcher).to receive(:fetch_spec).and_return(remote_spec)
|
||||
other_spec = described_class.new("bar", version, platform, spec_fetcher, dependencies, metadata)
|
||||
expect(spec).to eql(spec)
|
||||
expect(spec).to_not eql(other_spec)
|
||||
end
|
||||
|
|
|
@ -66,6 +66,10 @@ RSpec.describe Bundler::GemHelper do
|
|||
mock_confirm_message message
|
||||
end
|
||||
|
||||
def sha512_hexdigest(path)
|
||||
Digest::SHA512.file(path).hexdigest
|
||||
end
|
||||
|
||||
subject! { Bundler::GemHelper.new(app_path) }
|
||||
let(:app_version) { "0.1.0" }
|
||||
let(:app_gem_dir) { app_path.join("pkg") }
|
||||
|
@ -169,12 +173,21 @@ RSpec.describe Bundler::GemHelper do
|
|||
end
|
||||
|
||||
describe "#build_checksum" do
|
||||
it "calculates SHA512 of the content" do
|
||||
FileUtils.mkdir_p(app_gem_dir)
|
||||
File.write(app_gem_path, "")
|
||||
mock_checksum_message app_name, app_version
|
||||
subject.build_checksum(app_gem_path)
|
||||
expect(File.read(app_sha_path).chomp).to eql(Digest::SHA512.hexdigest(""))
|
||||
end
|
||||
|
||||
context "when build was successful" do
|
||||
it "creates .sha512 file" do
|
||||
mock_build_message app_name, app_version
|
||||
mock_checksum_message app_name, app_version
|
||||
subject.build_checksum
|
||||
expect(app_sha_path).to exist
|
||||
expect(File.read(app_sha_path).chomp).to eql(sha512_hexdigest(app_gem_path))
|
||||
end
|
||||
end
|
||||
context "when building in the current working directory" do
|
||||
|
@ -185,6 +198,7 @@ RSpec.describe Bundler::GemHelper do
|
|||
Bundler::GemHelper.new.build_checksum
|
||||
end
|
||||
expect(app_sha_path).to exist
|
||||
expect(File.read(app_sha_path).chomp).to eql(sha512_hexdigest(app_gem_path))
|
||||
end
|
||||
end
|
||||
context "when building in a location relative to the current working directory" do
|
||||
|
@ -195,6 +209,7 @@ RSpec.describe Bundler::GemHelper do
|
|||
Bundler::GemHelper.new(File.basename(app_path)).build_checksum
|
||||
end
|
||||
expect(app_sha_path).to exist
|
||||
expect(File.read(app_sha_path).chomp).to eql(sha512_hexdigest(app_gem_path))
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -182,30 +182,26 @@ RSpec.describe "bundle binstubs <gem>" do
|
|||
end
|
||||
|
||||
context "and the version is older and the same major" do
|
||||
let(:system_bundler_version) { "55.1" }
|
||||
let(:system_bundler_version) { "2.999.999" }
|
||||
|
||||
before do
|
||||
lockfile lockfile.gsub(/BUNDLED WITH\n .*$/m, "BUNDLED WITH\n 55.0")
|
||||
|
||||
update_repo2 do
|
||||
with_built_bundler("55.0") {|gem_path| FileUtils.mv(gem_path, gem_repo2("gems")) }
|
||||
end
|
||||
lockfile lockfile.gsub(/BUNDLED WITH\n .*$/m, "BUNDLED WITH\n 2.3.0")
|
||||
end
|
||||
|
||||
it "installs and runs the exact version of bundler", :rubygems => ">= 3.3.0.dev" do
|
||||
sys_exec "bin/bundle install --verbose", :env => { "BUNDLER_SPEC_GEM_SOURCES" => file_uri_for(gem_repo2).to_s, "RUBYOPT" => "-r#{spec_dir}/support/hax.rb" }
|
||||
sys_exec "bin/bundle install --verbose", :artifice => "vcr"
|
||||
expect(exitstatus).not_to eq(42)
|
||||
expect(out).to include("Bundler 55.1 is running, but your lockfile was generated with 55.0. Installing Bundler 55.0 and restarting using that version.")
|
||||
expect(out).to include("Using bundler 55.0")
|
||||
expect(err).not_to include("Activating bundler (~> 55.0) failed:")
|
||||
expect(out).to include("Bundler 2.999.999 is running, but your lockfile was generated with 2.3.0. Installing Bundler 2.3.0 and restarting using that version.")
|
||||
expect(out).to include("Using bundler 2.3.0")
|
||||
expect(err).not_to include("Activating bundler (~> 2.3.0) failed:")
|
||||
end
|
||||
|
||||
it "runs the available version of bundler", :rubygems => "< 3.3.0.dev" do
|
||||
sys_exec "bin/bundle install --verbose"
|
||||
expect(exitstatus).not_to eq(42)
|
||||
expect(out).not_to include("Bundler 55.1 is running, but your lockfile was generated with 55.0. Installing Bundler 55.0 and restarting using that version.")
|
||||
expect(out).to include("Using bundler 55.1")
|
||||
expect(err).not_to include("Activating bundler (~> 55.0) failed:")
|
||||
expect(out).not_to include("Bundler 2.999.999 is running, but your lockfile was generated with 2.3.0. Installing Bundler 2.3.0 and restarting using that version.")
|
||||
expect(out).to include("Using bundler 2.999.999")
|
||||
expect(err).not_to include("Activating bundler (~> 2.3.0) failed:")
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -403,7 +403,8 @@ RSpec.describe "bundle install with gem sources" do
|
|||
|
||||
simulate_new_machine
|
||||
|
||||
simulate_platform "ruby" do
|
||||
bundle "config set --local force_ruby_platform true"
|
||||
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
gem "platform_specific"
|
||||
|
@ -411,7 +412,6 @@ RSpec.describe "bundle install with gem sources" do
|
|||
run "require 'platform_specific' ; puts PLATFORM_SPECIFIC"
|
||||
expect(out).to eq("1.0.0 RUBY")
|
||||
end
|
||||
end
|
||||
|
||||
it "does not update the cache if --no-cache is passed" do
|
||||
gemfile <<-G
|
||||
|
|
|
@ -49,8 +49,8 @@ RSpec.describe "bundle doctor" do
|
|||
doctor = Bundler::CLI::Doctor.new({})
|
||||
expect(doctor).to receive(:bundles_for_gem).exactly(2).times.and_return ["/path/to/rack/rack.bundle"]
|
||||
expect(doctor).to receive(:dylibs).exactly(2).times.and_return ["/usr/lib/libSystem.dylib"]
|
||||
allow(File).to receive(:exist?).with("/usr/lib/libSystem.dylib").and_return(true)
|
||||
expect { doctor.run }.not_to(raise_error, @stdout.string)
|
||||
allow(Fiddle).to receive(:dlopen).with("/usr/lib/libSystem.dylib").and_return(true)
|
||||
expect { doctor.run }.not_to raise_error
|
||||
expect(@stdout.string).to be_empty
|
||||
end
|
||||
|
||||
|
@ -58,7 +58,7 @@ RSpec.describe "bundle doctor" do
|
|||
doctor = Bundler::CLI::Doctor.new({})
|
||||
expect(doctor).to receive(:bundles_for_gem).exactly(2).times.and_return ["/path/to/rack/rack.bundle"]
|
||||
expect(doctor).to receive(:dylibs).exactly(2).times.and_return ["/usr/local/opt/icu4c/lib/libicui18n.57.1.dylib"]
|
||||
allow(File).to receive(:exist?).with("/usr/local/opt/icu4c/lib/libicui18n.57.1.dylib").and_return(false)
|
||||
allow(Fiddle).to receive(:dlopen).with("/usr/local/opt/icu4c/lib/libicui18n.57.1.dylib").and_raise(Fiddle::DLError)
|
||||
expect { doctor.run }.to raise_error(Bundler::ProductionError, strip_whitespace(<<-E).strip), @stdout.string
|
||||
The following gems are missing OS dependencies:
|
||||
* bundler: /usr/local/opt/icu4c/lib/libicui18n.57.1.dylib
|
||||
|
|
|
@ -499,20 +499,17 @@ RSpec.describe "bundle install with gem sources" do
|
|||
context "and using an unsupported Ruby version" do
|
||||
it "prints an error" do
|
||||
install_gemfile <<-G, :raise_on_error => false
|
||||
::RUBY_VERSION = '2.0.1'
|
||||
ruby '~> 2.2'
|
||||
ruby '~> 1.2'
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
G
|
||||
expect(err).to include("Your Ruby version is 2.0.1, but your Gemfile specified ~> 2.2")
|
||||
expect(err).to include("Your Ruby version is #{RUBY_VERSION}, but your Gemfile specified ~> 1.2")
|
||||
end
|
||||
end
|
||||
|
||||
context "and using a supported Ruby version" do
|
||||
before do
|
||||
install_gemfile <<-G
|
||||
::RUBY_VERSION = '2.1.3'
|
||||
::RUBY_PATCHLEVEL = 100
|
||||
ruby '~> 2.1.0'
|
||||
ruby '~> #{RUBY_VERSION}'
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
G
|
||||
end
|
||||
|
@ -529,18 +526,16 @@ RSpec.describe "bundle install with gem sources" do
|
|||
DEPENDENCIES
|
||||
|
||||
RUBY VERSION
|
||||
ruby 2.1.3p100
|
||||
#{Bundler::RubyVersion.system}
|
||||
|
||||
BUNDLED WITH
|
||||
#{Bundler::VERSION}
|
||||
L
|
||||
end
|
||||
|
||||
it "updates Gemfile.lock with updated incompatible ruby version" do
|
||||
it "updates Gemfile.lock with updated yet still compatible ruby version" do
|
||||
install_gemfile <<-G
|
||||
::RUBY_VERSION = '2.2.3'
|
||||
::RUBY_PATCHLEVEL = 100
|
||||
ruby '~> 2.2.0'
|
||||
ruby '~> #{RUBY_VERSION[0..2]}'
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
G
|
||||
|
||||
|
@ -555,7 +550,7 @@ RSpec.describe "bundle install with gem sources" do
|
|||
DEPENDENCIES
|
||||
|
||||
RUBY VERSION
|
||||
ruby 2.2.3p100
|
||||
#{Bundler::RubyVersion.system}
|
||||
|
||||
BUNDLED WITH
|
||||
#{Bundler::VERSION}
|
||||
|
|
|
@ -337,7 +337,8 @@ RSpec.describe "bundle lock" do
|
|||
#{Bundler::VERSION}
|
||||
G
|
||||
|
||||
simulate_platform(rb) { bundle :lock }
|
||||
bundle "config set --local force_ruby_platform true"
|
||||
bundle :lock
|
||||
|
||||
expect(lockfile).to eq <<~G
|
||||
GEM
|
||||
|
|
|
@ -28,6 +28,10 @@ RSpec.describe "bundle gem" do
|
|||
|
||||
let(:require_path) { "mygem" }
|
||||
|
||||
let(:minitest_test_file_path) { "test/test_mygem.rb" }
|
||||
|
||||
let(:minitest_test_class_name) { "class TestMygem < Minitest::Test" }
|
||||
|
||||
before do
|
||||
sys_exec("git config --global user.name 'Bundler User'")
|
||||
sys_exec("git config --global user.email user@example.com")
|
||||
|
@ -702,7 +706,7 @@ RSpec.describe "bundle gem" do
|
|||
end
|
||||
|
||||
it "builds spec skeleton" do
|
||||
expect(bundled_app("#{gem_name}/test/test_#{require_path}.rb")).to exist
|
||||
expect(bundled_app("#{gem_name}/#{minitest_test_file_path}")).to exist
|
||||
expect(bundled_app("#{gem_name}/test/test_helper.rb")).to exist
|
||||
end
|
||||
end
|
||||
|
@ -722,7 +726,7 @@ RSpec.describe "bundle gem" do
|
|||
end
|
||||
|
||||
it "builds spec skeleton" do
|
||||
expect(bundled_app("#{gem_name}/test/test_#{require_path}.rb")).to exist
|
||||
expect(bundled_app("#{gem_name}/#{minitest_test_file_path}")).to exist
|
||||
expect(bundled_app("#{gem_name}/test/test_helper.rb")).to exist
|
||||
end
|
||||
|
||||
|
@ -731,11 +735,15 @@ RSpec.describe "bundle gem" do
|
|||
end
|
||||
|
||||
it "requires 'test_helper'" do
|
||||
expect(bundled_app("#{gem_name}/test/test_#{require_path}.rb").read).to include(%(require "test_helper"))
|
||||
expect(bundled_app("#{gem_name}/#{minitest_test_file_path}").read).to include(%(require "test_helper"))
|
||||
end
|
||||
|
||||
it "defines valid test class name" do
|
||||
expect(bundled_app("#{gem_name}/#{minitest_test_file_path}").read).to include(minitest_test_class_name)
|
||||
end
|
||||
|
||||
it "creates a default test which fails" do
|
||||
expect(bundled_app("#{gem_name}/test/test_#{require_path}.rb").read).to include("assert false")
|
||||
expect(bundled_app("#{gem_name}/#{minitest_test_file_path}").read).to include("assert false")
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -1300,6 +1308,10 @@ RSpec.describe "bundle gem" do
|
|||
|
||||
let(:require_relative_path) { "test_gem" }
|
||||
|
||||
let(:minitest_test_file_path) { "test/test_test_gem.rb" }
|
||||
|
||||
let(:minitest_test_class_name) { "class TestTestGem < Minitest::Test" }
|
||||
|
||||
let(:flags) { nil }
|
||||
|
||||
it "does not nest constants" do
|
||||
|
@ -1355,6 +1367,10 @@ RSpec.describe "bundle gem" do
|
|||
|
||||
let(:require_relative_path) { "gem" }
|
||||
|
||||
let(:minitest_test_file_path) { "test/test/test_gem.rb" }
|
||||
|
||||
let(:minitest_test_class_name) { "class Test::TestGem < Minitest::Test" }
|
||||
|
||||
it "nests constants so they work" do
|
||||
bundle "gem #{gem_name}"
|
||||
expect(bundled_app("#{gem_name}/lib/#{require_path}/version.rb").read).to match(/module Test\n module Gem/)
|
||||
|
|
|
@ -48,12 +48,14 @@ RSpec.describe "bundle remove" do
|
|||
|
||||
context "when gem is specified in multiple lines" do
|
||||
it "shows success for removed gem" do
|
||||
build_git "rack"
|
||||
|
||||
gemfile <<-G
|
||||
source '#{file_uri_for(gem_repo1)}'
|
||||
|
||||
gem 'git'
|
||||
gem 'rack',
|
||||
git: 'https://github.com/rack/rack',
|
||||
git: "#{lib_path("rack-1.0")}",
|
||||
branch: 'master'
|
||||
gem 'nokogiri'
|
||||
G
|
||||
|
|
|
@ -980,20 +980,14 @@ RSpec.describe "bundle update when a gem depends on a newer version of bundler"
|
|||
end
|
||||
|
||||
RSpec.describe "bundle update --ruby" do
|
||||
before do
|
||||
install_gemfile <<-G
|
||||
::RUBY_VERSION = '2.1.3'
|
||||
::RUBY_PATCHLEVEL = 100
|
||||
ruby '~> 2.1.0'
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
G
|
||||
end
|
||||
|
||||
context "when the Gemfile removes the ruby" do
|
||||
before do
|
||||
install_gemfile <<-G
|
||||
ruby '~> #{RUBY_VERSION}'
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
G
|
||||
|
||||
gemfile <<-G
|
||||
::RUBY_VERSION = '2.1.4'
|
||||
::RUBY_PATCHLEVEL = 222
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
G
|
||||
end
|
||||
|
@ -1018,10 +1012,13 @@ RSpec.describe "bundle update --ruby" do
|
|||
|
||||
context "when the Gemfile specified an updated Ruby version" do
|
||||
before do
|
||||
install_gemfile <<-G
|
||||
ruby '~> #{RUBY_VERSION}'
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
G
|
||||
|
||||
gemfile <<-G
|
||||
::RUBY_VERSION = '2.1.4'
|
||||
::RUBY_PATCHLEVEL = 222
|
||||
ruby '~> 2.1.0'
|
||||
ruby '~> #{RUBY_VERSION[0..2]}'
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
G
|
||||
end
|
||||
|
@ -1038,37 +1035,55 @@ RSpec.describe "bundle update --ruby" do
|
|||
|
||||
DEPENDENCIES
|
||||
|
||||
RUBY VERSION
|
||||
#{Bundler::RubyVersion.system}
|
||||
|
||||
BUNDLED WITH
|
||||
#{Bundler::VERSION}
|
||||
L
|
||||
end
|
||||
end
|
||||
|
||||
context "when a different Ruby is being used than has been versioned" do
|
||||
before do
|
||||
install_gemfile <<-G
|
||||
ruby '~> #{RUBY_VERSION}'
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
G
|
||||
|
||||
gemfile <<-G
|
||||
ruby '~> 2.1.0'
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
G
|
||||
end
|
||||
it "shows a helpful error message" do
|
||||
bundle "update --ruby", :raise_on_error => false
|
||||
|
||||
expect(err).to include("Your Ruby version is #{Bundler::RubyVersion.system.gem_version}, but your Gemfile specified ~> 2.1.0")
|
||||
end
|
||||
end
|
||||
|
||||
context "when updating Ruby version and Gemfile `ruby`" do
|
||||
before do
|
||||
lockfile <<~L
|
||||
GEM
|
||||
remote: #{file_uri_for(gem_repo1)}/
|
||||
specs:
|
||||
|
||||
PLATFORMS
|
||||
#{lockfile_platforms}
|
||||
|
||||
DEPENDENCIES
|
||||
|
||||
RUBY VERSION
|
||||
ruby 2.1.4p222
|
||||
|
||||
BUNDLED WITH
|
||||
#{Bundler::VERSION}
|
||||
L
|
||||
end
|
||||
end
|
||||
|
||||
context "when a different Ruby is being used than has been versioned" do
|
||||
before do
|
||||
gemfile <<-G
|
||||
::RUBY_VERSION = '2.2.2'
|
||||
::RUBY_PATCHLEVEL = 505
|
||||
ruby '~> 2.1.0'
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
G
|
||||
end
|
||||
it "shows a helpful error message" do
|
||||
bundle "update --ruby", :raise_on_error => false
|
||||
|
||||
expect(err).to include("Your Ruby version is 2.2.2, but your Gemfile specified ~> 2.1.0")
|
||||
end
|
||||
end
|
||||
|
||||
context "when updating Ruby version and Gemfile `ruby`" do
|
||||
before do
|
||||
gemfile <<-G
|
||||
::RUBY_VERSION = '1.8.3'
|
||||
::RUBY_PATCHLEVEL = 55
|
||||
ruby '~> 1.8.0'
|
||||
ruby '~> #{RUBY_VERSION}'
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
G
|
||||
end
|
||||
|
@ -1086,7 +1101,7 @@ RSpec.describe "bundle update --ruby" do
|
|||
DEPENDENCIES
|
||||
|
||||
RUBY VERSION
|
||||
ruby 1.8.3p55
|
||||
#{Bundler::RubyVersion.system}
|
||||
|
||||
BUNDLED WITH
|
||||
#{Bundler::VERSION}
|
||||
|
@ -1105,15 +1120,208 @@ RSpec.describe "bundle update --bundler" do
|
|||
source "#{file_uri_for(gem_repo4)}"
|
||||
gem "rack"
|
||||
G
|
||||
allow(Bundler::SharedHelpers).to receive(:find_gemfile).and_return(bundled_app_gemfile)
|
||||
lockfile lockfile.sub(/(^\s*)#{Bundler::VERSION}($)/, '\11.0.0\2')
|
||||
|
||||
FileUtils.rm_r gem_repo4
|
||||
|
||||
bundle :update, :bundler => true, :verbose => true
|
||||
expect(the_bundle).to include_gem "rack 1.0"
|
||||
bundle :update, :bundler => true, :artifice => "compact_index", :verbose => true
|
||||
expect(out).to include("Using bundler #{Bundler::VERSION}")
|
||||
|
||||
expect(the_bundle.locked_gems.bundler_version).to eq v(Bundler::VERSION)
|
||||
expect(lockfile).to eq <<~L
|
||||
GEM
|
||||
remote: #{file_uri_for(gem_repo4)}/
|
||||
specs:
|
||||
rack (1.0)
|
||||
|
||||
PLATFORMS
|
||||
#{lockfile_platforms}
|
||||
|
||||
DEPENDENCIES
|
||||
rack
|
||||
|
||||
BUNDLED WITH
|
||||
#{Bundler::VERSION}
|
||||
L
|
||||
|
||||
expect(the_bundle).to include_gem "rack 1.0"
|
||||
end
|
||||
|
||||
it "updates the bundler version in the lockfile without re-resolving if the highest version is already installed" do
|
||||
system_gems "bundler-2.3.3"
|
||||
|
||||
build_repo4 do
|
||||
build_gem "rack", "1.0"
|
||||
end
|
||||
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo4)}"
|
||||
gem "rack"
|
||||
G
|
||||
lockfile lockfile.sub(/(^\s*)#{Bundler::VERSION}($)/, "2.3.3")
|
||||
|
||||
bundle :update, :bundler => true, :artifice => "compact_index", :verbose => true
|
||||
expect(out).to include("Using bundler #{Bundler::VERSION}")
|
||||
|
||||
expect(lockfile).to eq <<~L
|
||||
GEM
|
||||
remote: #{file_uri_for(gem_repo4)}/
|
||||
specs:
|
||||
rack (1.0)
|
||||
|
||||
PLATFORMS
|
||||
#{lockfile_platforms}
|
||||
|
||||
DEPENDENCIES
|
||||
rack
|
||||
|
||||
BUNDLED WITH
|
||||
#{Bundler::VERSION}
|
||||
L
|
||||
|
||||
expect(the_bundle).to include_gem "rack 1.0"
|
||||
end
|
||||
|
||||
it "updates the bundler version in the lockfile even if the latest version is not installed", :ruby_repo, :realworld do
|
||||
pristine_system_gems "bundler-2.3.3"
|
||||
|
||||
build_repo4 do
|
||||
build_gem "rack", "1.0"
|
||||
end
|
||||
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo4)}"
|
||||
gem "rack"
|
||||
G
|
||||
lockfile lockfile.sub(/(^\s*)#{Bundler::VERSION}($)/, "2.3.3")
|
||||
|
||||
bundle :update, :bundler => true, :artifice => "vcr", :verbose => true
|
||||
|
||||
# Only updates properly on modern RubyGems.
|
||||
|
||||
if Gem.rubygems_version >= Gem::Version.new("3.3.0.dev")
|
||||
expect(out).to include("Updating bundler to 2.3.4")
|
||||
expect(out).to include("Using bundler 2.3.4")
|
||||
expect(out).not_to include("Installing Bundler 2.3.3 and restarting using that version.")
|
||||
|
||||
expect(lockfile).to eq <<~L
|
||||
GEM
|
||||
remote: #{file_uri_for(gem_repo4)}/
|
||||
specs:
|
||||
rack (1.0)
|
||||
|
||||
PLATFORMS
|
||||
#{lockfile_platforms}
|
||||
|
||||
DEPENDENCIES
|
||||
rack
|
||||
|
||||
BUNDLED WITH
|
||||
2.3.4
|
||||
L
|
||||
|
||||
expect(the_bundle).to include_gems "bundler 2.3.4"
|
||||
end
|
||||
|
||||
expect(the_bundle).to include_gems "rack 1.0"
|
||||
end
|
||||
|
||||
it "errors if the explicit target version does not exist", :realworld do
|
||||
pristine_system_gems "bundler-2.3.3"
|
||||
|
||||
build_repo4 do
|
||||
build_gem "rack", "1.0"
|
||||
end
|
||||
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo4)}"
|
||||
gem "rack"
|
||||
G
|
||||
lockfile lockfile.sub(/(^\s*)#{Bundler::VERSION}($)/, "2.3.3")
|
||||
|
||||
bundle :update, :bundler => "999.999.999", :artifice => "vcr", :raise_on_error => false
|
||||
|
||||
# Only gives a meaningful error message on modern RubyGems.
|
||||
|
||||
if Gem.rubygems_version >= Gem::Version.new("3.3.0.dev")
|
||||
expect(last_command).to be_failure
|
||||
expect(err).to include("The `bundle update --bundler` target version (999.999.999) does not exist")
|
||||
end
|
||||
end
|
||||
|
||||
it "allows updating to development versions if already installed locally" do
|
||||
system_gems "bundler-2.3.0.dev"
|
||||
|
||||
build_repo4 do
|
||||
build_gem "rack", "1.0"
|
||||
end
|
||||
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo4)}"
|
||||
gem "rack"
|
||||
G
|
||||
|
||||
bundle :update, :bundler => "2.3.0.dev"
|
||||
|
||||
# Only updates properly on modern RubyGems.
|
||||
|
||||
if Gem.rubygems_version >= Gem::Version.new("3.3.0.dev")
|
||||
expect(lockfile).to eq <<~L
|
||||
GEM
|
||||
remote: #{file_uri_for(gem_repo4)}/
|
||||
specs:
|
||||
rack (1.0)
|
||||
|
||||
PLATFORMS
|
||||
#{lockfile_platforms}
|
||||
|
||||
DEPENDENCIES
|
||||
rack
|
||||
|
||||
BUNDLED WITH
|
||||
2.3.0.dev
|
||||
L
|
||||
|
||||
expect(out).to include("Using bundler 2.3.0.dev")
|
||||
end
|
||||
end
|
||||
|
||||
it "does not touch the network if not necessary" do
|
||||
system_gems "bundler-2.3.3"
|
||||
|
||||
build_repo4 do
|
||||
build_gem "rack", "1.0"
|
||||
end
|
||||
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo4)}"
|
||||
gem "rack"
|
||||
G
|
||||
|
||||
bundle :update, :bundler => "2.3.3", :raise_on_error => false
|
||||
|
||||
expect(out).not_to include("Fetching gem metadata from https://rubygems.org/")
|
||||
|
||||
# Only updates properly on modern RubyGems.
|
||||
|
||||
if Gem.rubygems_version >= Gem::Version.new("3.3.0.dev")
|
||||
expect(lockfile).to eq <<~L
|
||||
GEM
|
||||
remote: #{file_uri_for(gem_repo4)}/
|
||||
specs:
|
||||
rack (1.0)
|
||||
|
||||
PLATFORMS
|
||||
#{lockfile_platforms}
|
||||
|
||||
DEPENDENCIES
|
||||
rack
|
||||
|
||||
BUNDLED WITH
|
||||
2.3.3
|
||||
L
|
||||
|
||||
expect(out).to include("Using bundler 2.3.3")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -179,7 +179,7 @@ RSpec.describe "bundle install from an existing gemspec" do
|
|||
gemspec :path => '#{tmp.join("foo")}'
|
||||
G
|
||||
|
||||
bundle "update --bundler", :verbose => true
|
||||
bundle "update --bundler", :artifice => "compact_index", :verbose => true
|
||||
expect(the_bundle).to include_gems "foo 1.0", "platform_specific 1.0 JAVA"
|
||||
end
|
||||
|
||||
|
@ -429,13 +429,16 @@ RSpec.describe "bundle install from an existing gemspec" do
|
|||
gemspec
|
||||
G
|
||||
|
||||
simulate_platform("ruby") { bundle "install" }
|
||||
bundle "config set --local force_ruby_platform true"
|
||||
bundle "install"
|
||||
|
||||
simulate_new_machine
|
||||
simulate_platform("jruby") { bundle "install" }
|
||||
end
|
||||
|
||||
context "on ruby" do
|
||||
before do
|
||||
simulate_platform("ruby")
|
||||
bundle "config set --local force_ruby_platform true"
|
||||
bundle :install
|
||||
end
|
||||
|
||||
|
@ -546,7 +549,7 @@ RSpec.describe "bundle install from an existing gemspec" do
|
|||
end
|
||||
|
||||
it "installs the ruby platform gemspec" do
|
||||
simulate_platform "ruby"
|
||||
bundle "config set --local force_ruby_platform true"
|
||||
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
|
@ -557,7 +560,7 @@ RSpec.describe "bundle install from an existing gemspec" do
|
|||
end
|
||||
|
||||
it "installs the ruby platform gemspec and skips dev deps with `without development` configured" do
|
||||
simulate_platform "ruby"
|
||||
bundle "config set --local force_ruby_platform true"
|
||||
|
||||
bundle "config set --local without development"
|
||||
install_gemfile <<-G
|
||||
|
@ -622,4 +625,64 @@ RSpec.describe "bundle install from an existing gemspec" do
|
|||
expect(lockfile).to eq initial_lockfile
|
||||
end
|
||||
end
|
||||
|
||||
context "with multiple locked platforms" do
|
||||
before do
|
||||
build_lib("activeadmin", :path => tmp.join("activeadmin")) do |s|
|
||||
s.version = "2.9.0"
|
||||
s.add_dependency "railties", ">= 5.2", "< 6.2"
|
||||
end
|
||||
|
||||
build_repo4 do
|
||||
build_gem "railties", "6.1.4"
|
||||
|
||||
build_gem "jruby-openssl", "0.10.7" do |s|
|
||||
s.platform = "java"
|
||||
end
|
||||
end
|
||||
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo4)}"
|
||||
gemspec :path => "../activeadmin"
|
||||
gem "jruby-openssl", :platform => :jruby
|
||||
G
|
||||
|
||||
bundle "lock --add-platform java"
|
||||
end
|
||||
|
||||
it "does not remove the platform specific specs from the lockfile when re-resolving due to gemspec changes" do
|
||||
expect(lockfile).to eq <<~L
|
||||
PATH
|
||||
remote: ../activeadmin
|
||||
specs:
|
||||
activeadmin (2.9.0)
|
||||
railties (>= 5.2, < 6.2)
|
||||
|
||||
GEM
|
||||
remote: #{file_uri_for(gem_repo4)}/
|
||||
specs:
|
||||
jruby-openssl (0.10.7-java)
|
||||
railties (6.1.4)
|
||||
|
||||
PLATFORMS
|
||||
#{lockfile_platforms_for(["java"] + local_platforms)}
|
||||
|
||||
DEPENDENCIES
|
||||
activeadmin!
|
||||
jruby-openssl
|
||||
|
||||
BUNDLED WITH
|
||||
#{Bundler::VERSION}
|
||||
L
|
||||
|
||||
gemspec = tmp.join("activeadmin/activeadmin.gemspec")
|
||||
File.write(gemspec, File.read(gemspec).sub(">= 5.2", ">= 6.0"))
|
||||
|
||||
previous_lockfile = lockfile
|
||||
|
||||
bundle "install --local"
|
||||
|
||||
expect(lockfile).to eq(previous_lockfile.sub(">= 5.2", ">= 6.0"))
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -92,9 +92,7 @@ RSpec.describe "bundle install with git sources" do
|
|||
expect(err).to include("The source contains the following gems matching 'foo':\n * foo-1.0")
|
||||
end
|
||||
|
||||
it "complains with version and platform if pinned specs don't exist in the git repo" do
|
||||
simulate_platform "java"
|
||||
|
||||
it "complains with version and platform if pinned specs don't exist in the git repo", :jruby do
|
||||
build_git "only_java" do |s|
|
||||
s.platform = "java"
|
||||
end
|
||||
|
@ -109,9 +107,7 @@ RSpec.describe "bundle install with git sources" do
|
|||
expect(err).to include("The source contains the following gems matching 'only_java':\n * only_java-1.0-java")
|
||||
end
|
||||
|
||||
it "complains with multiple versions and platforms if pinned specs don't exist in the git repo" do
|
||||
simulate_platform "java"
|
||||
|
||||
it "complains with multiple versions and platforms if pinned specs don't exist in the git repo", :jruby do
|
||||
build_git "only_java", "1.0" do |s|
|
||||
s.platform = "java"
|
||||
end
|
||||
|
@ -418,9 +414,6 @@ RSpec.describe "bundle install with git sources" do
|
|||
|
||||
describe "when specifying local override" do
|
||||
it "uses the local repository instead of checking a new one out" do
|
||||
# We don't generate it because we actually don't need it
|
||||
# build_git "rack", "0.8"
|
||||
|
||||
build_git "rack", "0.8", :path => lib_path("local-rack") do |s|
|
||||
s.write "lib/rack.rb", "puts :LOCAL"
|
||||
end
|
||||
|
|
|
@ -86,13 +86,13 @@ RSpec.describe "bundle install across platforms" do
|
|||
expect(the_bundle).to include_gems "nokogiri 1.4.2 JAVA", "weakling 0.0.3"
|
||||
|
||||
simulate_new_machine
|
||||
|
||||
simulate_platform "ruby"
|
||||
bundle "config set --local force_ruby_platform true"
|
||||
bundle "install"
|
||||
|
||||
expect(the_bundle).to include_gems "nokogiri 1.4.2"
|
||||
expect(the_bundle).not_to include_gems "weakling"
|
||||
|
||||
simulate_new_machine
|
||||
simulate_platform "java"
|
||||
bundle "install"
|
||||
|
||||
|
@ -453,7 +453,7 @@ RSpec.describe "bundle install with platform conditionals" do
|
|||
end
|
||||
|
||||
it "does not attempt to install gems from :rbx when using --local" do
|
||||
simulate_platform "ruby"
|
||||
bundle "config set --local force_ruby_platform true"
|
||||
|
||||
gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
|
@ -465,7 +465,7 @@ RSpec.describe "bundle install with platform conditionals" do
|
|||
end
|
||||
|
||||
it "does not attempt to install gems from other rubies when using --local" do
|
||||
simulate_platform "ruby"
|
||||
bundle "config set --local force_ruby_platform true"
|
||||
other_ruby_version_tag = RUBY_VERSION =~ /^1\.8/ ? :ruby_19 : :ruby_18
|
||||
|
||||
gemfile <<-G
|
||||
|
@ -478,7 +478,7 @@ RSpec.describe "bundle install with platform conditionals" do
|
|||
end
|
||||
|
||||
it "does not print a warning when a dependency is unused on a platform different from the current one" do
|
||||
simulate_platform "ruby"
|
||||
bundle "config set --local force_ruby_platform true"
|
||||
|
||||
gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
|
|
|
@ -46,18 +46,16 @@ RSpec.describe "ruby requirement" do
|
|||
it "allows changing the ruby version requirement to something compatible" do
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
ruby ">= 1.0.0"
|
||||
ruby ">= #{RUBY_VERSION[0..2]}.0"
|
||||
gem "rack"
|
||||
G
|
||||
|
||||
allow(Bundler::SharedHelpers).to receive(:find_gemfile).and_return(bundled_app_gemfile)
|
||||
expect(locked_ruby_version).to eq(Bundler::RubyVersion.system)
|
||||
|
||||
simulate_ruby_version "5100"
|
||||
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
ruby ">= 1.0.1"
|
||||
ruby ">= #{RUBY_VERSION}"
|
||||
gem "rack"
|
||||
G
|
||||
|
||||
|
@ -72,19 +70,35 @@ RSpec.describe "ruby requirement" do
|
|||
gem "rack"
|
||||
G
|
||||
|
||||
allow(Bundler::SharedHelpers).to receive(:find_gemfile).and_return(bundled_app_gemfile)
|
||||
expect(locked_ruby_version).to eq(Bundler::RubyVersion.system)
|
||||
lockfile <<~L
|
||||
GEM
|
||||
remote: #{file_uri_for(gem_repo1)}/
|
||||
specs:
|
||||
rack (1.0.0)
|
||||
|
||||
simulate_ruby_version "5100"
|
||||
PLATFORMS
|
||||
#{lockfile_platforms}
|
||||
|
||||
DEPENDENCIES
|
||||
rack
|
||||
|
||||
RUBY VERSION
|
||||
ruby 2.1.4p422
|
||||
|
||||
BUNDLED WITH
|
||||
#{Bundler::VERSION}
|
||||
L
|
||||
|
||||
allow(Bundler::SharedHelpers).to receive(:find_gemfile).and_return(bundled_app_gemfile)
|
||||
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
ruby ">= 5000.0"
|
||||
ruby ">= #{RUBY_VERSION[0..2]}.0"
|
||||
gem "rack"
|
||||
G
|
||||
|
||||
expect(the_bundle).to include_gems "rack 1.0.0"
|
||||
expect(locked_ruby_version.versions).to eq(["5100"])
|
||||
expect(locked_ruby_version).to eq(Bundler::RubyVersion.system)
|
||||
end
|
||||
|
||||
it "allows requirements with trailing whitespace" do
|
||||
|
|
|
@ -1443,4 +1443,57 @@ RSpec.describe "bundle install with gems on multiple sources" do
|
|||
L
|
||||
end
|
||||
end
|
||||
|
||||
context "when default source includes old gems with nil required_rubygems_version" do
|
||||
before do
|
||||
build_repo2 do
|
||||
build_gem "ruport", "1.7.0.3" do |s|
|
||||
s.add_dependency "pdf-writer", "1.1.8"
|
||||
end
|
||||
end
|
||||
|
||||
build_repo gem_repo4 do
|
||||
build_gem "pdf-writer", "1.1.8"
|
||||
end
|
||||
|
||||
path = "#{gem_repo4}/#{Gem::MARSHAL_SPEC_DIR}/pdf-writer-1.1.8.gemspec.rz"
|
||||
spec = Marshal.load(Bundler.rubygems.inflate(File.binread(path)))
|
||||
spec.instance_variable_set(:@required_rubygems_version, nil)
|
||||
File.open(path, "wb") do |f|
|
||||
f.write Gem.deflate(Marshal.dump(spec))
|
||||
end
|
||||
|
||||
gemfile <<~G
|
||||
source "https://localgemserver.test"
|
||||
|
||||
gem "ruport", "= 1.7.0.3", :source => "https://localgemserver.test/extra"
|
||||
G
|
||||
end
|
||||
|
||||
it "handles that fine" do
|
||||
bundle "install", :artifice => "compact_index_extra", :env => { "BUNDLER_SPEC_GEM_REPO" => gem_repo4.to_s }
|
||||
|
||||
expect(lockfile).to eq <<~L
|
||||
GEM
|
||||
remote: https://localgemserver.test/
|
||||
specs:
|
||||
pdf-writer (1.1.8)
|
||||
|
||||
GEM
|
||||
remote: https://localgemserver.test/extra/
|
||||
specs:
|
||||
ruport (1.7.0.3)
|
||||
pdf-writer (= 1.1.8)
|
||||
|
||||
PLATFORMS
|
||||
#{specific_local_platform}
|
||||
|
||||
DEPENDENCIES
|
||||
ruport (= 1.7.0.3)!
|
||||
|
||||
BUNDLED WITH
|
||||
#{Bundler::VERSION}
|
||||
L
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -402,17 +402,6 @@ RSpec.describe "gemcutter's dependency API" do
|
|||
expect(the_bundle).to include_gems "back_deps 1.0"
|
||||
end
|
||||
|
||||
it "uses the endpoint if all sources support it" do
|
||||
gemfile <<-G
|
||||
source "#{source_uri}"
|
||||
|
||||
gem 'foo'
|
||||
G
|
||||
|
||||
bundle :install, :artifice => "endpoint_api_missing"
|
||||
expect(the_bundle).to include_gems "foo 1.0"
|
||||
end
|
||||
|
||||
it "fetches again when more dependencies are found in subsequent sources using deployment mode", :bundler => "< 3" do
|
||||
build_repo2 do
|
||||
build_gem "back_deps" do |s|
|
||||
|
|
|
@ -101,8 +101,6 @@ RSpec.describe "bundle install with install-time dependencies" do
|
|||
end
|
||||
|
||||
it "installs gems with a dependency with no type" do
|
||||
skip "incorrect data check error" if Gem.win_platform?
|
||||
|
||||
build_repo2
|
||||
|
||||
path = "#{gem_repo2}/#{Gem::MARSHAL_SPEC_DIR}/actionpack-2.3.2.gemspec.rz"
|
||||
|
@ -110,7 +108,7 @@ RSpec.describe "bundle install with install-time dependencies" do
|
|||
spec.dependencies.each do |d|
|
||||
d.instance_variable_set(:@type, :fail)
|
||||
end
|
||||
File.open(path, "w") do |f|
|
||||
File.open(path, "wb") do |f|
|
||||
f.write Gem.deflate(Marshal.dump(spec))
|
||||
end
|
||||
|
||||
|
@ -226,6 +224,27 @@ RSpec.describe "bundle install with install-time dependencies" do
|
|||
expect(the_bundle).to include_gems("rack 1.2")
|
||||
end
|
||||
|
||||
it "installs the older version when using servers not implementing the compact index API" do
|
||||
build_repo2 do
|
||||
build_gem "rack", "1.2" do |s|
|
||||
s.executables = "rackup"
|
||||
end
|
||||
|
||||
build_gem "rack", "9001.0.0" do |s|
|
||||
s.required_ruby_version = "> 9000"
|
||||
end
|
||||
end
|
||||
|
||||
install_gemfile <<-G, :artifice => "endpoint", :env => { "BUNDLER_SPEC_GEM_REPO" => gem_repo2.to_s }
|
||||
ruby "#{RUBY_VERSION}"
|
||||
source "http://localgemserver.test/"
|
||||
gem 'rack'
|
||||
G
|
||||
|
||||
expect(out).to_not include("rack-9001.0.0 requires ruby version > 9000")
|
||||
expect(the_bundle).to include_gems("rack 1.2")
|
||||
end
|
||||
|
||||
it "installs the older version under rate limiting conditions" do
|
||||
build_repo4 do
|
||||
build_gem "rack", "9001.0.0" do |s|
|
||||
|
@ -286,8 +305,6 @@ RSpec.describe "bundle install with install-time dependencies" do
|
|||
|
||||
shared_examples_for "ruby version conflicts" do
|
||||
it "raises an error during resolution" do
|
||||
skip "ruby requirement includes platform and it shouldn't" if Gem.win_platform?
|
||||
|
||||
install_gemfile <<-G, :artifice => "compact_index", :env => { "BUNDLER_SPEC_GEM_REPO" => gem_repo2.to_s }, :raise_on_error => false
|
||||
source "http://localgemserver.test/"
|
||||
ruby #{ruby_requirement}
|
||||
|
@ -303,8 +320,6 @@ RSpec.describe "bundle install with install-time dependencies" do
|
|||
|
||||
require_ruby was resolved to 1.0, which depends on
|
||||
Ruby\0 (> 9000)
|
||||
|
||||
Ruby\0 (> 9000), which is required by gem 'require_ruby', is not available in the local ruby installation
|
||||
E
|
||||
expect(err).to end_with(nice_error)
|
||||
end
|
||||
|
@ -343,7 +358,15 @@ RSpec.describe "bundle install with install-time dependencies" do
|
|||
G
|
||||
|
||||
expect(err).to_not include("Gem::InstallError: require_rubygems requires RubyGems version > 9000")
|
||||
expect(err).to include("require_rubygems-1.0 requires rubygems version > 9000, which is incompatible with the current version, #{Gem::VERSION}")
|
||||
nice_error = strip_whitespace(<<-E).strip
|
||||
Bundler found conflicting requirements for the RubyGems\0 version:
|
||||
In Gemfile:
|
||||
RubyGems\0 (= #{Gem::VERSION})
|
||||
|
||||
require_rubygems was resolved to 1.0, which depends on
|
||||
RubyGems\0 (> 9000)
|
||||
E
|
||||
expect(err).to end_with(nice_error)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,18 +1,8 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
RSpec.describe "the lockfile format" do
|
||||
include Bundler::GemHelpers
|
||||
|
||||
before do
|
||||
build_repo2 do
|
||||
# Capistrano did this (at least until version 2.5.10)
|
||||
# RubyGems 2.2 doesn't allow the specifying of a dependency twice
|
||||
# See https://github.com/rubygems/rubygems/commit/03dbac93a3396a80db258d9bc63500333c25bd2f
|
||||
build_gem "double_deps", "1.0", :skip_validation => true do |s|
|
||||
s.add_dependency "net-ssh", ">= 1.0.0"
|
||||
s.add_dependency "net-ssh"
|
||||
end
|
||||
end
|
||||
build_repo2
|
||||
end
|
||||
|
||||
it "generates a simple lockfile for a single source, gem" do
|
||||
|
@ -90,12 +80,8 @@ RSpec.describe "the lockfile format" do
|
|||
G
|
||||
end
|
||||
|
||||
it "does not update the lockfile's bundler version if nothing changed during bundle install, but uses the locked version", :rubygems => ">= 3.3.0.a" do
|
||||
version = "#{Bundler::VERSION.split(".").first}.0.0.a"
|
||||
|
||||
update_repo2 do
|
||||
with_built_bundler(version) {|gem_path| FileUtils.mv(gem_path, gem_repo2("gems")) }
|
||||
end
|
||||
it "does not update the lockfile's bundler version if nothing changed during bundle install, but uses the locked version", :rubygems => ">= 3.3.0.a", :realworld => true do
|
||||
version = "2.3.0"
|
||||
|
||||
lockfile <<-L
|
||||
GEM
|
||||
|
@ -113,7 +99,7 @@ RSpec.describe "the lockfile format" do
|
|||
#{version}
|
||||
L
|
||||
|
||||
install_gemfile <<-G, :verbose => true, :env => { "BUNDLER_SPEC_GEM_SOURCES" => file_uri_for(gem_repo2).to_s }
|
||||
install_gemfile <<-G, :verbose => true, :artifice => "vcr"
|
||||
source "#{file_uri_for(gem_repo2)}"
|
||||
|
||||
gem "rack"
|
||||
|
@ -142,10 +128,6 @@ RSpec.describe "the lockfile format" do
|
|||
it "does not update the lockfile's bundler version if nothing changed during bundle install, and uses the latest version", :rubygems => "< 3.3.0.a" do
|
||||
version = "#{Bundler::VERSION.split(".").first}.0.0.a"
|
||||
|
||||
update_repo2 do
|
||||
with_built_bundler(version) {|gem_path| FileUtils.mv(gem_path, gem_repo2("gems")) }
|
||||
end
|
||||
|
||||
lockfile <<-L
|
||||
GEM
|
||||
remote: #{file_uri_for(gem_repo2)}/
|
||||
|
@ -162,7 +144,7 @@ RSpec.describe "the lockfile format" do
|
|||
#{version}
|
||||
L
|
||||
|
||||
install_gemfile <<-G, :verbose => true, :env => { "BUNDLER_SPEC_GEM_SOURCES" => file_uri_for(gem_repo2).to_s }
|
||||
install_gemfile <<-G, :verbose => true
|
||||
source "#{file_uri_for(gem_repo2)}"
|
||||
|
||||
gem "rack"
|
||||
|
@ -761,6 +743,16 @@ RSpec.describe "the lockfile format" do
|
|||
end
|
||||
|
||||
it "orders dependencies by version" do
|
||||
update_repo2 do
|
||||
# Capistrano did this (at least until version 2.5.10)
|
||||
# RubyGems 2.2 doesn't allow the specifying of a dependency twice
|
||||
# See https://github.com/rubygems/rubygems/commit/03dbac93a3396a80db258d9bc63500333c25bd2f
|
||||
build_gem "double_deps", "1.0", :skip_validation => true do |s|
|
||||
s.add_dependency "net-ssh", ">= 1.0.0"
|
||||
s.add_dependency "net-ssh"
|
||||
end
|
||||
end
|
||||
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo2)}/"
|
||||
gem 'double_deps'
|
||||
|
|
|
@ -17,7 +17,7 @@ RSpec.describe "bundle platform" do
|
|||
|
||||
bundle "platform"
|
||||
expect(out).to eq(<<-G.chomp)
|
||||
Your platform is: #{RUBY_PLATFORM}
|
||||
Your platform is: #{Gem::Platform.local}
|
||||
|
||||
Your app has gems that work on these platforms:
|
||||
#{bundle_platform_platforms_string}
|
||||
|
@ -40,7 +40,7 @@ G
|
|||
|
||||
bundle "platform"
|
||||
expect(out).to eq(<<-G.chomp)
|
||||
Your platform is: #{RUBY_PLATFORM}
|
||||
Your platform is: #{Gem::Platform.local}
|
||||
|
||||
Your app has gems that work on these platforms:
|
||||
#{bundle_platform_platforms_string}
|
||||
|
@ -61,7 +61,7 @@ G
|
|||
|
||||
bundle "platform"
|
||||
expect(out).to eq(<<-G.chomp)
|
||||
Your platform is: #{RUBY_PLATFORM}
|
||||
Your platform is: #{Gem::Platform.local}
|
||||
|
||||
Your app has gems that work on these platforms:
|
||||
#{bundle_platform_platforms_string}
|
||||
|
@ -81,7 +81,7 @@ G
|
|||
|
||||
bundle "platform"
|
||||
expect(out).to eq(<<-G.chomp)
|
||||
Your platform is: #{RUBY_PLATFORM}
|
||||
Your platform is: #{Gem::Platform.local}
|
||||
|
||||
Your app has gems that work on these platforms:
|
||||
#{bundle_platform_platforms_string}
|
||||
|
|
|
@ -309,7 +309,7 @@ RSpec.describe "bundler/inline#gemfile" do
|
|||
end
|
||||
|
||||
it "skips platform warnings" do
|
||||
simulate_platform "ruby"
|
||||
bundle "config set --local force_ruby_platform true"
|
||||
|
||||
script <<-RUBY
|
||||
gemfile(true) do
|
||||
|
|
|
@ -232,6 +232,20 @@ RSpec.describe "Bundler.setup with multi platform stuff" do
|
|||
expect(the_bundle).to include_gems "nokogiri 1.4.2", "platform_specific 1.0 RUBY"
|
||||
end
|
||||
|
||||
it "allows specifying only-ruby-platform even if the lockfile is locked to a specific compatible platform" do
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
gem "nokogiri"
|
||||
gem "platform_specific"
|
||||
G
|
||||
|
||||
bundle "config set force_ruby_platform true"
|
||||
|
||||
bundle "install"
|
||||
|
||||
expect(the_bundle).to include_gems "nokogiri 1.4.2", "platform_specific 1.0 RUBY"
|
||||
end
|
||||
|
||||
it "doesn't pull platform specific gems on truffleruby", :truffleruby do
|
||||
install_gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo1)}"
|
||||
|
|
|
@ -1,15 +1,13 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
RSpec.describe "Self management", :rubygems => ">= 3.3.0.dev" do
|
||||
RSpec.describe "Self management", :rubygems => ">= 3.3.0.dev", :realworld => true do
|
||||
describe "auto switching" do
|
||||
let(:next_minor) do
|
||||
Bundler::VERSION.split(".").map.with_index {|s, i| i == 1 ? s.to_i + 1 : s }[0..2].join(".")
|
||||
let(:previous_minor) do
|
||||
"2.3.0"
|
||||
end
|
||||
|
||||
before do
|
||||
build_repo2 do
|
||||
with_built_bundler(next_minor) {|gem_path| FileUtils.mv(gem_path, gem_repo2("gems")) }
|
||||
end
|
||||
build_repo2
|
||||
|
||||
gemfile <<-G
|
||||
source "#{file_uri_for(gem_repo2)}"
|
||||
|
@ -19,11 +17,11 @@ RSpec.describe "Self management", :rubygems => ">= 3.3.0.dev" do
|
|||
end
|
||||
|
||||
it "installs locked version when using system path and uses it" do
|
||||
lockfile_bundled_with(next_minor)
|
||||
lockfile_bundled_with(previous_minor)
|
||||
|
||||
bundle "config set --local path.system true"
|
||||
bundle "install", :env => { "BUNDLER_SPEC_GEM_SOURCES" => file_uri_for(gem_repo2).to_s }
|
||||
expect(out).to include("Bundler #{Bundler::VERSION} is running, but your lockfile was generated with #{next_minor}. Installing Bundler #{next_minor} and restarting using that version.")
|
||||
bundle "install", :artifice => "vcr"
|
||||
expect(out).to include("Bundler #{Bundler::VERSION} is running, but your lockfile was generated with #{previous_minor}. Installing Bundler #{previous_minor} and restarting using that version.")
|
||||
|
||||
# It uninstalls the older system bundler
|
||||
bundle "clean --force"
|
||||
|
@ -31,21 +29,21 @@ RSpec.describe "Self management", :rubygems => ">= 3.3.0.dev" do
|
|||
|
||||
# App now uses locked version
|
||||
bundle "-v"
|
||||
expect(out).to end_with(next_minor[0] == "2" ? "Bundler version #{next_minor}" : next_minor)
|
||||
expect(out).to end_with(previous_minor[0] == "2" ? "Bundler version #{previous_minor}" : previous_minor)
|
||||
|
||||
# Subsequent installs use the locked version without reinstalling
|
||||
bundle "install --verbose"
|
||||
expect(out).to include("Using bundler #{next_minor}")
|
||||
expect(out).not_to include("Bundler #{Bundler::VERSION} is running, but your lockfile was generated with #{next_minor}. Installing Bundler #{next_minor} and restarting using that version.")
|
||||
expect(out).to include("Using bundler #{previous_minor}")
|
||||
expect(out).not_to include("Bundler #{Bundler::VERSION} is running, but your lockfile was generated with #{previous_minor}. Installing Bundler #{previous_minor} and restarting using that version.")
|
||||
end
|
||||
|
||||
it "installs locked version when using local path and uses it" do
|
||||
lockfile_bundled_with(next_minor)
|
||||
lockfile_bundled_with(previous_minor)
|
||||
|
||||
bundle "config set --local path vendor/bundle"
|
||||
bundle "install", :env => { "BUNDLER_SPEC_GEM_SOURCES" => file_uri_for(gem_repo2).to_s }
|
||||
expect(out).to include("Bundler #{Bundler::VERSION} is running, but your lockfile was generated with #{next_minor}. Installing Bundler #{next_minor} and restarting using that version.")
|
||||
expect(vendored_gems("gems/bundler-#{next_minor}")).to exist
|
||||
bundle "install", :artifice => "vcr"
|
||||
expect(out).to include("Bundler #{Bundler::VERSION} is running, but your lockfile was generated with #{previous_minor}. Installing Bundler #{previous_minor} and restarting using that version.")
|
||||
expect(vendored_gems("gems/bundler-#{previous_minor}")).to exist
|
||||
|
||||
# It does not uninstall the locked bundler
|
||||
bundle "clean"
|
||||
|
@ -53,21 +51,21 @@ RSpec.describe "Self management", :rubygems => ">= 3.3.0.dev" do
|
|||
|
||||
# App now uses locked version
|
||||
bundle "-v"
|
||||
expect(out).to end_with(next_minor[0] == "2" ? "Bundler version #{next_minor}" : next_minor)
|
||||
expect(out).to end_with(previous_minor[0] == "2" ? "Bundler version #{previous_minor}" : previous_minor)
|
||||
|
||||
# Subsequent installs use the locked version without reinstalling
|
||||
bundle "install --verbose"
|
||||
expect(out).to include("Using bundler #{next_minor}")
|
||||
expect(out).not_to include("Bundler #{Bundler::VERSION} is running, but your lockfile was generated with #{next_minor}. Installing Bundler #{next_minor} and restarting using that version.")
|
||||
expect(out).to include("Using bundler #{previous_minor}")
|
||||
expect(out).not_to include("Bundler #{Bundler::VERSION} is running, but your lockfile was generated with #{previous_minor}. Installing Bundler #{previous_minor} and restarting using that version.")
|
||||
end
|
||||
|
||||
it "installs locked version when using deployment option and uses it" do
|
||||
lockfile_bundled_with(next_minor)
|
||||
lockfile_bundled_with(previous_minor)
|
||||
|
||||
bundle "config set --local deployment true"
|
||||
bundle "install", :env => { "BUNDLER_SPEC_GEM_SOURCES" => file_uri_for(gem_repo2).to_s }
|
||||
expect(out).to include("Bundler #{Bundler::VERSION} is running, but your lockfile was generated with #{next_minor}. Installing Bundler #{next_minor} and restarting using that version.")
|
||||
expect(vendored_gems("gems/bundler-#{next_minor}")).to exist
|
||||
bundle "install", :artifice => "vcr"
|
||||
expect(out).to include("Bundler #{Bundler::VERSION} is running, but your lockfile was generated with #{previous_minor}. Installing Bundler #{previous_minor} and restarting using that version.")
|
||||
expect(vendored_gems("gems/bundler-#{previous_minor}")).to exist
|
||||
|
||||
# It does not uninstall the locked bundler
|
||||
bundle "clean"
|
||||
|
@ -75,16 +73,16 @@ RSpec.describe "Self management", :rubygems => ">= 3.3.0.dev" do
|
|||
|
||||
# App now uses locked version
|
||||
bundle "-v"
|
||||
expect(out).to end_with(next_minor[0] == "2" ? "Bundler version #{next_minor}" : next_minor)
|
||||
expect(out).to end_with(previous_minor[0] == "2" ? "Bundler version #{previous_minor}" : previous_minor)
|
||||
|
||||
# Subsequent installs use the locked version without reinstalling
|
||||
bundle "install --verbose"
|
||||
expect(out).to include("Using bundler #{next_minor}")
|
||||
expect(out).not_to include("Bundler #{Bundler::VERSION} is running, but your lockfile was generated with #{next_minor}. Installing Bundler #{next_minor} and restarting using that version.")
|
||||
expect(out).to include("Using bundler #{previous_minor}")
|
||||
expect(out).not_to include("Bundler #{Bundler::VERSION} is running, but your lockfile was generated with #{previous_minor}. Installing Bundler #{previous_minor} and restarting using that version.")
|
||||
end
|
||||
|
||||
it "does not try to install a development version" do
|
||||
lockfile_bundled_with("#{next_minor}.dev")
|
||||
lockfile_bundled_with("#{previous_minor}.dev")
|
||||
|
||||
bundle "install --verbose"
|
||||
expect(out).not_to match(/restarting using that version/)
|
||||
|
@ -93,17 +91,13 @@ RSpec.describe "Self management", :rubygems => ">= 3.3.0.dev" do
|
|||
expect(out).to eq(Bundler::VERSION[0] == "2" ? "Bundler version #{Bundler::VERSION}" : Bundler::VERSION)
|
||||
end
|
||||
|
||||
it "shows a discreet message if locked bundler does not exist, and something more complete in `--verbose` mode" do
|
||||
it "shows a discreet message if locked bundler does not exist" do
|
||||
missing_minor ="#{Bundler::VERSION[0]}.999.999"
|
||||
|
||||
lockfile_bundled_with(missing_minor)
|
||||
|
||||
bundle "install"
|
||||
expect(err).to eq("There was an error installing the locked bundler version (#{missing_minor}), rerun with the `--verbose` flag for more details. Going on using bundler #{Bundler::VERSION}.")
|
||||
|
||||
bundle "install --verbose"
|
||||
expect(err).to include("There was an error installing the locked bundler version (#{missing_minor}), rerun with the `--verbose` flag for more details. Going on using bundler #{Bundler::VERSION}.")
|
||||
expect(err).to include("Gem::UnsatisfiableDependencyError")
|
||||
bundle "install", :artifice => "vcr"
|
||||
expect(err).to eq("Your lockfile is locked to a version of bundler (#{missing_minor}) that doesn't exist at https://rubygems.org/. Going on using #{Bundler::VERSION}")
|
||||
|
||||
bundle "-v"
|
||||
expect(out).to eq(Bundler::VERSION[0] == "2" ? "Bundler version #{Bundler::VERSION}" : Bundler::VERSION)
|
||||
|
|
|
@ -1,18 +0,0 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require_relative "endpoint"
|
||||
|
||||
Artifice.deactivate
|
||||
|
||||
class EndpointApiMissing < Endpoint
|
||||
get "/fetch/actual/gem/:id" do
|
||||
warn params[:id]
|
||||
if params[:id] == "rack-1.0.gemspec.rz"
|
||||
halt 404
|
||||
else
|
||||
File.binread("#{gem_repo2}/quick/Marshal.4.8/#{params[:id]}")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Artifice.activate_with(EndpointApiMissing)
|
|
@ -69,7 +69,7 @@ class BundlerVCRHTTP < Net::HTTP
|
|||
end
|
||||
|
||||
def file_name_for_key(key)
|
||||
key.join("/").gsub(/[\:*?"<>|]/, "-")
|
||||
File.join(*key).gsub(/[\:*?"<>|]/, "-")
|
||||
end
|
||||
|
||||
def request_pair_paths
|
||||
|
|
|
@ -19,16 +19,6 @@ module Gem
|
|||
@local = new(ENV["BUNDLER_SPEC_PLATFORM"])
|
||||
end
|
||||
@platforms = [Gem::Platform::RUBY, Gem::Platform.local]
|
||||
|
||||
if ENV["BUNDLER_SPEC_PLATFORM"] == "ruby"
|
||||
class << self
|
||||
remove_method :finish_resolve
|
||||
|
||||
def finish_resolve
|
||||
[]
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
if ENV["BUNDLER_SPEC_GEM_SOURCES"]
|
||||
|
|
|
@ -88,7 +88,6 @@ module Spec
|
|||
|
||||
requires = options.delete(:requires) || []
|
||||
realworld = RSpec.current_example.metadata[:realworld]
|
||||
options[:verbose] = true if options[:verbose].nil? && realworld
|
||||
|
||||
artifice = options.delete(:artifice) do
|
||||
if realworld
|
||||
|
@ -448,15 +447,6 @@ module Spec
|
|||
ENV["BUNDLER_SPEC_PLATFORM"] = old if block_given?
|
||||
end
|
||||
|
||||
def simulate_ruby_version(version)
|
||||
return if version == RUBY_VERSION
|
||||
old = ENV["BUNDLER_SPEC_RUBY_VERSION"]
|
||||
ENV["BUNDLER_SPEC_RUBY_VERSION"] = version
|
||||
yield if block_given?
|
||||
ensure
|
||||
ENV["BUNDLER_SPEC_RUBY_VERSION"] = old if block_given?
|
||||
end
|
||||
|
||||
def simulate_windows(platform = mswin)
|
||||
simulate_platform platform do
|
||||
simulate_bundler_version_when_missing_prerelease_default_gem_activation do
|
||||
|
|
|
@ -119,7 +119,7 @@ module Spec
|
|||
ENV["BUNDLE_PATH__SYSTEM"] = "true"
|
||||
end
|
||||
|
||||
output = `#{Gem.ruby} #{File.expand_path("support/bundle.rb", Path.spec_dir)} install`
|
||||
output = `#{Gem.ruby} #{File.expand_path("support/bundle.rb", Path.spec_dir)} install --verbose`
|
||||
raise "Error when installing gems in #{gemfile}: #{output}" unless $?.success?
|
||||
ensure
|
||||
if path
|
||||
|
|
|
@ -685,10 +685,10 @@ class Gem::TestCase < Test::Unit::TestCase
|
|||
# Load a YAML string, the psych 3 way
|
||||
|
||||
def load_yaml(yaml)
|
||||
if YAML.respond_to?(:unsafe_load)
|
||||
YAML.unsafe_load(yaml)
|
||||
if Psych.respond_to?(:unsafe_load)
|
||||
Psych.unsafe_load(yaml)
|
||||
else
|
||||
YAML.load(yaml)
|
||||
Psych.load(yaml)
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -696,10 +696,10 @@ class Gem::TestCase < Test::Unit::TestCase
|
|||
# Load a YAML file, the psych 3 way
|
||||
|
||||
def load_yaml_file(file)
|
||||
if YAML.respond_to?(:unsafe_load_file)
|
||||
YAML.unsafe_load_file(file)
|
||||
if Psych.respond_to?(:unsafe_load_file)
|
||||
Psych.unsafe_load_file(file)
|
||||
else
|
||||
YAML.load_file(file)
|
||||
Psych.load_file(file)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -2022,6 +2022,8 @@ You may need to `bundle install` to install missing gems
|
|||
ENV['SOURCE_DATE_EPOCH'] = old_epoch
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def ruby_install_name(name)
|
||||
with_clean_path_to_ruby do
|
||||
orig_RUBY_INSTALL_NAME = RbConfig::CONFIG['ruby_install_name']
|
||||
|
|
|
@ -252,7 +252,7 @@ class TestGemCommandManager < Gem::TestCase
|
|||
Gem::Deprecate.skip_during do
|
||||
@command_manager.process_args %w[query]
|
||||
end
|
||||
assert_equal(//, check_options[:name])
|
||||
assert_nil(check_options[:name])
|
||||
assert_equal :local, check_options[:domain]
|
||||
assert_equal false, check_options[:details]
|
||||
|
||||
|
|
|
@ -157,4 +157,101 @@ class TestGemCommandsFetchCommand < Gem::TestCase
|
|||
assert_path_exist(File.join(@tempdir, a1.file_name),
|
||||
"#{a1.full_name} not fetched")
|
||||
end
|
||||
|
||||
def test_execute_version_specified_by_colon
|
||||
specs = spec_fetcher do |fetcher|
|
||||
fetcher.gem 'a', 1
|
||||
end
|
||||
|
||||
@cmd.options[:args] = %w[a:1]
|
||||
|
||||
use_ui @ui do
|
||||
Dir.chdir @tempdir do
|
||||
@cmd.execute
|
||||
end
|
||||
end
|
||||
|
||||
a1 = specs['a-1']
|
||||
|
||||
assert_path_exist(File.join(@tempdir, a1.file_name),
|
||||
"#{a1.full_name} not fetched")
|
||||
end
|
||||
|
||||
def test_execute_two_version
|
||||
@cmd.options[:args] = %w[a b]
|
||||
@cmd.options[:version] = Gem::Requirement.new '1'
|
||||
|
||||
use_ui @ui do
|
||||
assert_raise Gem::MockGemUi::TermError, @ui.error do
|
||||
@cmd.execute
|
||||
end
|
||||
end
|
||||
|
||||
msg = "ERROR: Can't use --version with multiple gems. You can specify multiple gems with" \
|
||||
" version requirements using `gem fetch 'my_gem:1.0.0' 'my_other_gem:~>2.0.0'`"
|
||||
|
||||
assert_empty @ui.output
|
||||
assert_equal msg, @ui.error.chomp
|
||||
end
|
||||
|
||||
def test_execute_two_version_specified_by_colon
|
||||
specs = spec_fetcher do |fetcher|
|
||||
fetcher.gem 'a', 1
|
||||
fetcher.gem 'b', 1
|
||||
end
|
||||
|
||||
@cmd.options[:args] = %w[a:1 b:1]
|
||||
|
||||
use_ui @ui do
|
||||
Dir.chdir @tempdir do
|
||||
@cmd.execute
|
||||
end
|
||||
end
|
||||
|
||||
a1 = specs['a-1']
|
||||
b1 = specs['b-1']
|
||||
|
||||
assert_path_exist(File.join(@tempdir, a1.file_name),
|
||||
"#{a1.full_name} not fetched")
|
||||
assert_path_exist(File.join(@tempdir, b1.file_name),
|
||||
"#{b1.full_name} not fetched")
|
||||
end
|
||||
|
||||
def test_execute_version_nonexistent
|
||||
spec_fetcher do |fetcher|
|
||||
fetcher.spec 'foo', 1
|
||||
end
|
||||
|
||||
@cmd.options[:args] = %w[foo:2]
|
||||
|
||||
use_ui @ui do
|
||||
@cmd.execute
|
||||
end
|
||||
|
||||
expected = <<-EXPECTED
|
||||
ERROR: Could not find a valid gem 'foo' (2) in any repository
|
||||
ERROR: Possible alternatives: foo
|
||||
EXPECTED
|
||||
|
||||
assert_equal expected, @ui.error
|
||||
end
|
||||
|
||||
def test_execute_nonexistent_hint_disabled
|
||||
spec_fetcher do |fetcher|
|
||||
fetcher.spec 'foo', 1
|
||||
end
|
||||
|
||||
@cmd.options[:args] = %w[foo:2]
|
||||
@cmd.options[:suggest_alternate] = false
|
||||
|
||||
use_ui @ui do
|
||||
@cmd.execute
|
||||
end
|
||||
|
||||
expected = <<-EXPECTED
|
||||
ERROR: Could not find a valid gem 'foo' (2) in any repository
|
||||
EXPECTED
|
||||
|
||||
assert_equal expected, @ui.error
|
||||
end
|
||||
end
|
||||
|
|
|
@ -277,6 +277,22 @@ ERROR: Could not find a valid gem 'bar' (= 0.5) (required by 'foo' (>= 0)) in a
|
|||
assert_match(/ould not find a valid gem 'nonexistent'/, @ui.error)
|
||||
end
|
||||
|
||||
def test_execute_nonexistent_force
|
||||
spec_fetcher
|
||||
|
||||
@cmd.options[:args] = %w[nonexistent]
|
||||
@cmd.options[:force] = true
|
||||
|
||||
use_ui @ui do
|
||||
e = assert_raise Gem::MockGemUi::TermError do
|
||||
@cmd.execute
|
||||
end
|
||||
assert_equal 2, e.exit_code
|
||||
end
|
||||
|
||||
assert_match(/ould not find a valid gem 'nonexistent'/, @ui.error)
|
||||
end
|
||||
|
||||
def test_execute_dependency_nonexistent
|
||||
spec_fetcher do |fetcher|
|
||||
fetcher.spec 'foo', 2, 'bar' => '0.5'
|
||||
|
|
|
@ -106,6 +106,31 @@ class TestGemCommandsUpdateCommand < Gem::TestCase
|
|||
assert_empty out
|
||||
end
|
||||
|
||||
def test_execute_system_when_latest_does_not_support_your_ruby
|
||||
spec_fetcher do |fetcher|
|
||||
fetcher.download 'rubygems-update', 9 do |s|
|
||||
s.files = %w[setup.rb]
|
||||
s.required_ruby_version = '> 9'
|
||||
end
|
||||
end
|
||||
|
||||
@cmd.options[:args] = []
|
||||
@cmd.options[:system] = true
|
||||
|
||||
use_ui @ui do
|
||||
@cmd.execute
|
||||
end
|
||||
|
||||
out = @ui.output.split "\n"
|
||||
assert_equal "Updating rubygems-update", out.shift
|
||||
assert_empty out
|
||||
|
||||
err = @ui.error.split "\n"
|
||||
assert_equal "ERROR: Error installing rubygems-update:", err.shift
|
||||
assert_equal "\trubygems-update-9 requires Ruby version > 9. The current ruby version is #{Gem.ruby_version}.", err.shift
|
||||
assert_empty err
|
||||
end
|
||||
|
||||
def test_execute_system_multiple
|
||||
spec_fetcher do |fetcher|
|
||||
fetcher.download 'rubygems-update', 8 do |s|
|
||||
|
@ -132,6 +157,40 @@ class TestGemCommandsUpdateCommand < Gem::TestCase
|
|||
assert_empty out
|
||||
end
|
||||
|
||||
def test_execute_system_update_installed
|
||||
spec_fetcher do |fetcher|
|
||||
fetcher.download 'rubygems-update', 8 do |s|
|
||||
s.files = %w[setup.rb]
|
||||
end
|
||||
end
|
||||
|
||||
@cmd.options[:args] = []
|
||||
@cmd.options[:system] = true
|
||||
|
||||
@cmd.execute
|
||||
|
||||
spec_fetcher do |fetcher|
|
||||
fetcher.download 'rubygems-update', 9 do |s|
|
||||
s.files = %w[setup.rb]
|
||||
end
|
||||
end
|
||||
|
||||
@cmd = Gem::Commands::UpdateCommand.new
|
||||
@cmd.options[:args] = []
|
||||
@cmd.options[:system] = true
|
||||
|
||||
use_ui @ui do
|
||||
@cmd.execute
|
||||
end
|
||||
|
||||
out = @ui.output.split "\n"
|
||||
assert_equal "Updating rubygems-update", out.shift
|
||||
assert_equal "Installing RubyGems 9", out.shift
|
||||
assert_equal "RubyGems system software updated", out.shift
|
||||
|
||||
assert_empty out
|
||||
end
|
||||
|
||||
def test_execute_system_specific
|
||||
spec_fetcher do |fetcher|
|
||||
fetcher.download 'rubygems-update', 8 do |s|
|
||||
|
|
|
@ -18,6 +18,7 @@ class TestGemInstaller < Gem::InstallerTestCase
|
|||
end
|
||||
|
||||
def test_app_script_text
|
||||
load_relative "no" do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, ''
|
||||
|
@ -57,6 +58,7 @@ end
|
|||
wrapper = installer.app_script_text 'executable'
|
||||
assert_equal expected, wrapper
|
||||
end
|
||||
end
|
||||
|
||||
def test_check_executable_overwrite
|
||||
installer = setup_base_installer
|
||||
|
@ -724,6 +726,7 @@ gem 'other', version
|
|||
def test_generate_bin_uses_default_shebang
|
||||
pend "Symlinks not supported or not enabled" unless symlink_supported?
|
||||
|
||||
load_relative 'no' do
|
||||
installer = setup_base_installer
|
||||
|
||||
installer.wrappers = true
|
||||
|
@ -736,6 +739,7 @@ gem 'other', version
|
|||
assert_match(/\A#!/, shebang_line)
|
||||
assert_match(/#{default_shebang}/, shebang_line)
|
||||
end
|
||||
end
|
||||
|
||||
def test_generate_bin_with_dangling_symlink
|
||||
gem_with_dangling_symlink = File.expand_path("packages/ascii_binder-0.1.10.1.gem", __dir__)
|
||||
|
@ -1804,6 +1808,7 @@ gem 'other', version
|
|||
end
|
||||
|
||||
def test_shebang
|
||||
load_relative "no" do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/usr/bin/ruby"
|
||||
|
@ -1812,6 +1817,7 @@ gem 'other', version
|
|||
|
||||
assert_equal "#!#{Gem.ruby}", shebang
|
||||
end
|
||||
end
|
||||
|
||||
def test_process_options
|
||||
installer = setup_base_installer
|
||||
|
@ -1844,6 +1850,7 @@ gem 'other', version
|
|||
end
|
||||
|
||||
def test_shebang_arguments
|
||||
load_relative 'no' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/usr/bin/ruby -ws"
|
||||
|
@ -1852,8 +1859,25 @@ gem 'other', version
|
|||
|
||||
assert_equal "#!#{Gem.ruby} -ws", shebang
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_arguments_with_load_relative
|
||||
load_relative 'yes' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/usr/bin/ruby -ws"
|
||||
|
||||
shebang = installer.shebang 'executable'
|
||||
|
||||
shebang_lines = shebang.split "\n"
|
||||
|
||||
assert_equal "#!/bin/sh", shebang_lines.shift
|
||||
assert_includes shebang_lines, "#!#{Gem.ruby} -ws"
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_empty
|
||||
load_relative 'no' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, ''
|
||||
|
@ -1861,8 +1885,10 @@ gem 'other', version
|
|||
shebang = installer.shebang 'executable'
|
||||
assert_equal "#!#{Gem.ruby}", shebang
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_env
|
||||
load_relative 'no' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/usr/bin/env ruby"
|
||||
|
@ -1871,8 +1897,10 @@ gem 'other', version
|
|||
|
||||
assert_equal "#!#{Gem.ruby}", shebang
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_env_arguments
|
||||
load_relative 'no' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/usr/bin/env ruby -ws"
|
||||
|
@ -1881,6 +1909,22 @@ gem 'other', version
|
|||
|
||||
assert_equal "#!#{Gem.ruby} -ws", shebang
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_env_arguments_with_load_relative
|
||||
load_relative 'yes' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/usr/bin/env ruby -ws"
|
||||
|
||||
shebang = installer.shebang 'executable'
|
||||
|
||||
shebang_lines = shebang.split "\n"
|
||||
|
||||
assert_equal "#!/bin/sh", shebang_lines.shift
|
||||
assert_includes shebang_lines, "#!#{Gem.ruby} -ws"
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_env_shebang
|
||||
installer = setup_base_installer
|
||||
|
@ -1897,6 +1941,7 @@ gem 'other', version
|
|||
end
|
||||
|
||||
def test_shebang_nested
|
||||
load_relative 'no' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/opt/local/ruby/bin/ruby"
|
||||
|
@ -1905,8 +1950,10 @@ gem 'other', version
|
|||
|
||||
assert_equal "#!#{Gem.ruby}", shebang
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_nested_arguments
|
||||
load_relative 'no' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/opt/local/ruby/bin/ruby -ws"
|
||||
|
@ -1915,8 +1962,25 @@ gem 'other', version
|
|||
|
||||
assert_equal "#!#{Gem.ruby} -ws", shebang
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_nested_arguments_with_load_relative
|
||||
load_relative 'yes' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/opt/local/ruby/bin/ruby -ws"
|
||||
|
||||
shebang = installer.shebang 'executable'
|
||||
|
||||
shebang_lines = shebang.split "\n"
|
||||
|
||||
assert_equal "#!/bin/sh", shebang_lines.shift
|
||||
assert_includes shebang_lines, "#!#{Gem.ruby} -ws"
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_version
|
||||
load_relative 'no' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/usr/bin/ruby18"
|
||||
|
@ -1925,8 +1989,10 @@ gem 'other', version
|
|||
|
||||
assert_equal "#!#{Gem.ruby}", shebang
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_version_arguments
|
||||
load_relative 'no' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/usr/bin/ruby18 -ws"
|
||||
|
@ -1935,8 +2001,25 @@ gem 'other', version
|
|||
|
||||
assert_equal "#!#{Gem.ruby} -ws", shebang
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_version_arguments_with_load_relative
|
||||
load_relative 'yes' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/usr/bin/ruby18 -ws"
|
||||
|
||||
shebang = installer.shebang 'executable'
|
||||
|
||||
shebang_lines = shebang.split "\n"
|
||||
|
||||
assert_equal "#!/bin/sh", shebang_lines.shift
|
||||
assert_includes shebang_lines, "#!#{Gem.ruby} -ws"
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_version_env
|
||||
load_relative 'no' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/usr/bin/env ruby18"
|
||||
|
@ -1945,8 +2028,10 @@ gem 'other', version
|
|||
|
||||
assert_equal "#!#{Gem.ruby}", shebang
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_version_env_arguments
|
||||
load_relative 'no' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/usr/bin/env ruby18 -ws"
|
||||
|
@ -1955,6 +2040,22 @@ gem 'other', version
|
|||
|
||||
assert_equal "#!#{Gem.ruby} -ws", shebang
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_version_env_arguments_with_load_relative
|
||||
load_relative 'yes' do
|
||||
installer = setup_base_installer
|
||||
|
||||
util_make_exec @spec, "#!/usr/bin/env ruby18 -ws"
|
||||
|
||||
shebang = installer.shebang 'executable'
|
||||
|
||||
shebang_lines = shebang.split "\n"
|
||||
|
||||
assert_equal "#!/bin/sh", shebang_lines.shift
|
||||
assert_includes shebang_lines, "#!#{Gem.ruby} -ws"
|
||||
end
|
||||
end
|
||||
|
||||
def test_shebang_custom
|
||||
installer = setup_base_installer
|
||||
|
@ -2259,6 +2360,8 @@ gem 'other', version
|
|||
assert_kind_of(String, installer.gem)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def util_execless
|
||||
@spec = util_spec 'z'
|
||||
util_build_gem @spec
|
||||
|
@ -2281,4 +2384,13 @@ gem 'other', version
|
|||
def mask
|
||||
0100755
|
||||
end
|
||||
|
||||
def load_relative(value)
|
||||
orig_LIBRUBY_RELATIVE = RbConfig::CONFIG['LIBRUBY_RELATIVE']
|
||||
RbConfig::CONFIG['LIBRUBY_RELATIVE'] = value
|
||||
|
||||
yield
|
||||
ensure
|
||||
RbConfig::CONFIG['LIBRUBY_RELATIVE'] = orig_LIBRUBY_RELATIVE
|
||||
end
|
||||
end
|
||||
|
|
|
@ -822,7 +822,7 @@ class TestGemPackage < Gem::Package::TarTestCase
|
|||
}
|
||||
tar.add_file 'checksums.yaml.gz', 0444 do |io|
|
||||
Zlib::GzipWriter.wrap io do |gz_io|
|
||||
gz_io.write YAML.dump bogus_checksums
|
||||
gz_io.write Psych.dump bogus_checksums
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -868,7 +868,7 @@ class TestGemPackage < Gem::Package::TarTestCase
|
|||
|
||||
tar.add_file 'checksums.yaml.gz', 0444 do |io|
|
||||
Zlib::GzipWriter.wrap io do |gz_io|
|
||||
gz_io.write YAML.dump checksums
|
||||
gz_io.write Psych.dump checksums
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ require 'timeout'
|
|||
|
||||
class TestGemStreamUI < Gem::TestCase
|
||||
# increase timeout with MJIT for --jit-wait testing
|
||||
mjit_enabled = defined?(RubyVM::MJIT) ? RubyVM::MJIT.enabled? : defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled?
|
||||
mjit_enabled = defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled?
|
||||
SHORT_TIMEOUT = (RUBY_ENGINE == "ruby" && !mjit_enabled) ? 0.1 : 1.0
|
||||
|
||||
module IsTty
|
||||
|
|
|
@ -180,22 +180,6 @@ class TestStubSpecification < Gem::TestCase
|
|||
assert bar.to_spec
|
||||
end
|
||||
|
||||
def test_to_spec_activated
|
||||
assert @foo.to_spec.is_a?(Gem::Specification)
|
||||
assert_equal "foo", @foo.to_spec.name
|
||||
refute @foo.to_spec.instance_variable_get :@ignored
|
||||
end
|
||||
|
||||
def test_to_spec_missing_extensions
|
||||
stub = stub_with_extension
|
||||
|
||||
capture_output do
|
||||
stub.contains_requirable_file? 'nonexistent'
|
||||
end
|
||||
|
||||
assert stub.to_spec.instance_variable_get :@ignored
|
||||
end
|
||||
|
||||
def stub_with_version
|
||||
spec = File.join @gemhome, 'specifications', 'stub_e-2.gemspec'
|
||||
File.open spec, 'w' do |io|
|
||||
|
|
|
@ -154,6 +154,10 @@ class TestGemVersion < Gem::TestCase
|
|||
assert_equal(-1, v("5.a") <=> v("5.0.0.rc2"))
|
||||
assert_equal(1, v("5.x") <=> v("5.0.0.rc2"))
|
||||
|
||||
assert_equal(0, v("1.9.3") <=> "1.9.3")
|
||||
assert_equal(1, v("1.9.3") <=> "1.9.2.99")
|
||||
assert_equal(-1, v("1.9.3") <=> "1.9.3.1")
|
||||
|
||||
assert_nil v("1.0") <=> "whatever"
|
||||
end
|
||||
|
||||
|
|
24
tool/bundler/dev_gems.rb
Normal file
24
tool/bundler/dev_gems.rb
Normal file
|
@ -0,0 +1,24 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "rdoc", "6.2.0" # 6.2.1 is required > Ruby 2.3
|
||||
gem "test-unit", "~> 3.0"
|
||||
gem "rake", "~> 13.0"
|
||||
|
||||
group :lint do
|
||||
gem "rubocop", "~> 0.80.1"
|
||||
gem "rubocop-performance", "~> 1.5.2"
|
||||
end
|
||||
|
||||
gem "webrick", "~> 1.6"
|
||||
gem "parallel_tests", "~> 2.29"
|
||||
gem "parallel", "1.19.2" # 1.20+ is required > Ruby 2.3
|
||||
gem "rspec-core", "~> 3.8"
|
||||
gem "rspec-expectations", "~> 3.8"
|
||||
gem "rspec-mocks", "~> 3.8"
|
||||
gem "uri", "~> 0.10.1"
|
||||
|
||||
group :doc do
|
||||
gem "ronn", "~> 0.7.3", :platform => :ruby
|
||||
end
|
73
tool/bundler/dev_gems.rb.lock
Normal file
73
tool/bundler/dev_gems.rb.lock
Normal file
|
@ -0,0 +1,73 @@
|
|||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
ast (2.4.2)
|
||||
diff-lcs (1.5.0)
|
||||
hpricot (0.8.6)
|
||||
jaro_winkler (1.5.4)
|
||||
jaro_winkler (1.5.4-java)
|
||||
mustache (1.1.1)
|
||||
parallel (1.19.2)
|
||||
parallel_tests (2.32.0)
|
||||
parallel
|
||||
parser (3.1.0.0)
|
||||
ast (~> 2.4.1)
|
||||
power_assert (2.0.1)
|
||||
rainbow (3.1.1)
|
||||
rdiscount (2.2.0.2)
|
||||
rdoc (6.2.0)
|
||||
rexml (3.2.5)
|
||||
ronn (0.7.3)
|
||||
hpricot (>= 0.8.2)
|
||||
mustache (>= 0.7.0)
|
||||
rdiscount (>= 1.5.8)
|
||||
rspec-core (3.10.1)
|
||||
rspec-support (~> 3.10.0)
|
||||
rspec-expectations (3.10.1)
|
||||
diff-lcs (>= 1.2.0, < 2.0)
|
||||
rspec-support (~> 3.10.0)
|
||||
rspec-mocks (3.10.2)
|
||||
diff-lcs (>= 1.2.0, < 2.0)
|
||||
rspec-support (~> 3.10.0)
|
||||
rspec-support (3.10.3)
|
||||
rubocop (0.80.1)
|
||||
jaro_winkler (~> 1.5.1)
|
||||
parallel (~> 1.10)
|
||||
parser (>= 2.7.0.1)
|
||||
rainbow (>= 2.2.2, < 4.0)
|
||||
rexml
|
||||
ruby-progressbar (~> 1.7)
|
||||
unicode-display_width (>= 1.4.0, < 1.7)
|
||||
rubocop-performance (1.5.2)
|
||||
rubocop (>= 0.71.0)
|
||||
ruby-progressbar (1.11.0)
|
||||
test-unit (3.5.3)
|
||||
power_assert
|
||||
unicode-display_width (1.6.1)
|
||||
uri (0.10.1)
|
||||
webrick (1.7.0)
|
||||
|
||||
PLATFORMS
|
||||
java
|
||||
ruby
|
||||
universal-java-11
|
||||
x64-mingw32
|
||||
x86_64-darwin-20
|
||||
x86_64-linux
|
||||
|
||||
DEPENDENCIES
|
||||
parallel (= 1.19.2)
|
||||
parallel_tests (~> 2.29)
|
||||
rdoc (= 6.2.0)
|
||||
ronn (~> 0.7.3)
|
||||
rspec-core (~> 3.8)
|
||||
rspec-expectations (~> 3.8)
|
||||
rspec-mocks (~> 3.8)
|
||||
rubocop (~> 0.80.1)
|
||||
rubocop-performance (~> 1.5.2)
|
||||
test-unit (~> 3.0)
|
||||
uri (~> 0.10.1)
|
||||
webrick (~> 1.6)
|
||||
|
||||
BUNDLED WITH
|
||||
2.3.6
|
|
@ -2,17 +2,17 @@ GEM
|
|||
remote: https://rubygems.org/
|
||||
specs:
|
||||
ast (2.4.2)
|
||||
diff-lcs (1.4.4)
|
||||
minitest (5.14.4)
|
||||
diff-lcs (1.5.0)
|
||||
minitest (5.15.0)
|
||||
parallel (1.21.0)
|
||||
parser (3.0.2.0)
|
||||
parser (3.1.0.0)
|
||||
ast (~> 2.4.1)
|
||||
power_assert (2.0.1)
|
||||
rainbow (3.0.0)
|
||||
rainbow (3.1.1)
|
||||
rake (13.0.6)
|
||||
rake-compiler (1.1.1)
|
||||
rake-compiler (1.1.7)
|
||||
rake
|
||||
regexp_parser (2.1.1)
|
||||
regexp_parser (2.2.0)
|
||||
rexml (3.2.5)
|
||||
rspec (3.10.0)
|
||||
rspec-core (~> 3.10.0)
|
||||
|
@ -27,19 +27,19 @@ GEM
|
|||
diff-lcs (>= 1.2.0, < 2.0)
|
||||
rspec-support (~> 3.10.0)
|
||||
rspec-support (3.10.3)
|
||||
rubocop (1.23.0)
|
||||
rubocop (1.24.1)
|
||||
parallel (~> 1.10)
|
||||
parser (>= 3.0.0.0)
|
||||
rainbow (>= 2.2.2, < 4.0)
|
||||
regexp_parser (>= 1.8, < 3.0)
|
||||
rexml
|
||||
rubocop-ast (>= 1.12.0, < 2.0)
|
||||
rubocop-ast (>= 1.15.1, < 2.0)
|
||||
ruby-progressbar (~> 1.7)
|
||||
unicode-display_width (>= 1.4.0, < 3.0)
|
||||
rubocop-ast (1.13.0)
|
||||
rubocop-ast (1.15.1)
|
||||
parser (>= 3.0.1.1)
|
||||
ruby-progressbar (1.11.0)
|
||||
test-unit (3.5.1)
|
||||
test-unit (3.5.3)
|
||||
power_assert
|
||||
unicode-display_width (2.1.0)
|
||||
|
||||
|
@ -60,4 +60,4 @@ DEPENDENCIES
|
|||
test-unit
|
||||
|
||||
BUNDLED WITH
|
||||
2.3.3
|
||||
2.3.6
|
||||
|
|
|
@ -2,17 +2,17 @@ GEM
|
|||
remote: https://rubygems.org/
|
||||
specs:
|
||||
ast (2.4.2)
|
||||
diff-lcs (1.4.4)
|
||||
minitest (5.14.4)
|
||||
diff-lcs (1.5.0)
|
||||
minitest (5.15.0)
|
||||
parallel (1.21.0)
|
||||
parser (3.0.2.0)
|
||||
parser (3.1.0.0)
|
||||
ast (~> 2.4.1)
|
||||
power_assert (2.0.1)
|
||||
rainbow (3.0.0)
|
||||
rainbow (3.1.1)
|
||||
rake (13.0.6)
|
||||
rake-compiler (1.1.1)
|
||||
rake-compiler (1.1.7)
|
||||
rake
|
||||
regexp_parser (2.1.1)
|
||||
regexp_parser (2.2.0)
|
||||
rexml (3.2.5)
|
||||
rspec (3.10.0)
|
||||
rspec-core (~> 3.10.0)
|
||||
|
@ -27,25 +27,25 @@ GEM
|
|||
diff-lcs (>= 1.2.0, < 2.0)
|
||||
rspec-support (~> 3.10.0)
|
||||
rspec-support (3.10.3)
|
||||
rubocop (1.22.3)
|
||||
rubocop (1.24.1)
|
||||
parallel (~> 1.10)
|
||||
parser (>= 3.0.0.0)
|
||||
rainbow (>= 2.2.2, < 4.0)
|
||||
regexp_parser (>= 1.8, < 3.0)
|
||||
rexml
|
||||
rubocop-ast (>= 1.12.0, < 2.0)
|
||||
rubocop-ast (>= 1.15.1, < 2.0)
|
||||
ruby-progressbar (~> 1.7)
|
||||
unicode-display_width (>= 1.4.0, < 3.0)
|
||||
rubocop-ast (1.13.0)
|
||||
rubocop-ast (1.15.1)
|
||||
parser (>= 3.0.1.1)
|
||||
rubocop-performance (1.11.5)
|
||||
rubocop-performance (1.13.1)
|
||||
rubocop (>= 1.7.0, < 2.0)
|
||||
rubocop-ast (>= 0.4.0)
|
||||
ruby-progressbar (1.11.0)
|
||||
standard (1.4.0)
|
||||
rubocop (= 1.22.3)
|
||||
rubocop-performance (= 1.11.5)
|
||||
test-unit (3.5.1)
|
||||
standard (1.6.0)
|
||||
rubocop (= 1.24.1)
|
||||
rubocop-performance (= 1.13.1)
|
||||
test-unit (3.5.3)
|
||||
power_assert
|
||||
unicode-display_width (2.1.0)
|
||||
|
||||
|
@ -66,4 +66,4 @@ DEPENDENCIES
|
|||
test-unit
|
||||
|
||||
BUNDLED WITH
|
||||
2.3.3
|
||||
2.3.6
|
||||
|
|
|
@ -41,4 +41,4 @@ DEPENDENCIES
|
|||
webrick (= 1.7.0)
|
||||
|
||||
BUNDLED WITH
|
||||
2.3.3
|
||||
2.3.6
|
||||
|
|
|
@ -101,6 +101,7 @@ def sync_default_gems(gem)
|
|||
File.write("lib/bundler/bundler.gemspec", gemspec_content)
|
||||
|
||||
cp_r("#{upstream}/bundler/spec", "spec/bundler")
|
||||
cp_r(Dir.glob("#{upstream}/bundler/tool/bundler/dev_gems*"), "tool/bundler")
|
||||
cp_r(Dir.glob("#{upstream}/bundler/tool/bundler/test_gems*"), "tool/bundler")
|
||||
cp_r(Dir.glob("#{upstream}/bundler/tool/bundler/rubocop_gems*"), "tool/bundler")
|
||||
cp_r(Dir.glob("#{upstream}/bundler/tool/bundler/standard_gems*"), "tool/bundler")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue