From a4abf39af6c96adf73b9f3151ea5be74e9b8424d Mon Sep 17 00:00:00 2001 From: Gavriel Loria Date: Sat, 24 Nov 2018 13:11:56 -0500 Subject: [PATCH 1/2] removed require statement for ruby < 1.9 for bundler 2.0 --- lib/bundler/installer/parallel_installer.rb | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/bundler/installer/parallel_installer.rb b/lib/bundler/installer/parallel_installer.rb index 29dee3e5148..469b15b96cc 100644 --- a/lib/bundler/installer/parallel_installer.rb +++ b/lib/bundler/installer/parallel_installer.rb @@ -91,10 +91,6 @@ def initialize(installer, all_specs, size, standalone, force) end def call - # Since `autoload` has the potential for threading issues on 1.8.7 - # TODO: remove in bundler 2.0 - require "bundler/gem_remote_fetcher" if RUBY_VERSION < "1.9" - check_for_corrupt_lockfile if @size > 1 From 06d06f0e058ba816446145420302f3081a0c36c2 Mon Sep 17 00:00:00 2001 From: Gavriel Loria Date: Sat, 24 Nov 2018 13:25:20 -0500 Subject: [PATCH 2/2] removing requre gem_remote_fetcher --- lib/bundler/installer/parallel_installer.rb | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/bundler/installer/parallel_installer.rb b/lib/bundler/installer/parallel_installer.rb index 29dee3e5148..469b15b96cc 100644 --- a/lib/bundler/installer/parallel_installer.rb +++ b/lib/bundler/installer/parallel_installer.rb @@ -91,10 +91,6 @@ def initialize(installer, all_specs, size, standalone, force) end def call - # Since `autoload` has the potential for threading issues on 1.8.7 - # TODO: remove in bundler 2.0 - require "bundler/gem_remote_fetcher" if RUBY_VERSION < "1.9" - check_for_corrupt_lockfile if @size > 1