summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-08-04 13:20:18 -0700
committerAndre Arko <andre@arko.net>2013-08-04 13:23:39 -0700
commit07d8b0ae2583a776672ed0375911932886031949 (patch)
tree30cc1fd48d3257b9ad3aebb506febd3197c307a6
parent452f4c44c4138389269c043e514a3298f29abbed (diff)
downloadbundler-07d8b0ae2583a776672ed0375911932886031949.tar.gz
shorten and add spaces to un-threadsafe warning
-rw-r--r--lib/bundler/installer.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index b82e470114..f6c1eaefc7 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -195,10 +195,9 @@ module Bundler
if Bundler.current_ruby.mri? || Bundler.rubygems.provides?(">= 2.1.0.rc")
true
else
- Bundler.ui.warn "Bundler has detected Rubygems version #{Gem::VERSION} which is " \
- "old and not threadsafe and thus Bundler can't proceed with parallel" \
- "gem installation. Install Rubygems version >= 2.1.0 for parallel"\
- "installation, Bundler will now resume installation by using serial method."
+ Bundler.ui.warn "Rubygems #{Gem::VERSION} is not threadsafe, so your "\
+ "gems must be installed one at a time. Upgrade to Rubygems 2.1 or "\
+ "higher to enable parallel gem installation."
false
end
end