summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-06-12 18:29:34 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-06-18 19:14:15 +0900
commit7aa6fec45f70cb83876ff22940f22078f0f1e95e (patch)
treed4a571fa2a41b67522106feb8f093dbacc4346d8 /lib
parent5f8ee14b9bc550394541a78046ce43b5ba59d924 (diff)
[rubygems/rubygems] Remove unused method
https://github.com/rubygems/rubygems/commit/b1b39b8c06
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3212
Diffstat (limited to 'lib')
-rw-r--r--lib/bundler/installer.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/bundler/installer.rb b/lib/bundler/installer.rb
index a8b42840ac..874aac75b6 100644
--- a/lib/bundler/installer.rb
+++ b/lib/bundler/installer.rb
@@ -202,8 +202,6 @@ module Bundler
return jobs
end
- return 1 unless can_install_in_parallel?
-
Bundler.settings[:jobs] || processor_count
end
@@ -263,10 +261,6 @@ module Bundler
end
end
- def can_install_in_parallel?
- true
- end
-
def install_in_parallel(size, standalone, force = false)
spec_installations = ParallelInstaller.call(self, @definition.specs, size, standalone, force)
spec_installations.each do |installation|