From cff4e83044f02dd9147fef360b816c29f5b1da10 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Fri, 13 May 2011 09:17:29 -0700 Subject: [PATCH] [#290] Only print the plugin Gemfile messages when $DEBUG is set --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 02063034..28fd75b5 100644 --- a/Gemfile +++ b/Gemfile @@ -65,6 +65,6 @@ end # Load plugins' Gemfiles Dir.glob File.expand_path("../vendor/plugins/*/Gemfile", __FILE__) do |file| - puts "Loading #{file} ..." + puts "Loading #{file} ..." if $DEBUG # `ruby -d` or `bundle -v` instance_eval File.read(file) end