summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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