summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSmit Shah <who828@gmail.com>2013-12-07 23:05:06 +0530
committerAndre Arko <andre@arko.net>2013-12-18 15:08:53 -0800
commit5a88a201339661c7a936e339923b490a8bb79ae5 (patch)
tree4fba680971bce40a084f06fc0dbf06d997398b14
parentcb07807e015a58e923c2b83b18b26950b9a2126a (diff)
downloadbundler-5a88a201339661c7a936e339923b490a8bb79ae5.tar.gz
Rubygems thread-fix is avaliable from 2.0.7 onwards
-rw-r--r--lib/bundler/installer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index 8d193a7b8c..20e3135dc0 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -195,7 +195,7 @@ module Bundler
private
def can_install_parallely?
- if Bundler.current_ruby.mri? || Bundler.rubygems.provides?(">= 2.1.0.rc")
+ if Bundler.current_ruby.mri? || Bundler.rubygems.provides?(">= 2.0.7")
true
else
Bundler.ui.warn "Rubygems #{Gem::VERSION} is not threadsafe, so your "\