summaryrefslogtreecommitdiff
path: root/spec/bundler/support/helpers.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-05-30 20:25:29 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-05-30 21:50:07 +0900
commit4bbeed61346d6016e2d72818e8068bedcb9f006d (patch)
treeddf1b23eb0e63a47efa8cc1fc0b72652e3dac354 /spec/bundler/support/helpers.rb
parent30b960ba345fd462f98db204f47bba66819d9884 (diff)
Merge RubyGems/Bundler master from 4076391fce5847689bf2ec402b17133fe4e32285
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/7873
Diffstat (limited to 'spec/bundler/support/helpers.rb')
-rw-r--r--spec/bundler/support/helpers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/support/helpers.rb b/spec/bundler/support/helpers.rb
index 9bfa1458c6..7b8c56b6ad 100644
--- a/spec/bundler/support/helpers.rb
+++ b/spec/bundler/support/helpers.rb
@@ -302,7 +302,7 @@ module Spec
def install_gem(path, default = false)
raise "OMG `#{path}` does not exist!" unless File.exist?(path)
- args = "--no-document --ignore-dependencies"
+ args = "--no-document --ignore-dependencies --verbose --local"
args += " --default --install-dir #{system_gem_path}" if default
gem_command "install #{args} '#{path}'"