summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2024-01-29 15:58:45 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2024-01-30 14:07:18 +0900
commitdfa8e696f263c315b4d4997a22d28dcd3bf3bdc0 (patch)
treea0236829770651776fcbc1f3efa68a1624f7d998
parent881e76cef3a2f09b3a35fdd3469969ca87ca19e6 (diff)
Move tsort under the vendor directory
-rw-r--r--lib/rubygems/vendor/tsort/.document (renamed from lib/rubygems/tsort/.document)0
-rw-r--r--lib/rubygems/vendor/tsort/lib/tsort.rb (renamed from lib/rubygems/tsort/lib/tsort.rb)4
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/rubygems/tsort/.document b/lib/rubygems/vendor/tsort/.document
index 0c43bbd6b3..0c43bbd6b3 100644
--- a/lib/rubygems/tsort/.document
+++ b/lib/rubygems/vendor/tsort/.document
diff --git a/lib/rubygems/tsort/lib/tsort.rb b/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