summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2024-01-19 15:43:08 +0900
committerHiroshi SHIBATA <[email protected]>2024-01-19 16:27:45 +0900
commite28bdff94140bd9884e27ff1c42c31e121e65827 (patch)
treeb691b5e41dcf47788d07060797058530af095440
parentf4670b46c458cdc57eeee2fead2ffe811ea65096 (diff)
Document about abbrev at Ruby 3.4
-rw-r--r--doc/maintainers.md8
-rw-r--r--doc/standard_library.rdoc2
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/maintainers.md b/doc/maintainers.md
index 41331da4ee..a58e8bbffb 100644
--- a/doc/maintainers.md
+++ b/doc/maintainers.md
@@ -72,10 +72,6 @@ have commit right, others don't.
## Default gems Maintainers
### Libraries
-#### lib/abbrev.rb
-* Akinori MUSHA (knu)
-* https://github.com/ruby/abbrev
-* https://rubygems.org/gems/abbrev
#### lib/benchmark.rb
* *unmaintained*
@@ -479,6 +475,10 @@ have commit right, others don't.
#### observer
* https://github.com/ruby/observer
+#### abbrev
+* https://github.com/ruby/abbrev
+
+
## Platform Maintainers
### mswin64 (Microsoft Windows)
* NAKAMURA Usaku (usa)
diff --git a/doc/standard_library.rdoc b/doc/standard_library.rdoc
index b7d212f0f7..5d10a4249c 100644
--- a/doc/standard_library.rdoc
+++ b/doc/standard_library.rdoc
@@ -33,7 +33,6 @@ Socket:: Access underlying OS socket implementations
== 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
Bundler:: Manage your Ruby application's gem dependencies
CGI:: Support for the Common Gateway Interface protocol
@@ -130,3 +129,4 @@ GetoptLong:: Parse command line options similar to the GNU C getopt_long()
Base64:: Support for encoding and decoding binary data using a Base64 representation
BigDecimal:: Provides arbitrary-precision floating point decimal arithmetic
Observable:: Provides a mechanism for publish/subscribe pattern in Ruby
+Abbrev:: Calculates a set of unique abbreviations for a given set of strings