method

install_serially

ruby latest stable - Class: Bundler::ParallelInstaller

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_serially()
private

No documentation available.

# File lib/bundler/installer/parallel_installer.rb, line 144
    def install_serially
      until finished_installing?
        raise "failed to find a spec to enqueue while installing serially" unless spec_install = @specs.find(&:ready_to_enqueue?)
        spec_install.state = :enqueued
        do_install(spec_install, 0)
      end
    end