* lib/ipaddr.rb: Say that I am the current maintainer.

* lib/set.rb: Ditto.

* lib/shellwords.rb: Ditto.

* ext/syslog/syslog.txt: Ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15821 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2008-03-21 12:15:06 +00:00
Родитель d728efc96d
Коммит 47d42038b3
5 изменённых файлов: 25 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,13 @@
Fri Mar 21 21:10:00 2008 Akinori MUSHA <knu@iDaemons.org>
* lib/ipaddr.rb: Say that I am the current maintainer.
* lib/set.rb: Ditto.
* lib/shellwords.rb: Ditto.
* ext/syslog/syslog.txt: Ditto.
Fri Mar 21 09:24:28 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> Fri Mar 21 09:24:28 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* instruby.rb (open_for_install): write block result and rewrite only * instruby.rb (open_for_install): write block result and rewrite only

Просмотреть файл

@ -7,7 +7,10 @@ Amos Gouaux, University of Texas at Dallas
<amos+ruby@utdallas.edu> <amos+ruby@utdallas.edu>
& &
Akinori MUSHA Akinori MUSHA
<knu@ruby-lang.org> <knu@iDaemons.org>
Contact:
- Akinori MUSHA <knu@iDaemons.org> (current maintainer)
** Syslog(Module) ** Syslog(Module)

Просмотреть файл

@ -9,8 +9,12 @@
# #
# $Id$ # $Id$
# #
# Contact:
# - Akinori MUSHA <knu@iDaemons.org> (current maintainer)
#
# TODO: # TODO:
# - scope_id support # - scope_id support
#
require 'socket' require 'socket'
unless Socket.const_defined? "AF_INET6" unless Socket.const_defined? "AF_INET6"

Просмотреть файл

@ -47,6 +47,10 @@
# s1.subset? s2 # -> false # s1.subset? s2 # -> false
# s2.subset? s1 # -> true # s2.subset? s1 # -> true
# #
# == Contact
#
# - Akinori MUSHA <knu@iDaemons.org> (current maintainer)
#
class Set class Set
include Enumerable include Enumerable

Просмотреть файл

@ -13,6 +13,9 @@
# - Wakou Aoyama # - Wakou Aoyama
# - Akinori MUSHA <knu@iDaemons.org> # - Akinori MUSHA <knu@iDaemons.org>
# #
# Contact:
# - Akinori MUSHA <knu@iDaemons.org> (current maintainer)
#
module Shellwords module Shellwords
# #
# Splits a string into an array of tokens in the same way the UNIX # Splits a string into an array of tokens in the same way the UNIX