aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/bundler/cli.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb
index f906796d..2544641f 100644
--- a/lib/bundler/cli.rb
+++ b/lib/bundler/cli.rb
@@ -328,8 +328,10 @@ module Bundler
method_option "paths", :type => :boolean,
:banner => "List the paths of all gems that are required by your Gemfile."
def show(gem_name = nil)
- Bundler.definition.validate_ruby!
- Bundler.load.lock
+ Bundler.ui.silence do
+ Bundler.definition.validate_ruby!
+ Bundler.load.lock
+ end
if gem_name
if gem_name == "bundler"