summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2025-01-15 17:12:17 +0900
committerHiroshi SHIBATA <[email protected]>2025-01-15 17:13:16 +0900
commitfe2bc7783040a0e35477676a0cf61103ff3635a3 (patch)
tree2cfe39c85c47da6ffeb3e5a2995d307f2f8e1ad2 /doc
parent21254c36e1e5208efa4847cd8a2653bf440f58dc (diff)
Update documents with the latest bundled gems
Diffstat (limited to 'doc')
-rw-r--r--doc/maintainers.md43
-rw-r--r--doc/standard_library.md9
2 files changed, 21 insertions, 31 deletions
diff --git a/doc/maintainers.md b/doc/maintainers.md
index c9d8c9e578..f6ff46aba1 100644
--- a/doc/maintainers.md
+++ b/doc/maintainers.md
@@ -101,12 +101,6 @@ have commit right, others don't.
### Libraries
-#### lib/benchmark.rb
-
-* *unmaintained*
-* https://github.com/ruby/benchmark
-* https://rubygems.org/gems/benchmark
-
#### lib/bundler.rb, lib/bundler/*
* Hiroshi SHIBATA ([hsbt])
@@ -194,12 +188,6 @@ have commit right, others don't.
* Nobuyuki Nakada ([nobu])
* https://github.com/ruby/optparse
-#### lib/logger.rb
-
-* Naotoshi Seo ([sonots])
-* https://github.com/ruby/logger
-* https://rubygems.org/gems/logger
-
#### lib/net/http.rb, lib/net/https.rb
* NARUSE, Yui ([nurse])
@@ -243,12 +231,6 @@ have commit right, others don't.
* https://github.com/ruby/prism
* https://rubygems.org/gems/prism
-#### lib/pstore.rb
-
-* *unmaintained*
-* https://github.com/ruby/pstore
-* https://rubygems.org/gems/pstore
-
#### lib/readline.rb
* aycabta
@@ -261,15 +243,6 @@ have commit right, others don't.
* https://github.com/ruby/resolv
* https://rubygems.org/gems/resolv
-#### lib/rdoc.rb, lib/rdoc/*
-
-* Eric Hodel ([drbrain])
-* Hiroshi SHIBATA ([hsbt])
-* Stan Lo ([st0012])
-* Colby Swandale ([colby-swandale])
-* https://github.com/ruby/rdoc
-* https://rubygems.org/gems/rdoc
-
#### lib/reline.rb, lib/reline/*
* Tomoya Ishida ([tompng])
@@ -583,6 +556,22 @@ have commit right, others don't.
* https://github.com/ruby/ostruct
+#### pstore
+
+* https://github.com/ruby/pstore
+
+#### benchmark
+
+* https://github.com/ruby/benchmark
+
+#### logger
+
+* https://github.com/ruby/logger
+
+#### rdoc
+
+* https://github.com/ruby/rdoc
+
## Platform Maintainers
### mswin64 (Microsoft Windows)
diff --git a/doc/standard_library.md b/doc/standard_library.md
index 5d427da945..36c61d9a9c 100644
--- a/doc/standard_library.md
+++ b/doc/standard_library.md
@@ -33,7 +33,6 @@ of each.
## Libraries
-- Benchmark ([GitHub][benchmark]): Provides methods to measure and report the time used to execute code
- Bundler ([GitHub][bundler]): Manage your Ruby application's gem dependencies
- CGI ([GitHub][cgi]): Support for the Common Gateway Interface protocol
- Delegator ([GitHub][delegate]): Provides three abilities to delegate method calls to an object
@@ -46,14 +45,12 @@ of each.
- Forwardable ([GitHub][forwardable]): Provides delegation of specified methods to a designated object
- IPAddr ([GitHub][ipaddr]): Provides methods to manipulate IPv4 and IPv6 IP addresses
- OptionParser ([GitHub][optparse]): Ruby-oriented class for command-line option analysis
-- Logger ([GitHub][logger]): Provides a simple logging utility for outputting messages
- Net::HTTP ([GitHub][net-http]): HTTP client API for Ruby
- Open3 ([GitHub][open3]): Provides access to stdin, stdout, and stderr when running other programs
- OpenURI ([GitHub][open-uri]): An easy-to-use wrapper for URI::HTTP, URI::HTTPS, and URI::FTP
- PP ([GitHub][pp]): Provides a PrettyPrinter for Ruby objects
- PrettyPrint ([GitHub][prettyprint]): Implements a pretty printing algorithm for readable structure
- Prism ([GitHub][prism]): A portable, error-tolerant Ruby parser
-- PStore ([GitHub][pstore]): Implements a file-based persistence mechanism based on a Hash
- Readline ([GitHub][readline]): Wrapper for the Readline extension and Reline
- Reline ([GitHub][reline]): GNU Readline and Editline in a pure Ruby implementation
- Resolv ([GitHub][resolv]): Thread-aware DNS resolver library in Ruby
@@ -91,7 +88,6 @@ of each.
## Tools
- [IRB][irb-doc] ([GitHub][irb]): Interactive Ruby command-line tool for REPL (Read Eval Print Loop)
-- [RDoc][rdoc-doc] ([GitHub][rdoc]): Documentation generator for Ruby
# Bundled gems
@@ -131,6 +127,11 @@ of each.
- [syslog]: Ruby interface for the POSIX system logging facility
- [csv]: Provides an interface to read and write CSV files and data
- [ostruct]: A class to build custom data structures, similar to a Hash
+- [benchmark]: Provides methods to measure and report the time used to execute code
+- [logger]: Provides a simple logging utility for outputting messages
+- [pstore]: Implements a file-based persistence mechanism based on a Hash
+- [rdoc]: Documentation generator for Ruby, [RDoc documentation][rdoc-doc]
+
[abbrev]: https://github.com/ruby/abbrev
[base64]: https://github.com/ruby/base64