summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Metcalfe <git@patrickmetcalfe.com>2015-04-19 11:48:39 -0500
committerPatrick Metcalfe <git@patrickmetcalfe.com>2015-04-19 11:48:39 -0500
commit38b900bd45e60c35813904409c4478baf0de5a95 (patch)
tree9c9eb79a0ae3013e067678b516da70b69e445f15
parent7d87d6af10f86aee3ab1630334a3fb2eacbd45ff (diff)
downloadbundler-38b900bd45e60c35813904409c4478baf0de5a95.tar.gz
turn on parallel installer
-rw-r--r--lib/bundler/installer.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index a3a2eabdc3..68fd5cad75 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -87,6 +87,7 @@ module Bundler
# installation is just SO MUCH FASTER. so we let people opt in.
jobs = [Bundler.settings[:jobs].to_i-1, 1].max
if jobs > 1 && can_install_in_parallel?
+ require 'bundler/installer/parallel_installer'
install_in_parallel jobs, options[:standalone], force
else
install_sequentially options[:standalone], force