Update irb and reline, readline entries
This commit is contained in:
parent
be1d0fcdb0
commit
5422c0f7f8
Notes:
git
2025-06-06 00:31:58 +00:00
@ -174,15 +174,6 @@ have commit right, others don't.
|
|||||||
* https://github.com/ruby/ipaddr
|
* https://github.com/ruby/ipaddr
|
||||||
* https://rubygems.org/gems/ipaddr
|
* https://rubygems.org/gems/ipaddr
|
||||||
|
|
||||||
#### lib/irb.rb, lib/irb/*
|
|
||||||
|
|
||||||
* Stan Lo ([st0012])
|
|
||||||
* Tomoya Ishida ([tompng])
|
|
||||||
* Mari Imaizumi ([ima1zumi])
|
|
||||||
* Hitoshi Hasumi ([hasumikin])
|
|
||||||
* https://github.com/ruby/irb
|
|
||||||
* https://rubygems.org/gems/irb
|
|
||||||
|
|
||||||
#### lib/optparse.rb, lib/optparse/*
|
#### lib/optparse.rb, lib/optparse/*
|
||||||
|
|
||||||
* Nobuyuki Nakada ([nobu])
|
* Nobuyuki Nakada ([nobu])
|
||||||
@ -231,27 +222,12 @@ have commit right, others don't.
|
|||||||
* https://github.com/ruby/prism
|
* https://github.com/ruby/prism
|
||||||
* https://rubygems.org/gems/prism
|
* https://rubygems.org/gems/prism
|
||||||
|
|
||||||
#### lib/readline.rb
|
|
||||||
|
|
||||||
* aycabta
|
|
||||||
* https://github.com/ruby/readline
|
|
||||||
* https://rubygems.org/gems/readline
|
|
||||||
|
|
||||||
#### lib/resolv.rb
|
#### lib/resolv.rb
|
||||||
|
|
||||||
* Tanaka Akira ([akr])
|
* Tanaka Akira ([akr])
|
||||||
* https://github.com/ruby/resolv
|
* https://github.com/ruby/resolv
|
||||||
* https://rubygems.org/gems/resolv
|
* https://rubygems.org/gems/resolv
|
||||||
|
|
||||||
#### lib/reline.rb, lib/reline/*
|
|
||||||
|
|
||||||
* Tomoya Ishida ([tompng])
|
|
||||||
* Mari Imaizumi ([ima1zumi])
|
|
||||||
* Stan Lo ([st0012])
|
|
||||||
* Hitoshi Hasumi ([hasumikin])
|
|
||||||
* https://github.com/ruby/reline
|
|
||||||
* https://rubygems.org/gems/reline
|
|
||||||
|
|
||||||
#### lib/securerandom.rb
|
#### lib/securerandom.rb
|
||||||
|
|
||||||
* Tanaka Akira ([akr])
|
* Tanaka Akira ([akr])
|
||||||
@ -570,6 +546,18 @@ have commit right, others don't.
|
|||||||
|
|
||||||
* https://github.com/ruby/win32ole
|
* https://github.com/ruby/win32ole
|
||||||
|
|
||||||
|
#### irb
|
||||||
|
|
||||||
|
* https://github.com/ruby/irb
|
||||||
|
|
||||||
|
#### reline
|
||||||
|
|
||||||
|
* https://github.com/ruby/reline
|
||||||
|
|
||||||
|
#### readline
|
||||||
|
|
||||||
|
* https://github.com/ruby/readline
|
||||||
|
|
||||||
## Platform Maintainers
|
## Platform Maintainers
|
||||||
|
|
||||||
### mswin64 (Microsoft Windows)
|
### mswin64 (Microsoft Windows)
|
||||||
|
@ -51,8 +51,6 @@ of each.
|
|||||||
- PP ([GitHub][pp]): Provides a PrettyPrinter for Ruby objects
|
- PP ([GitHub][pp]): Provides a PrettyPrinter for Ruby objects
|
||||||
- PrettyPrint ([GitHub][prettyprint]): Implements a pretty printing algorithm for readable structure
|
- PrettyPrint ([GitHub][prettyprint]): Implements a pretty printing algorithm for readable structure
|
||||||
- Prism ([GitHub][prism]): A portable, error-tolerant Ruby parser
|
- Prism ([GitHub][prism]): A portable, error-tolerant Ruby parser
|
||||||
- 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
|
- Resolv ([GitHub][resolv]): Thread-aware DNS resolver library in Ruby
|
||||||
- SecureRandom ([GitHub][securerandom]): Interface for a secure random number generator
|
- SecureRandom ([GitHub][securerandom]): Interface for a secure random number generator
|
||||||
- [Set](rdoc-ref:Set) ([GitHub][set]): Provides a class to deal with collections of unordered, unique values
|
- [Set](rdoc-ref:Set) ([GitHub][set]): Provides a class to deal with collections of unordered, unique values
|
||||||
@ -84,10 +82,6 @@ of each.
|
|||||||
- TmpDir ([GitHub][tmpdir]): Extends the Dir class to manage the OS temporary file path
|
- TmpDir ([GitHub][tmpdir]): Extends the Dir class to manage the OS temporary file path
|
||||||
- Zlib ([GitHub][zlib]): Ruby interface for the zlib compression/decompression library
|
- Zlib ([GitHub][zlib]): Ruby interface for the zlib compression/decompression library
|
||||||
|
|
||||||
## Tools
|
|
||||||
|
|
||||||
- [IRB][irb-doc] ([GitHub][irb]): Interactive Ruby command-line tool for REPL (Read Eval Print Loop)
|
|
||||||
|
|
||||||
# Bundled gems
|
# Bundled gems
|
||||||
|
|
||||||
- Bundled gems are shipped with Ruby releases and also available as rubygems.
|
- Bundled gems are shipped with Ruby releases and also available as rubygems.
|
||||||
@ -129,9 +123,14 @@ of each.
|
|||||||
- [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
|
||||||
- [logger]: Provides a simple logging utility for outputting messages
|
- [logger]: Provides a simple logging utility for outputting messages
|
||||||
- [pstore]: Implements a file-based persistence mechanism based on a Hash
|
- [pstore]: Implements a file-based persistence mechanism based on a Hash
|
||||||
- [rdoc]: Documentation generator for Ruby, [RDoc documentation][rdoc-doc]
|
|
||||||
- [win32ole]: Provides an interface for OLE Automation in Ruby
|
- [win32ole]: Provides an interface for OLE Automation in Ruby
|
||||||
|
- [reline]: GNU Readline and Editline in a pure Ruby implementation
|
||||||
|
- [readline]: Wrapper for the Readline extension and Reline
|
||||||
|
|
||||||
|
## 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
|
||||||
|
|
||||||
[abbrev]: https://github.com/ruby/abbrev
|
[abbrev]: https://github.com/ruby/abbrev
|
||||||
[base64]: https://github.com/ruby/base64
|
[base64]: https://github.com/ruby/base64
|
||||||
|
Loading…
x
Reference in New Issue
Block a user