aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/gem_helper.rb
diff options
context:
space:
mode:
authorDaniel Spangenberg <daniel.spangenberg@parcydo.com>2011-08-12 02:34:36 +0300
committerAndre Arko <andre@arko.net>2011-08-16 10:34:30 -0700
commit575b82f27692a04dbd6bb9952f01ff3d207b3ff4 (patch)
tree6769bd502e581e21c049f5f9714dfa5f5f308757 /lib/bundler/gem_helper.rb
parent92dde72b96bc879a55397b6b01679d1b461dd01d (diff)
downloadbundler-575b82f27692a04dbd6bb9952f01ff3d207b3ff4.tar.gz
Changed the output of gem build to verbose, that it will work with new RubyGems version
Diffstat (limited to 'lib/bundler/gem_helper.rb')
-rw-r--r--lib/bundler/gem_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/gem_helper.rb b/lib/bundler/gem_helper.rb
index a3f83e58..4f8cebcb 100644
--- a/lib/bundler/gem_helper.rb
+++ b/lib/bundler/gem_helper.rb
@@ -41,7 +41,7 @@ module Bundler
def build_gem
file_name = nil
- sh("gem build '#{spec_path}'") { |out, code|
+ sh("gem build -V '#{spec_path}'") { |out, code|
raise out unless out[/Successfully/]
file_name = File.basename(built_gem_path)
FileUtils.mkdir_p(File.join(base, 'pkg'))