From dfa8e696f263c315b4d4997a22d28dcd3bf3bdc0 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Mon, 29 Jan 2024 15:58:45 +0900 Subject: [PATCH] Move tsort under the vendor directory --- lib/rubygems/{ => vendor}/tsort/.document | 0 lib/rubygems/{ => vendor}/tsort/lib/tsort.rb | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename lib/rubygems/{ => vendor}/tsort/.document (100%) rename lib/rubygems/{ => vendor}/tsort/lib/tsort.rb (99%) diff --git a/lib/rubygems/tsort/.document b/lib/rubygems/vendor/tsort/.document similarity index 100% rename from lib/rubygems/tsort/.document rename to lib/rubygems/vendor/tsort/.document diff --git a/lib/rubygems/tsort/lib/tsort.rb b/lib/rubygems/vendor/tsort/lib/tsort.rb similarity index 99% rename from lib/rubygems/tsort/lib/tsort.rb rename to lib/rubygems/vendor/tsort/lib/tsort.rb index 05f3683d38..9dd7c09521 100644 --- a/lib/rubygems/tsort/lib/tsort.rb +++ b/lib/rubygems/vendor/tsort/lib/tsort.rb @@ -32,7 +32,7 @@ # method, which fetches the array of child nodes and then iterates over that # array using the user-supplied block. # -# require 'rubygems/tsort/lib/tsort' +# require 'rubygems/vendor/tsort/lib/tsort' # # class Hash # include Gem::TSort @@ -52,7 +52,7 @@ # # A very simple `make' like tool can be implemented as follows: # -# require 'rubygems/tsort/lib/tsort' +# require 'rubygems/vendor/tsort/lib/tsort' # # class Make # def initialize