From 6bd79e53cd7dcfa17b77b1b080ded3fc577221bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Tue, 8 Oct 2024 12:34:55 +0200 Subject: [PATCH] [rubygems/rubygems] Pass `--verbose` to realworld gem installation In case it gives us some useful debugging output when it fails. https://github.com/rubygems/rubygems/commit/d781416483 --- spec/bundler/support/helpers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/bundler/support/helpers.rb b/spec/bundler/support/helpers.rb index 32e32c0a75..abd162bc35 100644 --- a/spec/bundler/support/helpers.rb +++ b/spec/bundler/support/helpers.rb @@ -389,7 +389,7 @@ module Spec path = opts.fetch(:path, system_gem_path) gems.each do |gem| - gem_command "install --no-document --install-dir #{path} #{gem}" + gem_command "install --no-document --verbose --install-dir #{path} #{gem}" end end