From 38b900bd45e60c35813904409c4478baf0de5a95 Mon Sep 17 00:00:00 2001 From: Patrick Metcalfe Date: Sun, 19 Apr 2015 11:48:39 -0500 Subject: turn on parallel installer --- lib/bundler/installer.rb | 1 + 1 file changed, 1 insertion(+) 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 -- cgit v1.2.1