mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Promote abbrev to default gems
This commit is contained in:
parent
ea78960ee5
commit
cee8e95761
4 changed files with 27 additions and 3 deletions
|
@ -38,8 +38,6 @@ Zachary Scott (zzak)
|
||||||
|
|
||||||
=== Libraries
|
=== Libraries
|
||||||
|
|
||||||
[lib/abbrev.rb]
|
|
||||||
Akinori MUSHA (knu)
|
|
||||||
[lib/base64.rb]
|
[lib/base64.rb]
|
||||||
Yusuke Endoh (mame)
|
Yusuke Endoh (mame)
|
||||||
[lib/drb.rb, lib/drb/*]
|
[lib/drb.rb, lib/drb/*]
|
||||||
|
@ -106,6 +104,9 @@ Zachary Scott (zzak)
|
||||||
|
|
||||||
=== Libraries
|
=== Libraries
|
||||||
|
|
||||||
|
[lib/abbrev.rb]
|
||||||
|
Akinori MUSHA (knu)
|
||||||
|
https://github.com/ruby/abbrev
|
||||||
[lib/benchmark.rb]
|
[lib/benchmark.rb]
|
||||||
_unmaintained_
|
_unmaintained_
|
||||||
https://github.com/ruby/benchmark
|
https://github.com/ruby/benchmark
|
||||||
|
|
|
@ -8,7 +8,6 @@ description.
|
||||||
|
|
||||||
== Libraries
|
== Libraries
|
||||||
|
|
||||||
Abbrev:: Calculates a set of unique abbreviations for a given set of strings
|
|
||||||
Base64:: Support for encoding and decoding binary data using a Base64 representation
|
Base64:: Support for encoding and decoding binary data using a Base64 representation
|
||||||
DEBUGGER__:: Debugging functionality for Ruby
|
DEBUGGER__:: Debugging functionality for Ruby
|
||||||
DRb:: Distributed object system for Ruby
|
DRb:: Distributed object system for Ruby
|
||||||
|
@ -42,6 +41,7 @@ WIN32OLE:: Provides an interface for OLE Automation in Ruby
|
||||||
|
|
||||||
== Libraries
|
== Libraries
|
||||||
|
|
||||||
|
Abbrev:: Calculates a set of unique abbreviations for a given set of strings
|
||||||
Benchmark:: Provides methods to measure and report the time used to execute code
|
Benchmark:: Provides methods to measure and report the time used to execute code
|
||||||
Bundler:: Manage your Ruby application's gem dependencies
|
Bundler:: Manage your Ruby application's gem dependencies
|
||||||
CGI:: Support for the Common Gateway Interface protocol
|
CGI:: Support for the Common Gateway Interface protocol
|
||||||
|
|
22
lib/abbrev.gemspec
Normal file
22
lib/abbrev.gemspec
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
Gem::Specification.new do |spec|
|
||||||
|
spec.name = "abbrev"
|
||||||
|
spec.version = "0.1.0"
|
||||||
|
spec.authors = ["Akinori MUSHA"]
|
||||||
|
spec.email = ["knu@idaemons.org"]
|
||||||
|
|
||||||
|
spec.summary = %q{Calculates a set of unique abbreviations for a given set of strings}
|
||||||
|
spec.description = %q{Calculates a set of unique abbreviations for a given set of strings}
|
||||||
|
spec.homepage = "https://github.com/ruby/abbrev"
|
||||||
|
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
|
|
@ -68,6 +68,7 @@ REPOSITORIES = {
|
||||||
erb: "ruby/erb",
|
erb: "ruby/erb",
|
||||||
nkf: "ruby/nkf",
|
nkf: "ruby/nkf",
|
||||||
tsort: "ruby/tsort",
|
tsort: "ruby/tsort",
|
||||||
|
abbrev: "ruby/abbrev",
|
||||||
}
|
}
|
||||||
|
|
||||||
def sync_default_gems(gem)
|
def sync_default_gems(gem)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue