From c5f7c2b92cc38f88e765913e429b90a120667660 Mon Sep 17 00:00:00 2001 From: Thomas Thomassen Date: Wed, 8 Feb 2023 13:23:44 +0100 Subject: [PATCH] Output the local path the gem is installed from. --- src/testup/gem_helper.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/src/testup/gem_helper.rb b/src/testup/gem_helper.rb index 847dee5..79eccfd 100644 --- a/src/testup/gem_helper.rb +++ b/src/testup/gem_helper.rb @@ -57,6 +57,7 @@ def self.install(gem_name, version = Gem::Requirement.default) local_path = self.find_local_copy(gem_name, version) if local_path puts '> Installing from local copy...' + puts "> #{local_path}" Gem.install(local_path) else puts '> Installing from Ruby Gems...'