Sychronize with rubygems/rubygems repo

This commit is contained in:
David Rodríguez 2024-05-31 17:30:26 +02:00 committed by Koichi Sasada
parent 89486c79bb
commit 10c256f98f
5 changed files with 27 additions and 14 deletions

View file

@ -148,7 +148,7 @@ extensions will be restored.
end
unless spec.extensions.empty? || options[:extensions] || options[:only_executables] || options[:only_plugins]
say "Skipped #{spec.full_name}, it needs to compile an extension"
say "Skipped #{spec.full_name_with_location}, it needs to compile an extension"
next
end
@ -157,7 +157,7 @@ extensions will be restored.
unless File.exist?(gem) || options[:only_executables] || options[:only_plugins]
require_relative "../remote_fetcher"
say "Cached gem for #{spec.full_name} not found, attempting to fetch..."
say "Cached gem for #{spec.full_name_with_location} not found, attempting to fetch..."
dep = Gem::Dependency.new spec.name, spec.version
found, _ = Gem::SpecFetcher.fetcher.spec_for_dependency dep
@ -201,7 +201,7 @@ extensions will be restored.
installer.install
end
say "Restored #{spec.full_name}"
say "Restored #{spec.full_name_with_location}"
end
end
end