method

install_in_parallel

ruby latest stable - Class: Bundler::Installer

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

install_in_parallel(size, standalone, force = false)
private

No documentation available.

# File lib/bundler/installer.rb, line 288
    def install_in_parallel(size, standalone, force = false)
      spec_installations = ParallelInstaller.call(self, @definition.specs, size, standalone, force)
      spec_installations.each do |installation|
        post_install_messages[installation.name] = installation.post_install_message if installation.has_post_install_message?
      end
    end