mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Promote tsort to default gems
This commit is contained in:
parent
b194973dcd
commit
01828a955a
4 changed files with 27 additions and 3 deletions
|
@ -67,8 +67,6 @@ Zachary Scott (zzak)
|
||||||
Akinori MUSHA (knu)
|
Akinori MUSHA (knu)
|
||||||
[lib/time.rb]
|
[lib/time.rb]
|
||||||
Tanaka Akira (akr)
|
Tanaka Akira (akr)
|
||||||
[lib/tsort.rb]
|
|
||||||
Tanaka Akira (akr)
|
|
||||||
[lib/un.rb]
|
[lib/un.rb]
|
||||||
WATANABE Hirofumi (eban)
|
WATANABE Hirofumi (eban)
|
||||||
[lib/unicode_normalize.rb, lib/unicode_normalize/*]
|
[lib/unicode_normalize.rb, lib/unicode_normalize/*]
|
||||||
|
@ -255,6 +253,9 @@ Zachary Scott (zzak)
|
||||||
[lib/tracer.rb]
|
[lib/tracer.rb]
|
||||||
Keiju ISHITSUKA (keiju)
|
Keiju ISHITSUKA (keiju)
|
||||||
https://github.com/ruby/tracer
|
https://github.com/ruby/tracer
|
||||||
|
[lib/tsort.rb]
|
||||||
|
Tanaka Akira (akr)
|
||||||
|
https://github.com/ruby/tsort
|
||||||
[lib/uri.rb, lib/uri/*]
|
[lib/uri.rb, lib/uri/*]
|
||||||
YAMADA, Akira (akira)
|
YAMADA, Akira (akira)
|
||||||
https://github.com/ruby/uri
|
https://github.com/ruby/uri
|
||||||
|
|
|
@ -23,7 +23,6 @@ Gem:: Package management framework for Ruby
|
||||||
SecureRandom:: Interface for secure random number generator
|
SecureRandom:: Interface for secure random number generator
|
||||||
Shellwords:: Manipulates strings with word parsing rules of UNIX Bourne shell
|
Shellwords:: Manipulates strings with word parsing rules of UNIX Bourne shell
|
||||||
Time:: Extends the Time class with methods for parsing and conversion
|
Time:: Extends the Time class with methods for parsing and conversion
|
||||||
TSort:: Topological sorting using Tarjan's algorithm
|
|
||||||
un.rb:: Utilities to replace common UNIX commands
|
un.rb:: Utilities to replace common UNIX commands
|
||||||
|
|
||||||
== Extensions
|
== Extensions
|
||||||
|
@ -80,6 +79,7 @@ Tempfile:: A utility class for managing temporary files
|
||||||
Timeout:: Auto-terminate potentially long-running operations in Ruby
|
Timeout:: Auto-terminate potentially long-running operations in Ruby
|
||||||
tmpdir.rb:: Extends the Dir class to manage the OS temporary file path
|
tmpdir.rb:: Extends the Dir class to manage the OS temporary file path
|
||||||
Tracer:: Outputs a source level execution trace of a Ruby program
|
Tracer:: Outputs a source level execution trace of a Ruby program
|
||||||
|
TSort:: Topological sorting using Tarjan's algorithm
|
||||||
URI:: A Ruby module providing support for Uniform Resource Identifiers
|
URI:: A Ruby module providing support for Uniform Resource Identifiers
|
||||||
WEBrick:: An HTTP server toolkit for Ruby
|
WEBrick:: An HTTP server toolkit for Ruby
|
||||||
YAML:: Ruby client library for the Psych YAML implementation
|
YAML:: Ruby client library for the Psych YAML implementation
|
||||||
|
|
22
lib/tsort.gemspec
Normal file
22
lib/tsort.gemspec
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
Gem::Specification.new do |spec|
|
||||||
|
spec.name = "tsort"
|
||||||
|
spec.version = "0.1.0"
|
||||||
|
spec.authors = ["Tanaka Akira"]
|
||||||
|
spec.email = ["akr@fsij.org"]
|
||||||
|
|
||||||
|
spec.summary = %q{Topological sorting using Tarjan's algorithm}
|
||||||
|
spec.description = %q{Topological sorting using Tarjan's algorithm}
|
||||||
|
spec.homepage = "https://github.com/ruby/tsort"
|
||||||
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
||||||
|
spec.licenses = ["Ruby", "BSD-2-Clause"]
|
||||||
|
|
||||||
|
spec.metadata["homepage_uri"] = spec.homepage
|
||||||
|
spec.metadata["source_code_uri"] = spec.homepage
|
||||||
|
|
||||||
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
||||||
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
||||||
|
end
|
||||||
|
spec.bindir = "exe"
|
||||||
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
||||||
|
spec.require_paths = ["lib"]
|
||||||
|
end
|
|
@ -67,6 +67,7 @@ REPOSITORIES = {
|
||||||
rinda: "ruby/rinda",
|
rinda: "ruby/rinda",
|
||||||
erb: "ruby/erb",
|
erb: "ruby/erb",
|
||||||
nkf: "ruby/nkf",
|
nkf: "ruby/nkf",
|
||||||
|
tsort: "ruby/tsort",
|
||||||
}
|
}
|
||||||
|
|
||||||
def sync_default_gems(gem)
|
def sync_default_gems(gem)
|
||||||
|
|
Loading…
Add table
Reference in a new issue