summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-09 14:01:05 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-09 14:01:05 +0000
commit70785c1c5a7131ef51c145f13b508023b8589e63 (patch)
treeed0cc45122fb7c79dcd6d0bb0bfc0d1231698e38 /doc
parent6c4e05d2d860b3955ffc537a33e3c325abc7fe00 (diff)
Promote irb library to default gems.
* lib/irb/irb.gemspec: init. * lib/irb/version.rb: Set @RELEASE_VERSION value to IRB::VERSION for gemspec. * doc/*.rdoc: Move IRB entry to default gems category. * tool/sync_default_gems.rb: Add irb support. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63915 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc')
-rw-r--r--doc/maintainers.rdoc4
-rw-r--r--doc/standard_library.rdoc2
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/maintainers.rdoc b/doc/maintainers.rdoc
index 5d87dfb8ff..ee7dcd312e 100644
--- a/doc/maintainers.rdoc
+++ b/doc/maintainers.rdoc
@@ -66,8 +66,6 @@ Zachary Scott (zzak)
_unmaintained_
[lib/ipaddr.rb]
Akinori MUSHA (knu)
-[lib/irb.rb, lib/irb/*]
- Keiju ISHITSUKA (keiju)
[lib/mkmf.rb]
_unmaintained_
[lib/monitor.rb]
@@ -205,6 +203,8 @@ Zachary Scott (zzak)
[lib/fileutils.rb]
_unmaintained_
https://github.com/ruby/fileutils
+[lib/irb.rb, lib/irb/*]
+ Keiju ISHITSUKA (keiju)
[lib/logger.rb]
Naotoshi Seo (sonots)
[lib/matrix.rb]
diff --git a/doc/standard_library.rdoc b/doc/standard_library.rdoc
index 839aa7ef2f..4522c4dfa1 100644
--- a/doc/standard_library.rdoc
+++ b/doc/standard_library.rdoc
@@ -22,7 +22,6 @@ Find:: This module supports top-down traversal of a set of file paths
Forwardable:: Provides delegation of specified methods to a designated object
GetoptLong:: Parse command line options similar to the GNU C getopt_long()
IPAddr:: Provides methods to manipulate IPv4 and IPv6 IP addresses
-IRB:: Interactive Ruby command-line tool for REPL (Read Eval Print Loop)
MakeMakefile:: Module used to generate a Makefile for C extensions
Monitor:: Provides an object or module to use safely by more than one thread
Mutex_m:: Mixin to extend objects to be handled like a Mutex
@@ -87,6 +86,7 @@ Bundler:: Manage your Ruby application's gem dependencies
CMath:: Provides Trigonometric and Transcendental functions for complex numbers
CSV:: Provides an interface to read and write CSV files and data
FileUtils:: Several file utility methods for copying, moving, removing, etc
+IRB:: Interactive Ruby command-line tool for REPL (Read Eval Print Loop)
Logger:: Provides a simple logging utility for outputting messages
Matrix:: Represents a mathematical matrix.
OpenStruct:: Class to build custom data structures, similar to a Hash