From: Christian Hofstaedtler <zeha@debian.org>
Subject: Replace bundled libraries with system versions
Date: Thu, 15 Mar 2018 14:51:43 +0100

Forwarded: not-needed
Origin: vendor
---
 lib/bundler/vendored_molinillo.rb  | 2 +-
 lib/bundler/vendored_persistent.rb | 2 --
 lib/bundler/vendored_thor.rb       | 4 ++--
 3 files changed, 3 insertions(+), 5 deletions(-)

--- a/lib/bundler/vendored_molinillo.rb
+++ b/lib/bundler/vendored_molinillo.rb
@@ -1,4 +1,4 @@
 # frozen_string_literal: true
 
 module Bundler; end
-require "bundler/vendor/molinillo/lib/molinillo"
+require "molinillo"
--- a/lib/bundler/vendored_persistent.rb
+++ b/lib/bundler/vendored_persistent.rb
@@ -15,10 +15,10 @@
     end
   end
 end
-require "bundler/vendor/net-http-persistent/lib/net/http/persistent"
+require "net/http/persistent"
 
 module Bundler
-  class PersistentHTTP < Persistent::Net::HTTP::Persistent
+  class PersistentHTTP < Net::HTTP::Persistent
     def connection_for(uri)
       connection = super
       warn_old_tls_version_rubygems_connection(uri, connection)
--- a/lib/bundler/vendored_thor.rb
+++ b/lib/bundler/vendored_thor.rb
@@ -2,7 +2,7 @@
 
 module Bundler
   def self.require_thor_actions
-    Kernel.send(:require, "bundler/vendor/thor/lib/thor/actions")
+    Kernel.send(:require, "thor/actions")
   end
 end
-require "bundler/vendor/thor/lib/thor"
+require "thor"
