Move tsort under the vendor directory

This commit is contained in:
Hiroshi SHIBATA 2024-01-29 15:58:45 +09:00
parent 881e76cef3
commit dfa8e696f2
No known key found for this signature in database
GPG Key ID: F9CF13417264FAC2
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@
# method, which fetches the array of child nodes and then iterates over that # method, which fetches the array of child nodes and then iterates over that
# array using the user-supplied block. # array using the user-supplied block.
# #
# require 'rubygems/tsort/lib/tsort' # require 'rubygems/vendor/tsort/lib/tsort'
# #
# class Hash # class Hash
# include Gem::TSort # include Gem::TSort
@ -52,7 +52,7 @@
# #
# A very simple `make' like tool can be implemented as follows: # A very simple `make' like tool can be implemented as follows:
# #
# require 'rubygems/tsort/lib/tsort' # require 'rubygems/vendor/tsort/lib/tsort'
# #
# class Make # class Make
# def initialize # def initialize