method

can_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.

can_install_in_parallel?()
private

No documentation available.

# File lib/bundler/installer.rb, line 277
    def can_install_in_parallel?
      if Bundler.rubygems.provides?(">= 2.1.0")
        true
      else
        Bundler.ui.warn "RubyGems #{Gem::VERSION} is not threadsafe, so your "           "gems will be installed one at a time. Upgrade to RubyGems 2.1.0 "            "or higher to enable parallel gem installation."
        false
      end
    end