diff options
author | taca <taca> | 2005-11-02 08:56:39 +0000 |
---|---|---|
committer | taca <taca> | 2005-11-02 08:56:39 +0000 |
commit | a94c57190b288aeb68a1740418c2ebeb056c8aa7 (patch) | |
tree | 5315bf31bdc1b3ab8a69527263cfb9fd614bd8a2 /lang | |
parent | 22d5f4cdb17e61382bc16c888a05ad87e35ae396 (diff) | |
download | pkgsrc-a94c57190b288aeb68a1740418c2ebeb056c8aa7.tar.gz |
- Update to Ruby 1.8.3 with several fixes after its release
(see CHANGES.pkgsrc file).
- Merge databases/ruby-dbm, devel/ruby-zlib, security/ruby-digest and
ruby-openssl, conflicting with these packages.
- Better handling for RI directories.
- Use pkgsrc's TOOLS framework.
Diffstat (limited to 'lang')
63 files changed, 4785 insertions, 2753 deletions
diff --git a/lang/ruby18-base/ALTERNATIVES b/lang/ruby18-base/ALTERNATIVES new file mode 100644 index 00000000000..8ce314ae641 --- /dev/null +++ b/lang/ruby18-base/ALTERNATIVES @@ -0,0 +1,7 @@ +bin/erb @PREFIX@/bin/erb@RUBY_VER@ +bin/h2rb @PREFIX@/bin/h2rb@RUBY_VER@ +bin/irb @PREFIX@/bin/irb@RUBY_VER@ +bin/rdoc @PREFIX@/bin/rdoc@RUBY_VER@ +bin/ri @PREFIX@/bin/ri@RUBY_VER@ +bin/ruby @PREFIX@/bin/@RUBY_NAME@ +bin/testrb @PREFIX@/bin/testrb@RUBY_VER@ diff --git a/lang/ruby18-base/DEINSTALL b/lang/ruby18-base/DEINSTALL new file mode 100644 index 00000000000..d45c3e16487 --- /dev/null +++ b/lang/ruby18-base/DEINSTALL @@ -0,0 +1,11 @@ +# $NetBSD: DEINSTALL,v 1.1 2005/11/02 08:56:39 taca Exp $ + +RUBY_SITERIDIR="@RUBY_SITERIDIR@" +rid="${RUBY_SITERIDIR}/created.rid" + +case ${STAGE} in +DEINSTALL) + rm -f ${rid} + ;; +esac +exit diff --git a/lang/ruby18-base/INSTALL b/lang/ruby18-base/INSTALL new file mode 100644 index 00000000000..0a1ec486cfa --- /dev/null +++ b/lang/ruby18-base/INSTALL @@ -0,0 +1,12 @@ +# $NetBSD: INSTALL,v 1.1 2005/11/02 08:56:39 taca Exp $ + +DATE="@DATE@" +RUBY_SITERIDIR="@RUBY_SITERIDIR@" +rid="${RUBY_SITERIDIR}/created.rid" + +case ${STAGE} in +POST-INSTALL) + ${DATE} > ${rid} + ;; +esac +exit diff --git a/lang/ruby18-base/MESSAGE b/lang/ruby18-base/MESSAGE index 524694ff874..c538417b33a 100644 --- a/lang/ruby18-base/MESSAGE +++ b/lang/ruby18-base/MESSAGE @@ -1,5 +1,5 @@ =========================================================================== -$NetBSD: MESSAGE,v 1.1.1.1 2005/03/06 16:36:56 taca Exp $ +$NetBSD: MESSAGE,v 1.2 2005/11/02 08:56:39 taca Exp $ Note that this is minimum package. @@ -7,13 +7,9 @@ Original Ruby ${RUBY_VERSION} includes more extention libraries and some of them are provided as separate packages: converters/ruby-iconv: Iconv module - databases/ruby-dbm: DBM module databases/ruby-gdbm: GDBM module devel/ruby-curses: Curses module devel/ruby-readline: readline module - devel/ruby-zlib: Zlib module - security/ruby-digest: message digest module - security/ruby-openssl: OpenSSL module x11/ruby-tcltklib: Tcl/Tk libraries x11/ruby-tk: Tk modules diff --git a/lang/ruby18-base/Makefile b/lang/ruby18-base/Makefile index e7bba5a59df..e173b3fb757 100644 --- a/lang/ruby18-base/Makefile +++ b/lang/ruby18-base/Makefile @@ -1,38 +1,52 @@ -# $NetBSD: Makefile,v 1.9 2005/09/23 12:01:44 taca Exp $ +# $NetBSD: Makefile,v 1.10 2005/11/02 08:56:39 taca Exp $ # DISTNAME= ${RUBY_DISTNAME} PKGNAME= ${RUBY_PKGPREFIX}-base-${RUBY_VERSION} -PKGREVISION= 4 CATEGORIES= lang ruby MASTER_SITES= ${MASTER_SITE_RUBY} -PATCH_SITES= ${MASTER_SITE_RUBY} -PATCHFILES= 1.8.2-patch1.gz - MAINTAINER= taca@NetBSD.org HOMEPAGE= ${RUBY_HOMEPAGE} COMMENT= Ruby 1.8 based release minimum package RUBY_VERSION= ${RUBY18_VERSION} + +CONFLICTS= ${RUBY_PKGPREFIX}-dbm-[0-9]* \ + ${RUBY_PKGPREFIX}-digest-[0-9]* \ + ${RUBY_PKGPREFIX}-openssl-[0-9]* + +USE_PKGINSTALL= yes +USE_LANGUAGES= c +USE_TOOLS+= yacc GNU_CONFIGURE= yes TEST_TARGET= test -CONFIGURE_ARGS+= --enable-shared +CONFIGURE_ARGS+= --enable-shared \ + --with-ssl-include="${BUILDLINK_PREFIX.openssl}/include" \ + --with-ssl-lib="${BUILDLINK_PREFIX.openssl}/lib" CONFIGURE_ENV+= PREFIX="${PREFIX}" INSTALL_TARGET= install install-doc WRKSRC= ${RUBY_WRKSRC} +DEINSTALL_EXTRA_TMPL+= ${.CURDIR}/DEINSTALL +INSTALL_EXTRA_TMPL+= ${.CURDIR}/INSTALL + # Ruby build process depends on config.status's content CONFIG_STATUS_OVERRIDE= # empty +MAKE_DIRS+= ${RUBY_SITERIDIR} + .include "../../lang/ruby/rubyversion.mk" .if !empty(RUBY_SUFFIX) CONFIGURE_ARGS+= --program-suffix="${RUBY_SUFFIX}" .endif -.include "../../mk/bsd.prefs.mk" +FILES_SUBST+= DATE=${DATE} +# +# IRIX work around should be fixed. +# .if ${OPSYS} == "IRIX" PLIST_SUBST+= HAS_IO="@comment " .else @@ -46,68 +60,46 @@ DOCS= COPYING COPYING.ja ChangeLog README \ doc/shell.rd doc/shell.rd.ja doc/irb/irb-tools.rd.ja \ doc/irb/irb.rd doc/irb/irb.rd.ja EXT_DOCS= bigdecimal/bigdecimal_en.html bigdecimal/bigdecimal_ja.html \ + digest/digest.txt digest/digest.txt.ja \ dl/doc/dl.txt enumerator/enumerator.txt \ - etc/etc.txt etc/etc.txt.ja syslog/syslog.txt + etc/etc.txt etc/etc.txt.ja syslog/syslog.txt \ + zlib/doc/zlib.rd BIGDECIMAL_EXAMPLES= linear.rb nlsolve.rb pi.rb DL_EXAMPLES= c++sample.C c++sample.rb drives.rb getch.rb libc.rb \ msgbox.rb msgbox2.rb stream.rb +OPENSSL_EXAMPLES= c_rehash.rb cert2text.rb cert_store_view.rb \ + certstore.rb cipher.rb crlstore.rb echo_cli.rb \ + echo_svr.rb gen_csr.rb smime_read.rb smime_write.rb \ + wget.rb PTY_EXAMPLES= expect_sample.rb script.rb shl.rb -REPLACE_RUBY= bin/erb bin/irb bin/rdoc bin/ri bin/testrb \ - ext/bigdecimal/sample/linear.rb \ - ext/bigdecimal/sample/nlsolve.rb \ - ext/bigdecimal/sample/pi.rb \ - lib/rdoc/markup/sample/rdoc2latex.rb \ - sample/biorhythm.rb sample/cal.rb sample/exyacc.rb \ - sample/fullpath.rb sample/less.rb sample/from.rb \ - sample/goodfriday.rb sample/logger/shifting.rb \ - sample/logger/app.rb sample/logger/log.rb sample/mine.rb \ - sample/mpart.rb sample/observ.rb sample/optparse/opttest.rb \ - sample/openssl/c_rehash.rb sample/openssl/cert2text.rb \ - sample/openssl/cert_store_view.rb \ - sample/openssl/certstore.rb sample/openssl/cipher.rb \ - sample/openssl/crlstore.rb sample/openssl/echo_cli.rb \ - sample/openssl/echo_svr.rb sample/openssl/gen_csr.rb \ - sample/openssl/smime_read.rb sample/openssl/smime_write.rb \ - sample/openssl/wget.rb \ - sample/soap/calc/httpd.rb sample/soap/calc/server.rb \ - sample/soap/calc/server2.rb sample/soap/icd/icd.rb \ - sample/soap/babelfish.rb sample/soap/exchange/client.rb \ - sample/soap/exchange/httpd.rb sample/soap/exchange/server.rb \ - sample/soap/raa/soap4r.rb sample/soap/sampleStruct/httpd.rb \ - sample/soap/sampleStruct/server.rb sample/pi.rb \ - sample/wsdl/amazon/sampleClient.rb \ - sample/wsdl/googleSearch/sampleClient.rb \ - sample/wsdl/googleSearch/httpd.rb sample/wsdl/raa/soap4r.rb \ - sample/test.rb sample/trojan.rb sample/time.rb \ - sample/uumerge.rb +REPLACE_RUBY_DIRS= ${WRKSRC}/bin ${WRKSRC}/ext ${WRKSRC}/lib \ + ${WRKSRC}/sample pre-configure: ${RM} -f ${WRKSRC}/ext/curses/extconf.rb - ${RM} -f ${WRKSRC}/ext/dbm/extconf.rb - ${RM} -f ${WRKSRC}/ext/digest/extconf.rb - ${RM} -f ${WRKSRC}/ext/digest/md5/extconf.rb - ${RM} -f ${WRKSRC}/ext/digest/rmd160/extconf.rb - ${RM} -f ${WRKSRC}/ext/digest/sha1/extconf.rb - ${RM} -f ${WRKSRC}/ext/digest/sha2/extconf.rb ${RM} -f ${WRKSRC}/ext/gdbm/extconf.rb ${RM} -f ${WRKSRC}/ext/iconv/extconf.rb - ${RM} -f ${WRKSRC}/ext/openssl/extconf.rb ${RM} -f ${WRKSRC}/ext/readline/extconf.rb ${RM} -f ${WRKSRC}/ext/tcltklib/extconf.rb ${RM} -f ${WRKSRC}/ext/tk/extconf.rb - ${RM} -f ${WRKSRC}/ext/zlib/extconf.rb - ${RM} -f ${WRKSRC}/sample/dbmtest.rb - ${RM} -fr ${WRKSRC}/sample/openssl pre-build: @${FIND} ${WRKSRC} -name '*.orig' -exec ${RM} -f {} \; +# +# XXX: Ruby 1.8.3 create extra directories. +# +post-build: + @cd ${WRKSRC}/.ext; \ + ${FIND} . -type d -print \ + -exec ${RMDIR} {} \; > /dev/null 2>&1; ${TRUE} post-install: ${STRIP} ${RUBY} ${INSTALL_DATA_DIR} ${RUBY_DOCDIR}/irb ${INSTALL_DATA_DIR} ${RUBY_DOCDIR}/pty + ${INSTALL_DATA} ${FILESDIR}/CHANGES.pkgsrc ${RUBY_DOCDIR} .for f in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${f:C/^doc\///} .endfor @@ -128,9 +120,25 @@ post-install: ${INSTALL_DATA} ${RUBY_WRKSRC}/ext/dl/sample/${f} \ ${RUBY_EXAMPLESDIR}/dl .endfor + ${INSTALL_DATA_DIR} ${RUBY_EXAMPLESDIR}/openssl +.for f in ${OPENSSL_EXAMPLES} + ${INSTALL_DATA} ${RUBY_WRKSRC}/sample/openssl/${f} \ + ${RUBY_EXAMPLESDIR}/openssl +.endfor .for f in ${PTY_EXAMPLES} ${INSTALL_DATA} ${WRKSRC}/ext/pty/${f} ${RUBY_EXAMPLESDIR}/pty .endfor +# +# XXX: Ruby extconf shuld select native ndbm(3) or Berkley DB's +# ndbm(3) compatible support. +# +.if ${OPSYS} != "IRIX" && ${OPSYS} != "SunOS" +BDB_ACCEPTED?= db1 +.include "../../mk/bdb.buildlink3.mk" +.endif + .include "../../lang/ruby/Makefile.common" +.include "../../devel/zlib/buildlink3.mk" +.include "../../security/openssl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/lang/ruby18-base/PLIST b/lang/ruby18-base/PLIST index 817c509c4e5..94a2349f65f 100644 --- a/lang/ruby18-base/PLIST +++ b/lang/ruby18-base/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2005/05/31 02:19:48 jschauma Exp $ +@comment $NetBSD: PLIST,v 1.4 2005/11/02 08:56:39 taca Exp $ bin/erb${RUBY_VER} bin/h2rb${RUBY_VER} bin/irb${RUBY_VER} @@ -19,7 +19,6 @@ ${RUBY_LIBDIR}/bigdecimal/jacobian.rb ${RUBY_LIBDIR}/bigdecimal/ludcmp.rb ${RUBY_LIBDIR}/bigdecimal/math.rb ${RUBY_LIBDIR}/bigdecimal/newton.rb -${RUBY_LIBDIR}/bigdecimal/nlsolve.rb ${RUBY_LIBDIR}/bigdecimal/util.rb @dirrm ${RUBY_LIBDIR}/bigdecimal ${RUBY_LIBDIR}/cgi/session/pstore.rb @@ -70,6 +69,13 @@ ${RUBY_LIBDIR}/gserver.rb ${RUBY_ARCHLIBDIR}/bigdecimal.${RUBY_DLEXT} ${RUBY_ARCHLIBDIR}/config.h ${RUBY_ARCHLIBDIR}/defines.h +${RUBY_ARCHLIBDIR}/dbm.${RUBY_DLEXT} +${RUBY_ARCHLIBDIR}/digest.${RUBY_DLEXT} +${RUBY_ARCHLIBDIR}/digest/md5.${RUBY_DLEXT} +${RUBY_ARCHLIBDIR}/digest/rmd160.${RUBY_DLEXT} +${RUBY_ARCHLIBDIR}/digest/sha1.${RUBY_DLEXT} +${RUBY_ARCHLIBDIR}/digest/sha2.${RUBY_DLEXT} +@dirrm ${RUBY_ARCHLIBDIR}/digest ${RUBY_ARCHLIBDIR}/dl.${RUBY_DLEXT} ${RUBY_ARCHLIBDIR}/dl.h ${RUBY_ARCHLIBDIR}/dlconfig.h @@ -84,6 +90,7 @@ ${HAS_IO}@dirrm ${RUBY_ARCHLIBDIR}/io ${RUBY_ARCHLIBDIR}/missing.h ${RUBY_ARCHLIBDIR}/nkf.${RUBY_DLEXT} ${RUBY_ARCHLIBDIR}/node.h +${RUBY_ARCHLIBDIR}/openssl.${RUBY_DLEXT} ${RUBY_ARCHLIBDIR}/pty.${RUBY_DLEXT} ${RUBY_ARCHLIBDIR}/racc/cparse.${RUBY_DLEXT} @dirrm ${RUBY_ARCHLIBDIR}/racc @@ -102,6 +109,7 @@ ${RUBY_ARCHLIBDIR}/syck.${RUBY_DLEXT} ${RUBY_ARCHLIBDIR}/syslog.${RUBY_DLEXT} ${RUBY_ARCHLIBDIR}/util.h ${RUBY_ARCHLIBDIR}/version.h +${RUBY_ARCHLIBDIR}/zlib.${RUBY_DLEXT} @dirrm ${RUBY_ARCHLIBDIR} @exec ${MKDIR} %D/${RUBY_SITEARCHLIBDIR} @dirrm ${RUBY_SITEARCHLIBDIR} @@ -113,6 +121,7 @@ ${HAS_IO}@dirrm ${RUBY_LIBDIR}/io ${RUBY_LIBDIR}/ipaddr.rb ${RUBY_LIBDIR}/irb/cmd/chws.rb ${RUBY_LIBDIR}/irb/cmd/fork.rb +${RUBY_LIBDIR}/irb/cmd/help.rb ${RUBY_LIBDIR}/irb/cmd/load.rb ${RUBY_LIBDIR}/irb/cmd/nop.rb ${RUBY_LIBDIR}/irb/cmd/pushws.rb @@ -125,6 +134,7 @@ ${RUBY_LIBDIR}/irb/ext/history.rb ${RUBY_LIBDIR}/irb/ext/loader.rb ${RUBY_LIBDIR}/irb/ext/math-mode.rb ${RUBY_LIBDIR}/irb/ext/multi-irb.rb +${RUBY_LIBDIR}/irb/ext/save-history.rb ${RUBY_LIBDIR}/irb/ext/tracer.rb ${RUBY_LIBDIR}/irb/ext/use-loader.rb ${RUBY_LIBDIR}/irb/ext/workspaces.rb @@ -141,6 +151,8 @@ ${RUBY_LIBDIR}/irb/lc/ja/help-message @dirrm ${RUBY_LIBDIR}/irb/lc/ja @dirrm ${RUBY_LIBDIR}/irb/lc ${RUBY_LIBDIR}/irb/locale.rb +${RUBY_LIBDIR}/irb/notifier.rb +${RUBY_LIBDIR}/irb/output-method.rb ${RUBY_LIBDIR}/irb/ruby-lex.rb ${RUBY_LIBDIR}/irb/ruby-token.rb ${RUBY_LIBDIR}/irb/slex.rb @@ -156,20 +168,32 @@ ${RUBY_LIBDIR}/logger.rb ${RUBY_LIBDIR}/mailread.rb ${RUBY_LIBDIR}/mathn.rb ${RUBY_LIBDIR}/matrix.rb +${RUBY_LIBDIR}/md5.rb ${RUBY_LIBDIR}/mkmf.rb ${RUBY_LIBDIR}/monitor.rb ${RUBY_LIBDIR}/mutex_m.rb ${RUBY_LIBDIR}/net/ftp.rb +${RUBY_LIBDIR}/net/ftptls.rb ${RUBY_LIBDIR}/net/http.rb +${RUBY_LIBDIR}/net/https.rb ${RUBY_LIBDIR}/net/imap.rb ${RUBY_LIBDIR}/net/pop.rb ${RUBY_LIBDIR}/net/protocol.rb ${RUBY_LIBDIR}/net/smtp.rb ${RUBY_LIBDIR}/net/telnet.rb +${RUBY_LIBDIR}/net/telnets.rb @dirrm ${RUBY_LIBDIR}/net ${RUBY_LIBDIR}/observer.rb ${RUBY_LIBDIR}/open-uri.rb ${RUBY_LIBDIR}/open3.rb +${RUBY_LIBDIR}/openssl.rb +${RUBY_LIBDIR}/openssl/bn.rb +${RUBY_LIBDIR}/openssl/buffering.rb +${RUBY_LIBDIR}/openssl/cipher.rb +${RUBY_LIBDIR}/openssl/digest.rb +${RUBY_LIBDIR}/openssl/ssl.rb +${RUBY_LIBDIR}/openssl/x509.rb +@dirrm ${RUBY_LIBDIR}/openssl ${RUBY_LIBDIR}/optparse/date.rb ${RUBY_LIBDIR}/optparse/shellwords.rb ${RUBY_LIBDIR}/optparse/time.rb @@ -305,6 +329,7 @@ ${RUBY_LIBDIR}/rexml/rexml.rb ${RUBY_LIBDIR}/rexml/sax2listener.rb ${RUBY_LIBDIR}/rexml/source.rb ${RUBY_LIBDIR}/rexml/streamlistener.rb +${RUBY_LIBDIR}/rexml/syncenumerator.rb ${RUBY_LIBDIR}/rexml/text.rb ${RUBY_LIBDIR}/rexml/validation/relaxng.rb ${RUBY_LIBDIR}/rexml/validation/validation.rb @@ -319,18 +344,21 @@ ${RUBY_LIBDIR}/rinda/rinda.rb ${RUBY_LIBDIR}/rinda/ring.rb ${RUBY_LIBDIR}/rinda/tuplespace.rb @dirrm ${RUBY_LIBDIR}/rinda +${RUBY_LIBDIR}/rss.rb ${RUBY_LIBDIR}/rss/0.9.rb ${RUBY_LIBDIR}/rss/1.0.rb ${RUBY_LIBDIR}/rss/2.0.rb ${RUBY_LIBDIR}/rss/content.rb ${RUBY_LIBDIR}/rss/converter.rb ${RUBY_LIBDIR}/rss/dublincore.rb +${RUBY_LIBDIR}/rss/image.rb ${RUBY_LIBDIR}/rss/maker/0.9.rb ${RUBY_LIBDIR}/rss/maker/1.0.rb ${RUBY_LIBDIR}/rss/maker/2.0.rb ${RUBY_LIBDIR}/rss/maker/base.rb ${RUBY_LIBDIR}/rss/maker/content.rb ${RUBY_LIBDIR}/rss/maker/dublincore.rb +${RUBY_LIBDIR}/rss/maker/image.rb ${RUBY_LIBDIR}/rss/maker/syndication.rb ${RUBY_LIBDIR}/rss/maker/trackback.rb @dirrm ${RUBY_LIBDIR}/rss/maker @@ -358,6 +386,7 @@ ${RUBY_LIBDIR}/runit/topublic.rb @dirrm ${RUBY_LIBDIR}/runit ${RUBY_LIBDIR}/scanf.rb ${RUBY_LIBDIR}/set.rb +${RUBY_LIBDIR}/sha1.rb ${RUBY_LIBDIR}/shell/builtin-command.rb ${RUBY_LIBDIR}/shell/command-processor.rb ${RUBY_LIBDIR}/shell/error.rb @@ -378,6 +407,7 @@ ${RUBY_LIBDIR}/soap/encodingstyle/literalHandler.rb ${RUBY_LIBDIR}/soap/encodingstyle/soapHandler.rb @dirrm ${RUBY_LIBDIR}/soap/encodingstyle ${RUBY_LIBDIR}/soap/generator.rb +${RUBY_LIBDIR}/soap/httpconfigloader.rb ${RUBY_LIBDIR}/soap/header/handler.rb ${RUBY_LIBDIR}/soap/header/handlerset.rb ${RUBY_LIBDIR}/soap/header/simplehandler.rb @@ -387,7 +417,6 @@ ${RUBY_LIBDIR}/soap/mapping/mapping.rb ${RUBY_LIBDIR}/soap/mapping/registry.rb ${RUBY_LIBDIR}/soap/mapping/rubytypeFactory.rb ${RUBY_LIBDIR}/soap/mapping/typeMap.rb -${RUBY_LIBDIR}/soap/mapping/wsdlRegistry.rb ${RUBY_LIBDIR}/soap/mapping/wsdlencodedregistry.rb ${RUBY_LIBDIR}/soap/mapping/wsdlliteralregistry.rb @dirrm ${RUBY_LIBDIR}/soap/mapping @@ -538,10 +567,12 @@ ${RUBY_LIBDIR}/wsdl/soap/methodDefCreator.rb ${RUBY_LIBDIR}/wsdl/soap/operation.rb ${RUBY_LIBDIR}/wsdl/soap/servantSkeltonCreator.rb ${RUBY_LIBDIR}/wsdl/soap/standaloneServerStubCreator.rb +${RUBY_LIBDIR}/wsdl/soap/wsdl2ruby.rb @dirrm ${RUBY_LIBDIR}/wsdl/soap ${RUBY_LIBDIR}/wsdl/types.rb ${RUBY_LIBDIR}/wsdl/wsdl.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/all.rb +${RUBY_LIBDIR}/wsdl/xmlSchema/annotation.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/any.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/attribute.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/choice.rb @@ -552,13 +583,19 @@ ${RUBY_LIBDIR}/wsdl/xmlSchema/data.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/element.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/enumeration.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/import.rb +${RUBY_LIBDIR}/wsdl/xmlSchema/importer.rb +${RUBY_LIBDIR}/wsdl/xmlSchema/include.rb +${RUBY_LIBDIR}/wsdl/xmlSchema/length.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/parser.rb +${RUBY_LIBDIR}/wsdl/xmlSchema/pattern.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/schema.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/sequence.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/simpleContent.rb +${RUBY_LIBDIR}/wsdl/xmlSchema/simpleExtension.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/simpleRestriction.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/simpleType.rb ${RUBY_LIBDIR}/wsdl/xmlSchema/unique.rb +${RUBY_LIBDIR}/wsdl/xmlSchema/xsd2ruby.rb @dirrm ${RUBY_LIBDIR}/wsdl/xmlSchema @dirrm ${RUBY_LIBDIR}/wsdl ${RUBY_LIBDIR}/xmlrpc/base64.rb @@ -583,6 +620,7 @@ ${RUBY_LIBDIR}/xsd/codegen/moduledef.rb ${RUBY_LIBDIR}/xsd/datatypes.rb ${RUBY_LIBDIR}/xsd/datatypes1999.rb ${RUBY_LIBDIR}/xsd/iconvcharset.rb +${RUBY_LIBDIR}/xsd/mapping.rb ${RUBY_LIBDIR}/xsd/namedelements.rb ${RUBY_LIBDIR}/xsd/ns.rb ${RUBY_LIBDIR}/xsd/qname.rb @@ -597,7 +635,6 @@ ${RUBY_LIBDIR}/yaml/baseemitter.rb ${RUBY_LIBDIR}/yaml/basenode.rb ${RUBY_LIBDIR}/yaml/constants.rb ${RUBY_LIBDIR}/yaml/dbm.rb -${RUBY_LIBDIR}/yaml/emitter.rb ${RUBY_LIBDIR}/yaml/encoding.rb ${RUBY_LIBDIR}/yaml/error.rb ${RUBY_LIBDIR}/yaml/loader.rb @@ -606,6 +643,7 @@ ${RUBY_LIBDIR}/yaml/store.rb ${RUBY_LIBDIR}/yaml/stream.rb ${RUBY_LIBDIR}/yaml/stringio.rb ${RUBY_LIBDIR}/yaml/syck.rb +${RUBY_LIBDIR}/yaml/tag.rb ${RUBY_LIBDIR}/yaml/types.rb ${RUBY_LIBDIR}/yaml/yamlnode.rb ${RUBY_LIBDIR}/yaml/ypath.rb @@ -614,6 +652,7 @@ ${RUBY_LIBDIR}/yaml.rb @dirrm ${RUBY_LIBDIR} @unexec ${RMDIR} %D/lib/ruby 2>/dev/null || ${TRUE} man/man1/${RUBY_NAME}.1 +${RUBY_DOCDIR}/CHANGES.pkgsrc ${RUBY_DOCDIR}/COPYING ${RUBY_DOCDIR}/COPYING.ja ${RUBY_DOCDIR}/ChangeLog @@ -626,6 +665,8 @@ ${RUBY_DOCDIR}/README.ja ${RUBY_DOCDIR}/ToDo ${RUBY_DOCDIR}/bigdecimal_en.html ${RUBY_DOCDIR}/bigdecimal_ja.html +${RUBY_DOCDIR}/digest.txt +${RUBY_DOCDIR}/digest.txt.ja ${RUBY_DOCDIR}/dl.txt ${RUBY_DOCDIR}/enumerator.txt ${RUBY_DOCDIR}/etc.txt @@ -643,6 +684,7 @@ ${RUBY_DOCDIR}/pty/README.ja ${RUBY_DOCDIR}/shell.rd ${RUBY_DOCDIR}/shell.rd.ja ${RUBY_DOCDIR}/syslog.txt +${RUBY_DOCDIR}/zlib.rd @dirrm ${RUBY_DOCDIR} ${RUBY_EXAMPLESDIR}/README ${RUBY_EXAMPLESDIR}/bigdecimal/linear.rb @@ -653,6 +695,7 @@ ${RUBY_EXAMPLESDIR}/biorhythm.rb ${RUBY_EXAMPLESDIR}/cal.rb ${RUBY_EXAMPLESDIR}/cbreak.rb ${RUBY_EXAMPLESDIR}/clnt.rb +${RUBY_EXAMPLESDIR}/dbmtest.rb ${RUBY_EXAMPLESDIR}/dir.rb ${RUBY_EXAMPLESDIR}/dl/c++sample.C ${RUBY_EXAMPLESDIR}/dl/c++sample.rb @@ -740,6 +783,19 @@ ${RUBY_EXAMPLESDIR}/observ.rb ${RUBY_EXAMPLESDIR}/occur.pl ${RUBY_EXAMPLESDIR}/occur.rb ${RUBY_EXAMPLESDIR}/occur2.rb +${RUBY_EXAMPLESDIR}/openssl/c_rehash.rb +${RUBY_EXAMPLESDIR}/openssl/cert2text.rb +${RUBY_EXAMPLESDIR}/openssl/cert_store_view.rb +${RUBY_EXAMPLESDIR}/openssl/certstore.rb +${RUBY_EXAMPLESDIR}/openssl/cipher.rb +${RUBY_EXAMPLESDIR}/openssl/crlstore.rb +${RUBY_EXAMPLESDIR}/openssl/echo_cli.rb +${RUBY_EXAMPLESDIR}/openssl/echo_svr.rb +${RUBY_EXAMPLESDIR}/openssl/gen_csr.rb +${RUBY_EXAMPLESDIR}/openssl/smime_read.rb +${RUBY_EXAMPLESDIR}/openssl/smime_write.rb +${RUBY_EXAMPLESDIR}/openssl/wget.rb +@dirrm ${RUBY_EXAMPLESDIR}/openssl ${RUBY_EXAMPLESDIR}/optparse/opttest.rb ${RUBY_EXAMPLESDIR}/optparse/subcommand.rb @dirrm ${RUBY_EXAMPLESDIR}/optparse @@ -755,90 +811,10 @@ ${RUBY_EXAMPLESDIR}/rcs.rb ${RUBY_EXAMPLESDIR}/regx.rb ${RUBY_EXAMPLESDIR}/rss/blend.rb ${RUBY_EXAMPLESDIR}/rss/list_description.rb +${RUBY_EXAMPLESDIR}/rss/re_read.rb ${RUBY_EXAMPLESDIR}/rss/rss_recent.rb -${RUBY_EXAMPLESDIR}/rss/tdiary_plugin/rss-recent.rb -@dirrm ${RUBY_EXAMPLESDIR}/rss/tdiary_plugin @dirrm ${RUBY_EXAMPLESDIR}/rss ${RUBY_EXAMPLESDIR}/sieve.rb -${RUBY_EXAMPLESDIR}/soap/authheader/authmgr.rb -${RUBY_EXAMPLESDIR}/soap/authheader/client.rb -${RUBY_EXAMPLESDIR}/soap/authheader/client2.rb -${RUBY_EXAMPLESDIR}/soap/authheader/server.rb -${RUBY_EXAMPLESDIR}/soap/authheader/server2.rb -@dirrm ${RUBY_EXAMPLESDIR}/soap/authheader -${RUBY_EXAMPLESDIR}/soap/babelfish.rb -${RUBY_EXAMPLESDIR}/soap/calc/calc.rb -${RUBY_EXAMPLESDIR}/soap/calc/calc2.rb -${RUBY_EXAMPLESDIR}/soap/calc/client.rb -${RUBY_EXAMPLESDIR}/soap/calc/client2.rb -${RUBY_EXAMPLESDIR}/soap/calc/httpd.rb -${RUBY_EXAMPLESDIR}/soap/calc/samplehttpd.conf -${RUBY_EXAMPLESDIR}/soap/calc/server.cgi -${RUBY_EXAMPLESDIR}/soap/calc/server.rb -${RUBY_EXAMPLESDIR}/soap/calc/server2.rb -@dirrm ${RUBY_EXAMPLESDIR}/soap/calc -${RUBY_EXAMPLESDIR}/soap/digraph.rb -${RUBY_EXAMPLESDIR}/soap/exchange/client.rb -${RUBY_EXAMPLESDIR}/soap/exchange/exchange.rb -${RUBY_EXAMPLESDIR}/soap/exchange/httpd.rb -${RUBY_EXAMPLESDIR}/soap/exchange/samplehttpd.conf -${RUBY_EXAMPLESDIR}/soap/exchange/server.cgi -${RUBY_EXAMPLESDIR}/soap/exchange/server.rb -@dirrm ${RUBY_EXAMPLESDIR}/soap/exchange -${RUBY_EXAMPLESDIR}/soap/helloworld/hw_c.rb -${RUBY_EXAMPLESDIR}/soap/helloworld/hw_s.rb -${RUBY_EXAMPLESDIR}/soap/helloworld/hw_c_gzip.rb -${RUBY_EXAMPLESDIR}/soap/helloworld/hw_s_gzip.rb -@dirrm ${RUBY_EXAMPLESDIR}/soap/helloworld -${RUBY_EXAMPLESDIR}/soap/icd/IICD.rb -${RUBY_EXAMPLESDIR}/soap/icd/icd.rb -@dirrm ${RUBY_EXAMPLESDIR}/soap/icd -${RUBY_EXAMPLESDIR}/soap/raa/iRAA.rb -${RUBY_EXAMPLESDIR}/soap/raa/soap4r.rb -@dirrm ${RUBY_EXAMPLESDIR}/soap/raa -${RUBY_EXAMPLESDIR}/soap/raa2.4/raa.rb -${RUBY_EXAMPLESDIR}/soap/raa2.4/raaDriver.rb -${RUBY_EXAMPLESDIR}/soap/raa2.4/raaServiceClient.rb -${RUBY_EXAMPLESDIR}/soap/raa2.4/sample.rb -@dirrm ${RUBY_EXAMPLESDIR}/soap/raa2.4 -${RUBY_EXAMPLESDIR}/soap/sampleStruct/client.rb -${RUBY_EXAMPLESDIR}/soap/sampleStruct/httpd.rb -${RUBY_EXAMPLESDIR}/soap/sampleStruct/iSampleStruct.rb -${RUBY_EXAMPLESDIR}/soap/sampleStruct/samplehttpd.conf -${RUBY_EXAMPLESDIR}/soap/sampleStruct/sampleStruct.rb -${RUBY_EXAMPLESDIR}/soap/sampleStruct/server.cgi -${RUBY_EXAMPLESDIR}/soap/sampleStruct/server.rb -@dirrm ${RUBY_EXAMPLESDIR}/soap/sampleStruct -${RUBY_EXAMPLESDIR}/soap/scopesample/client.rb -${RUBY_EXAMPLESDIR}/soap/scopesample/httpd.rb -${RUBY_EXAMPLESDIR}/soap/scopesample/samplehttpd.conf -${RUBY_EXAMPLESDIR}/soap/scopesample/servant.rb -${RUBY_EXAMPLESDIR}/soap/scopesample/server.cgi -${RUBY_EXAMPLESDIR}/soap/scopesample/server.rb -@dirrm ${RUBY_EXAMPLESDIR}/soap/scopesample -${RUBY_EXAMPLESDIR}/soap/ssl/files/README -${RUBY_EXAMPLESDIR}/soap/ssl/files/ca.cert -${RUBY_EXAMPLESDIR}/soap/ssl/files/client.cert -${RUBY_EXAMPLESDIR}/soap/ssl/files/client.key -${RUBY_EXAMPLESDIR}/soap/ssl/files/server.cert -${RUBY_EXAMPLESDIR}/soap/ssl/files/server.key -${RUBY_EXAMPLESDIR}/soap/ssl/files/sslclient.properties -${RUBY_EXAMPLESDIR}/soap/ssl/files/sslclient_require_noserverauth.properties -${RUBY_EXAMPLESDIR}/soap/ssl/files/sslclient_with_clientauth.properties -${RUBY_EXAMPLESDIR}/soap/ssl/files/subca.cert -@dirrm ${RUBY_EXAMPLESDIR}/soap/ssl/files -${RUBY_EXAMPLESDIR}/soap/ssl/sslclient.rb -${RUBY_EXAMPLESDIR}/soap/ssl/sslclient_require_noserverauth.rb -${RUBY_EXAMPLESDIR}/soap/ssl/sslclient_with_clientauth.rb -${RUBY_EXAMPLESDIR}/soap/ssl/sslserver.rb -${RUBY_EXAMPLESDIR}/soap/ssl/sslserver_noauth.rb -${RUBY_EXAMPLESDIR}/soap/ssl/sslserver_require_clientauth.rb -@dirrm ${RUBY_EXAMPLESDIR}/soap/ssl -${RUBY_EXAMPLESDIR}/soap/swa/client.rb -${RUBY_EXAMPLESDIR}/soap/swa/server.rb -@dirrm ${RUBY_EXAMPLESDIR}/soap/swa -${RUBY_EXAMPLESDIR}/soap/whois.rb -@dirrm ${RUBY_EXAMPLESDIR}/soap ${RUBY_EXAMPLESDIR}/svr.rb ${RUBY_EXAMPLESDIR}/test.rb ${RUBY_EXAMPLESDIR}/testunit/adder.rb @@ -858,2279 +834,2412 @@ ${RUBY_EXAMPLESDIR}/webrick/demo-urlencoded.cgi ${RUBY_EXAMPLESDIR}/webrick/hello.cgi ${RUBY_EXAMPLESDIR}/webrick/hello.rb ${RUBY_EXAMPLESDIR}/webrick/httpd.rb +${RUBY_EXAMPLESDIR}/webrick/httpproxy.rb ${RUBY_EXAMPLESDIR}/webrick/httpsd.rb @dirrm ${RUBY_EXAMPLESDIR}/webrick -${RUBY_EXAMPLESDIR}/wsdl/amazon/AmazonSearch.rb -${RUBY_EXAMPLESDIR}/wsdl/amazon/AmazonSearchDriver.rb -${RUBY_EXAMPLESDIR}/wsdl/amazon/sampleClient.rb -${RUBY_EXAMPLESDIR}/wsdl/amazon/wsdlDriver.rb -@dirrm ${RUBY_EXAMPLESDIR}/wsdl/amazon -${RUBY_EXAMPLESDIR}/wsdl/googleSearch/GoogleSearch.rb -${RUBY_EXAMPLESDIR}/wsdl/googleSearch/GoogleSearchDriver.rb -${RUBY_EXAMPLESDIR}/wsdl/googleSearch/README -${RUBY_EXAMPLESDIR}/wsdl/googleSearch/httpd.rb -${RUBY_EXAMPLESDIR}/wsdl/googleSearch/sampleClient.rb -${RUBY_EXAMPLESDIR}/wsdl/googleSearch/samplehttpd.conf -${RUBY_EXAMPLESDIR}/wsdl/googleSearch/sjissearch.sh -${RUBY_EXAMPLESDIR}/wsdl/googleSearch/wsdlDriver.rb -@dirrm ${RUBY_EXAMPLESDIR}/wsdl/googleSearch -${RUBY_EXAMPLESDIR}/wsdl/raa/raa.wsdl -${RUBY_EXAMPLESDIR}/wsdl/raa/soap4r.rb -@dirrm ${RUBY_EXAMPLESDIR}/wsdl/raa -${RUBY_EXAMPLESDIR}/wsdl/raa2.4/raa.rb -${RUBY_EXAMPLESDIR}/wsdl/raa2.4/wsdlDriver.rb -@dirrm ${RUBY_EXAMPLESDIR}/wsdl/raa2.4 -@dirrm ${RUBY_EXAMPLESDIR}/wsdl @dirrm ${RUBY_EXAMPLESDIR} -share/ri/${RUBY_VER_DIR}/system/Abbrev/abbrev-i.yaml -share/ri/${RUBY_VER_DIR}/system/Abbrev/cdesc-Abbrev.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Abbrev -share/ri/${RUBY_VER_DIR}/system/ArgumentError/cdesc-ArgumentError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/ArgumentError -share/ri/${RUBY_VER_DIR}/system/Array/%26-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/%2b-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/%2d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/%3c%3d%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/%5b%5d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/%5b%5d-c.yaml -share/ri/${RUBY_VER_DIR}/system/Array/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/%7c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/abbrev-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/assoc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/at-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/cdesc-Array.yaml -share/ri/${RUBY_VER_DIR}/system/Array/clear-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/collect%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/collect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/compact%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/compact-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/concat-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/delete-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/delete_at-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/delete_if-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/each-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/each_index-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/empty%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/eql%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/fetch-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/fill-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/first-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/flatten%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/flatten-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/frozen%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/include%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/index-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/indexes-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/indices-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/insert-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/join-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/last-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/length-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/map%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/map-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Array/nitems-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/pack-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/pop-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/push-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/rassoc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/reject%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/reject-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/replace-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/reverse%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/reverse-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/reverse_each-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/rindex-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/select-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/shift-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/size-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/slice%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/slice-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/sort%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/sort-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/to_a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/to_ary-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/transpose-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/uniq%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/uniq-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/unshift-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/values_at-i.yaml -share/ri/${RUBY_VER_DIR}/system/Array/zip-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Array -share/ri/${RUBY_VER_DIR}/system/Base64/Deprecated/cdesc-Deprecated.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Base64/Deprecated -share/ri/${RUBY_VER_DIR}/system/Base64/b64encode-i.yaml -share/ri/${RUBY_VER_DIR}/system/Base64/cdesc-Base64.yaml -share/ri/${RUBY_VER_DIR}/system/Base64/decode64-i.yaml -share/ri/${RUBY_VER_DIR}/system/Base64/decode_b-i.yaml -share/ri/${RUBY_VER_DIR}/system/Base64/encode64-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Base64 -share/ri/${RUBY_VER_DIR}/system/Benchmark/Job/cdesc-Job.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Benchmark/Job -share/ri/${RUBY_VER_DIR}/system/Benchmark/Report/cdesc-Report.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Benchmark/Report -share/ri/${RUBY_VER_DIR}/system/Benchmark/Tms/%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/Tms/%2b-i.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/Tms/%2d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/Tms/%2f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/Tms/add%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/Tms/add-i.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/Tms/cdesc-Tms.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/Tms/format-i.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/Tms/memberwise-i.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/Tms/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/Tms/to_a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/Tms/to_s-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Benchmark/Tms -share/ri/${RUBY_VER_DIR}/system/Benchmark/benchmark-i.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/bm-i.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/bmbm-i.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/cdesc-Benchmark.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/measure-i.yaml -share/ri/${RUBY_VER_DIR}/system/Benchmark/realtime-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Benchmark -share/ri/${RUBY_VER_DIR}/system/Bignum/%25-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%26-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%2a%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%2b-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%2d%40-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%2d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%2f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%3c%3d%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%3e%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%5e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%7c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/%7e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/abs-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/cdesc-Bignum.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/coerce-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/div-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/divmod-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/eql%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/modulo-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/quo-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/remainder-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/size-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/to_f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Bignum/to_s-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Bignum -share/ri/${RUBY_VER_DIR}/system/Binding/cdesc-Binding.yaml -share/ri/${RUBY_VER_DIR}/system/Binding/clone-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Binding -share/ri/${RUBY_VER_DIR}/system/CGI/Cookie/cdesc-Cookie.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Cookie/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Cookie/parse-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Cookie/secure%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Cookie/to_s-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI/Cookie -share/ri/${RUBY_VER_DIR}/system/CGI/Html3/cdesc-Html3.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI/Html3 -share/ri/${RUBY_VER_DIR}/system/CGI/Html4/cdesc-Html4.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI/Html4 -share/ri/${RUBY_VER_DIR}/system/CGI/Html4Fr/cdesc-Html4Fr.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI/Html4Fr -share/ri/${RUBY_VER_DIR}/system/CGI/Html4Tr/cdesc-Html4Tr.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI/Html4Tr -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/a-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/base-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/blockquote-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/caption-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/cdesc-HtmlExtension.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/checkbox-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/checkbox_group-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/file_field-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/form-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/hidden-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/html-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/image_button-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/img-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/multipart_form-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/password_field-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/popup_menu-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/radio_button-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/radio_group-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/reset-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/scrolling_list-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/submit-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/text_field-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension/textarea-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI/HtmlExtension -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/Value/cdesc-Value.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/Value -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/cdesc-QueryExtension.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/has_key%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/include%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/initialize_query-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/key%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/keys-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/multipart%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/params%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/raw_cookie-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/raw_cookie2-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/read_from_cmdline-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension/read_multipart-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI/QueryExtension -share/ri/${RUBY_VER_DIR}/system/CGI/Session/%5b%5d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/FileStore/cdesc-FileStore.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/FileStore/close-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/FileStore/delete-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/FileStore/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/FileStore/restore-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/FileStore/update-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI/Session/FileStore -share/ri/${RUBY_VER_DIR}/system/CGI/Session/MemoryStore/cdesc-MemoryStore.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/MemoryStore/close-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/MemoryStore/delete-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/MemoryStore/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/MemoryStore/restore-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/MemoryStore/update-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI/Session/MemoryStore -share/ri/${RUBY_VER_DIR}/system/CGI/Session/NoSession/cdesc-NoSession.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI/Session/NoSession -share/ri/${RUBY_VER_DIR}/system/CGI/Session/cdesc-Session.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/close-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/create_new_id-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/delete-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/Session/update-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI/Session -share/ri/${RUBY_VER_DIR}/system/CGI/TagMaker/cdesc-TagMaker.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI/TagMaker -share/ri/${RUBY_VER_DIR}/system/CGI/cdesc-CGI.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/env_table-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/escape-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/escapeElement-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/escapeHTML-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/header-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/out-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/parse-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/pretty-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/print-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/rfc1123_date-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/stdinput-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/stdoutput-i.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/unescape-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/unescapeElement-c.yaml -share/ri/${RUBY_VER_DIR}/system/CGI/unescapeHTML-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/CGI -share/ri/${RUBY_VER_DIR}/system/Class/allocate-i.yaml -share/ri/${RUBY_VER_DIR}/system/Class/cdesc-Class.yaml -share/ri/${RUBY_VER_DIR}/system/Class/inherited-i.yaml -share/ri/${RUBY_VER_DIR}/system/Class/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/Class/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Class/new-i.yaml -share/ri/${RUBY_VER_DIR}/system/Class/superclass-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Class -share/ri/${RUBY_VER_DIR}/system/Comparable/%3c%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Comparable/%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Comparable/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Comparable/%3e%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Comparable/%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Comparable/between%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Comparable/cdesc-Comparable.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Comparable -share/ri/${RUBY_VER_DIR}/system/Complex/%25-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/%2a%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/%2b-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/%2d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/%2f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/%3c%3d%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/abs-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/abs2-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/angle-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/arg-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/cdesc-Complex.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/coerce-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/conj-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/conjugate-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/denominator-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/new%21-c.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/numerator-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/polar-c.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/polar-i.yaml -share/ri/${RUBY_VER_DIR}/system/Complex/to_s-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Complex -share/ri/${RUBY_VER_DIR}/system/ConditionVariable/broadcast-i.yaml -share/ri/${RUBY_VER_DIR}/system/ConditionVariable/cdesc-ConditionVariable.yaml -share/ri/${RUBY_VER_DIR}/system/ConditionVariable/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/ConditionVariable/signal-i.yaml -share/ri/${RUBY_VER_DIR}/system/ConditionVariable/wait-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/ConditionVariable -share/ri/${RUBY_VER_DIR}/system/Continuation/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Continuation/call-i.yaml -share/ri/${RUBY_VER_DIR}/system/Continuation/cdesc-Continuation.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Continuation -share/ri/${RUBY_VER_DIR}/system/Data/cdesc-Data.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Data -share/ri/${RUBY_VER_DIR}/system/Date/%2b-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/%2d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/%3c%3d%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/%3d%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/%3e%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/_dump-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/_load-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/ajd-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/ajd_to_amjd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/ajd_to_jd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/amjd-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/amjd_to_ajd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/cdesc-Date.yaml -share/ri/${RUBY_VER_DIR}/system/Date/civil-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/civil-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/civil_to_jd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/commercial-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/commercial-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/commercial_to_jd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/cwday-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/cweek-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/cwyear-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/day-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/day_fraction-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/day_fraction_to_time-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/downto-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/england-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/eql%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/gregorian-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/gregorian_leap%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/hour-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/italy-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/jd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/jd-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/jd_to_ajd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/jd_to_civil-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/jd_to_commercial-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/jd_to_ld-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/jd_to_mjd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/jd_to_ordinal-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/jd_to_wday-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/julian-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/julian_leap%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/ld-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/ld_to_jd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/leap%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/mday-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/min-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/mjd-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/mjd_to_jd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/mon-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/month-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/new_offset-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/new_start-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/new_with_hash-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/next-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/ns%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/ns%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/offset-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/ordinal-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/ordinal-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/ordinal_to_jd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/os%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/os%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/parse-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/sec-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/sec_fraction-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/start-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/step-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/strptime-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/succ-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/time-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/time_to_day_fraction-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/today-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/upto-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/valid_civil%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/valid_commercial%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/valid_jd%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/valid_ordinal%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/Date/wday-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/yday-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/year-i.yaml -share/ri/${RUBY_VER_DIR}/system/Date/zone-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Date -share/ri/${RUBY_VER_DIR}/system/DateTime/cdesc-DateTime.yaml -share/ri/${RUBY_VER_DIR}/system/DateTime/civil-c.yaml -share/ri/${RUBY_VER_DIR}/system/DateTime/commercial-c.yaml -share/ri/${RUBY_VER_DIR}/system/DateTime/jd-c.yaml -share/ri/${RUBY_VER_DIR}/system/DateTime/new_with_hash-c.yaml -share/ri/${RUBY_VER_DIR}/system/DateTime/now-c.yaml -share/ri/${RUBY_VER_DIR}/system/DateTime/ordinal-c.yaml -share/ri/${RUBY_VER_DIR}/system/DateTime/parse-c.yaml -share/ri/${RUBY_VER_DIR}/system/DateTime/strptime-c.yaml -share/ri/${RUBY_VER_DIR}/system/DateTime/valid_time%3f-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/DateTime -share/ri/${RUBY_VER_DIR}/system/Dir/%5b%5d-c.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/cdesc-Dir.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/chdir-c.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/chroot-c.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/close-i.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/delete-c.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/each-i.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/entries-c.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/foreach-c.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/getwd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/glob-c.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/mkdir-c.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/open-c.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/path-i.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/pos%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/pos-i.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/pwd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/read-i.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/rewind-i.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/rmdir-c.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/seek-i.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/tell-i.yaml -share/ri/${RUBY_VER_DIR}/system/Dir/unlink-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Dir -share/ri/${RUBY_VER_DIR}/system/EOFError/cdesc-EOFError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/EOFError -share/ri/${RUBY_VER_DIR}/system/Enumerable/all%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/any%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/cdesc-Enumerable.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/collect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/detect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/each_with_index-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/entries-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/find-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/find_all-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/grep-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/include%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/inject-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/map-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/max-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/member%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/min-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/partition-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/reject-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/select-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/sort-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/sort_by-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/to_a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/to_set-i.yaml -share/ri/${RUBY_VER_DIR}/system/Enumerable/zip-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Enumerable -share/ri/${RUBY_VER_DIR}/system/Errno/cdesc-Errno.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Errno -share/ri/${RUBY_VER_DIR}/system/Exception/backtrace-i.yaml -share/ri/${RUBY_VER_DIR}/system/Exception/cdesc-Exception.yaml -share/ri/${RUBY_VER_DIR}/system/Exception/exception-c.yaml -share/ri/${RUBY_VER_DIR}/system/Exception/exception-i.yaml -share/ri/${RUBY_VER_DIR}/system/Exception/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Exception/message-i.yaml -share/ri/${RUBY_VER_DIR}/system/Exception/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Exception/set_backtrace-i.yaml -share/ri/${RUBY_VER_DIR}/system/Exception/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Exception/to_str-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Exception -share/ri/${RUBY_VER_DIR}/system/ExceptionForMatrix/cdesc-ExceptionForMatrix.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/ExceptionForMatrix -share/ri/${RUBY_VER_DIR}/system/FalseClass/%26-i.yaml -share/ri/${RUBY_VER_DIR}/system/FalseClass/%5e-i.yaml -share/ri/${RUBY_VER_DIR}/system/FalseClass/%7c-i.yaml -share/ri/${RUBY_VER_DIR}/system/FalseClass/cdesc-FalseClass.yaml -share/ri/${RUBY_VER_DIR}/system/FalseClass/to_s-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/FalseClass -share/ri/${RUBY_VER_DIR}/system/File/Constants/cdesc-Constants.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/File/Constants -share/ri/${RUBY_VER_DIR}/system/File/Stat/%3c%3d%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/atime-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/blksize-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/blockdev%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/blocks-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/cdesc-Stat.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/chardev%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/ctime-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/dev-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/dev_major-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/dev_minor-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/directory%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/executable%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/executable_real%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/file%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/ftype-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/gid-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/grpowned%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/ino-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/mode-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/mtime-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/nlink-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/owned%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/pipe%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/rdev-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/rdev_major-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/rdev_minor-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/readable%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/readable_real%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/setgid%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/setuid%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/size%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/size-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/socket%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/sticky%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/symlink%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/uid-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/writable%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/writable_real%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/Stat/zero%3f-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/File/Stat -share/ri/${RUBY_VER_DIR}/system/File/atime-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/atime-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/basename-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/blockdev%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/cdesc-File.yaml -share/ri/${RUBY_VER_DIR}/system/File/chardev%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/chmod-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/chmod-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/chown-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/chown-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/ctime-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/ctime-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/delete-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/directory%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/dirname-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/executable%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/executable_real%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/exist%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/exists%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/expand_path-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/extname-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/file%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/flock-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/fnmatch%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/fnmatch-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/ftype-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/grpowned%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/join-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/lchmod-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/lchown-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/link-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/lstat-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/lstat-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/mtime-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/mtime-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/owned%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/path-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/pipe%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/readable%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/readable_real%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/readlink-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/rename-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/setgid%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/setuid%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/size%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/size-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/socket%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/split-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/stat-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/sticky%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/symlink%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/symlink-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/truncate-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/truncate-i.yaml -share/ri/${RUBY_VER_DIR}/system/File/umask-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/unlink-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/utime-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/writable%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/writable_real%3f-c.yaml -share/ri/${RUBY_VER_DIR}/system/File/zero%3f-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/File -share/ri/${RUBY_VER_DIR}/system/FileTest/blockdev%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/cdesc-FileTest.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/chardev%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/directory%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/executable%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/executable_real%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/exist%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/exists%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/file%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/grpowned%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/owned%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/pipe%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/readable%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/readable_real%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/setgid%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/setuid%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/size%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/size-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/socket%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/sticky%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/symlink%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/writable%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/writable_real%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileTest/zero%3f-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/FileTest -share/ri/${RUBY_VER_DIR}/system/FileUtils/CopyContext_/_copy_content-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/CopyContext_/_copy_entry-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/CopyContext_/cdesc-CopyContext_.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/CopyContext_/chmod-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/CopyContext_/chown-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/CopyContext_/copy_content-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/CopyContext_/copy_entry-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/CopyContext_/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/CopyContext_/preserve-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/CopyContext_/stat-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/FileUtils/CopyContext_ -share/ri/${RUBY_VER_DIR}/system/FileUtils/DryRun/cdesc-DryRun.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/FileUtils/DryRun -share/ri/${RUBY_VER_DIR}/system/FileUtils/NoWrite/cdesc-NoWrite.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/FileUtils/NoWrite -share/ri/${RUBY_VER_DIR}/system/FileUtils/Verbose/cdesc-Verbose.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/FileUtils/Verbose -share/ri/${RUBY_VER_DIR}/system/FileUtils/cd-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/cdesc-FileUtils.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/chdir-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/chmod-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/cmp-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/compare_file-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/compare_stream-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/copy_entry-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/copy_file-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/copy_stream-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/cp-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/cp_r-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/fu_blksize-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/fu_check_options-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/fu_default_blksize-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/fu_each_src_dest-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/fu_each_src_dest0-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/fu_list-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/fu_mkdir-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/fu_output_message-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/fu_same%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/fu_stream_blksize-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/fu_update_option-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/getwd-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/have_st_ino%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/identical%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/install-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/link-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/ln-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/ln_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/ln_sf-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/makedirs-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/mkdir-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/mkdir_p-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/mkpath-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/move-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/mv-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/pwd-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/remove-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/rm-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/rm_f-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/rm_r-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/rm_rf-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/rmdir-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/rmtree-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/safe_unlink-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/symlink-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/touch-i.yaml -share/ri/${RUBY_VER_DIR}/system/FileUtils/uptodate%3f-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/FileUtils -share/ri/${RUBY_VER_DIR}/system/Find/cdesc-Find.yaml -share/ri/${RUBY_VER_DIR}/system/Find/find-i.yaml -share/ri/${RUBY_VER_DIR}/system/Find/prune-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Find -share/ri/${RUBY_VER_DIR}/system/Fixnum/%25-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%26-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%2a%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%2b-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%2d%40-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%2d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%2f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%3c%3d%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%3c%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%3e%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%3e%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%5e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%7c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/%7e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/abs-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/cdesc-Fixnum.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/div-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/divmod-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/id2name-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/induced_from-c.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/modulo-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/quo-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/size-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/to_f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/to_sym-i.yaml -share/ri/${RUBY_VER_DIR}/system/Fixnum/zero%3f-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Fixnum -share/ri/${RUBY_VER_DIR}/system/Float/%25-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/%2a%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/%2b-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/%2d%40-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/%2d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/%2f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/%3c%3d%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/%3c%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/%3e%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/abs-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/cdesc-Float.yaml -share/ri/${RUBY_VER_DIR}/system/Float/ceil-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/coerce-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/divmod-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/eql%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/finite%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/floor-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/induced_from-c.yaml -share/ri/${RUBY_VER_DIR}/system/Float/infinite%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/modulo-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/nan%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/round-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/to_f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/to_i-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/to_int-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/truncate-i.yaml -share/ri/${RUBY_VER_DIR}/system/Float/zero%3f-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Float -share/ri/${RUBY_VER_DIR}/system/FloatDomainError/cdesc-FloatDomainError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/FloatDomainError -share/ri/${RUBY_VER_DIR}/system/GC/cdesc-GC.yaml -share/ri/${RUBY_VER_DIR}/system/GC/disable-c.yaml -share/ri/${RUBY_VER_DIR}/system/GC/enable-c.yaml -share/ri/${RUBY_VER_DIR}/system/GC/garbage_collect-i.yaml -share/ri/${RUBY_VER_DIR}/system/GC/start-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/GC -share/ri/${RUBY_VER_DIR}/system/Generator/cdesc-Generator.yaml -share/ri/${RUBY_VER_DIR}/system/Generator/current-i.yaml -share/ri/${RUBY_VER_DIR}/system/Generator/each-i.yaml -share/ri/${RUBY_VER_DIR}/system/Generator/end%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Generator/index-i.yaml -share/ri/${RUBY_VER_DIR}/system/Generator/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Generator/next%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Generator/next-i.yaml -share/ri/${RUBY_VER_DIR}/system/Generator/pos-i.yaml -share/ri/${RUBY_VER_DIR}/system/Generator/rewind-i.yaml -share/ri/${RUBY_VER_DIR}/system/Generator/yield-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Generator -share/ri/${RUBY_VER_DIR}/system/Hash/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/%5b%5d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/%5b%5d-c.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/cdesc-Hash.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/clear-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/default%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/default-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/default_proc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/delete-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/delete_if-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/each-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/each_key-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/each_pair-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/each_value-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/empty%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/fetch-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/has_key%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/has_value%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/include%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/index-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/indexes-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/indices-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/invert-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/key%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/keys-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/length-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/member%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/merge%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/merge-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/rehash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/reject%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/reject-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/replace-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/select-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/shift-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/size-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/sort-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/store-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/to_a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/to_hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/update-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/value%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/values-i.yaml -share/ri/${RUBY_VER_DIR}/system/Hash/values_at-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Hash -share/ri/${RUBY_VER_DIR}/system/IO/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/binmode-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/cdesc-IO.yaml -share/ri/${RUBY_VER_DIR}/system/IO/close-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/close_read-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/close_write-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/closed%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/each-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/each_byte-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/each_line-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/eof%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/eof-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/fcntl-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/fileno-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/flush-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/for_fd-c.yaml -share/ri/${RUBY_VER_DIR}/system/IO/foreach-c.yaml -share/ri/${RUBY_VER_DIR}/system/IO/fsync-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/getc-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/gets-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/ioctl-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/isatty-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/lineno%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/lineno-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/IO/open-c.yaml -share/ri/${RUBY_VER_DIR}/system/IO/pid-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/pipe-c.yaml -share/ri/${RUBY_VER_DIR}/system/IO/popen-c.yaml -share/ri/${RUBY_VER_DIR}/system/IO/pos%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/pos-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/print-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/printf-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/putc-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/puts-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/read-c.yaml -share/ri/${RUBY_VER_DIR}/system/IO/read-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/readchar-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/readline-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/readlines-c.yaml -share/ri/${RUBY_VER_DIR}/system/IO/readlines-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/reopen-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/rewind-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/seek-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/select-c.yaml -share/ri/${RUBY_VER_DIR}/system/IO/stat-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/sync%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/sync-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/sysopen-c.yaml -share/ri/${RUBY_VER_DIR}/system/IO/sysread-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/sysseek-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/syswrite-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/tell-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/to_i-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/to_io-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/tty%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/ungetc-i.yaml -share/ri/${RUBY_VER_DIR}/system/IO/write-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/IO -share/ri/${RUBY_VER_DIR}/system/IOError/cdesc-IOError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/IOError -share/ri/${RUBY_VER_DIR}/system/Iconv/Failure/cdesc-Failure.yaml -share/ri/${RUBY_VER_DIR}/system/Iconv/Failure/failed-i.yaml -share/ri/${RUBY_VER_DIR}/system/Iconv/Failure/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Iconv/Failure/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Iconv/Failure/success-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Iconv/Failure -share/ri/${RUBY_VER_DIR}/system/Iconv/IllegalSequence/cdesc-IllegalSequence.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Iconv/IllegalSequence -share/ri/${RUBY_VER_DIR}/system/Iconv/InvalidCharacter/cdesc-InvalidCharacter.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Iconv/InvalidCharacter -share/ri/${RUBY_VER_DIR}/system/Iconv/OutOfRange/cdesc-OutOfRange.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Iconv/OutOfRange -share/ri/${RUBY_VER_DIR}/system/Iconv/cdesc-Iconv.yaml -share/ri/${RUBY_VER_DIR}/system/Iconv/charset_map-c.yaml -share/ri/${RUBY_VER_DIR}/system/Iconv/close-i.yaml -share/ri/${RUBY_VER_DIR}/system/Iconv/conv-c.yaml -share/ri/${RUBY_VER_DIR}/system/Iconv/iconv-c.yaml -share/ri/${RUBY_VER_DIR}/system/Iconv/iconv-i.yaml -share/ri/${RUBY_VER_DIR}/system/Iconv/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Iconv/open-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Iconv -share/ri/${RUBY_VER_DIR}/system/IndexError/cdesc-IndexError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/IndexError -share/ri/${RUBY_VER_DIR}/system/Integer/cdesc-Integer.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/ceil-i.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/chr-i.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/downto-i.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/floor-i.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/induced_from-c.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/integer%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/next-i.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/round-i.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/succ-i.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/times-i.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/to_i-i.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/to_int-i.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/truncate-i.yaml -share/ri/${RUBY_VER_DIR}/system/Integer/upto-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Integer -share/ri/${RUBY_VER_DIR}/system/Interrupt/cdesc-Interrupt.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Interrupt -share/ri/${RUBY_VER_DIR}/system/Kernel/%60-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/Array-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/Float-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/Integer-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/String-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/abort-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/at_exit-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/autoload%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/autoload-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/binding-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/block_given%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/callcc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/caller-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/catch-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/cdesc-Kernel.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/chomp%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/chomp-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/chop%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/chop-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/eval-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/exec-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/exit%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/exit-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/fail-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/fork-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/format-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/getc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/gets-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/global_variables-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/gsub%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/gsub-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/iterator%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/lambda-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/load-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/local_variables-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/loop-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/method_missing-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/open-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/p-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/print-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/printf-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/proc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/putc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/puts-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/raise-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/rand-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/readline-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/readlines-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/require-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/scan-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/select-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/set_trace_func-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/sleep-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/split-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/sprintf-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/srand-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/sub%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/sub-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/syscall-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/system-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/test-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/throw-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/trace_var-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/trap-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/untrace_var-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/warn-i.yaml -share/ri/${RUBY_VER_DIR}/system/Kernel/y-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Kernel -share/ri/${RUBY_VER_DIR}/system/LoadError/cdesc-LoadError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/LoadError -share/ri/${RUBY_VER_DIR}/system/LocalJumpError/cdesc-LocalJumpError.yaml -share/ri/${RUBY_VER_DIR}/system/LocalJumpError/exit_value-i.yaml -share/ri/${RUBY_VER_DIR}/system/LocalJumpError/reason-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/LocalJumpError -share/ri/${RUBY_VER_DIR}/system/Logger/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/Application/cdesc-Application.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/Application/level%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/Application/log%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/Application/log-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/Application/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/Application/run-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/Application/set_log-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/Application/start-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Logger/Application -share/ri/${RUBY_VER_DIR}/system/Logger/Error/cdesc-Error.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Logger/Error -share/ri/${RUBY_VER_DIR}/system/Logger/LogDevice/add_log_header-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/LogDevice/cdesc-LogDevice.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/LogDevice/close-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/LogDevice/create_logfile-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/LogDevice/eod-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/LogDevice/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/LogDevice/open_logfile-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/LogDevice/shift_log%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/LogDevice/shift_log-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/LogDevice/write-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Logger/LogDevice -share/ri/${RUBY_VER_DIR}/system/Logger/Severity/cdesc-Severity.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Logger/Severity -share/ri/${RUBY_VER_DIR}/system/Logger/ShiftingError/cdesc-ShiftingError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Logger/ShiftingError -share/ri/${RUBY_VER_DIR}/system/Logger/add-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/cdesc-Logger.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/close-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/debug%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/debug-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/error%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/error-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/fatal%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/fatal-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/format_datetime-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/format_message-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/format_severity-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/info%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/info-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/log-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/msg2str-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/unknown-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/warn%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Logger/warn-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Logger -share/ri/${RUBY_VER_DIR}/system/Marshal/cdesc-Marshal.yaml -share/ri/${RUBY_VER_DIR}/system/Marshal/dump-i.yaml -share/ri/${RUBY_VER_DIR}/system/Marshal/load-i.yaml -share/ri/${RUBY_VER_DIR}/system/Marshal/restore-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Marshal -share/ri/${RUBY_VER_DIR}/system/MatchData/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/begin-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/captures-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/cdesc-MatchData.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/end-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/length-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/offset-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/post_match-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/pre_match-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/select-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/size-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/string-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/to_a-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/MatchData/values_at-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/MatchData -share/ri/${RUBY_VER_DIR}/system/Math/acos%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/acos-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/acosh%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/acosh-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/asin%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/asin-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/asinh%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/asinh-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/atan%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/atan-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/atan2%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/atan2-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/atanh%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/atanh-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/cdesc-Math.yaml -share/ri/${RUBY_VER_DIR}/system/Math/cos%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/cos-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/cosh%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/cosh-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/erf-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/erfc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/exp%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/exp-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/frexp-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/hypot-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/ldexp-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/log%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/log-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/log10%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/log10-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/sin%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/sin-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/sinh%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/sinh-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/sqrt%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/sqrt-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/tan%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/tan-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/tanh%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Math/tanh-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Math -share/ri/${RUBY_VER_DIR}/system/Matrix/%2a%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/%2b-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/%2d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/%2f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/%5b%5d-c.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/Scalar/cdesc-Scalar.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Matrix/Scalar -share/ri/${RUBY_VER_DIR}/system/Matrix/cdesc-Matrix.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/clone-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/coerce-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/collect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/column-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/column_size-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/column_vector-c.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/column_vectors-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/columns-c.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/compare_by_row_vectors-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/det-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/determinant-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/diagonal-c.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/eql%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/identity-c.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/init_rows-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/inv-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/inverse-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/inverse_from-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/map-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/minor-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/rank-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/regular%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/row-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/row_size-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/row_vector-c.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/row_vectors-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/rows-c.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/scalar-c.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/singular%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/square%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/t-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/to_a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/tr-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/trace-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/transpose-i.yaml -share/ri/${RUBY_VER_DIR}/system/Matrix/zero-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Matrix -share/ri/${RUBY_VER_DIR}/system/Method/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Method/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Method/arity-i.yaml -share/ri/${RUBY_VER_DIR}/system/Method/call-i.yaml -share/ri/${RUBY_VER_DIR}/system/Method/cdesc-Method.yaml -share/ri/${RUBY_VER_DIR}/system/Method/clone-i.yaml -share/ri/${RUBY_VER_DIR}/system/Method/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Method/to_proc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Method/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Method/unbind-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Method -share/ri/${RUBY_VER_DIR}/system/Module/%3c%3d%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/%3c%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/%3d%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/%3e%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/alias_method-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/ancestors-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/append_features-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/attr-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/attr_accessor-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/attr_reader-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/attr_writer-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/autoload%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/autoload-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/cdesc-Module.yaml -share/ri/${RUBY_VER_DIR}/system/Module/class_eval-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/class_variables-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/const_defined%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/const_get-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/const_missing-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/const_set-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/constants-c.yaml -share/ri/${RUBY_VER_DIR}/system/Module/constants-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/define_method-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/extend_object-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/extended-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/freeze-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/include%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/include-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/included-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/included_modules-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/instance_method-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/instance_methods-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/method_added-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/method_defined%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/method_removed-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/method_undefined-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/module_eval-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/module_function-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/name-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/nesting-c.yaml -share/ri/${RUBY_VER_DIR}/system/Module/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Module/private-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/private_class_method-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/private_instance_methods-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/private_method_defined%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/protected-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/protected_instance_methods-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/protected_method_defined%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/public-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/public_class_method-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/public_instance_methods-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/public_method_defined%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/remove_class_variable-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/remove_const-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/remove_method-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Module/undef_method-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Module -share/ri/${RUBY_VER_DIR}/system/Mutex/cdesc-Mutex.yaml -share/ri/${RUBY_VER_DIR}/system/Mutex/exclusive_unlock-i.yaml -share/ri/${RUBY_VER_DIR}/system/Mutex/lock-i.yaml -share/ri/${RUBY_VER_DIR}/system/Mutex/locked%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Mutex/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Mutex/synchronize-i.yaml -share/ri/${RUBY_VER_DIR}/system/Mutex/try_lock-i.yaml -share/ri/${RUBY_VER_DIR}/system/Mutex/unlock-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Mutex -share/ri/${RUBY_VER_DIR}/system/NameError/cdesc-NameError.yaml -share/ri/${RUBY_VER_DIR}/system/NameError/message/%21-c.yaml -share/ri/${RUBY_VER_DIR}/system/NameError/message/_dump-i.yaml -share/ri/${RUBY_VER_DIR}/system/NameError/message/_load-c.yaml -share/ri/${RUBY_VER_DIR}/system/NameError/message/cdesc-message.yaml -share/ri/${RUBY_VER_DIR}/system/NameError/message/to_str-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/NameError/message -share/ri/${RUBY_VER_DIR}/system/NameError/name-i.yaml -share/ri/${RUBY_VER_DIR}/system/NameError/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/NameError/to_s-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/NameError -share/ri/${RUBY_VER_DIR}/system/NilClass/%26-i.yaml -share/ri/${RUBY_VER_DIR}/system/NilClass/%5e-i.yaml -share/ri/${RUBY_VER_DIR}/system/NilClass/%7c-i.yaml -share/ri/${RUBY_VER_DIR}/system/NilClass/cdesc-NilClass.yaml -share/ri/${RUBY_VER_DIR}/system/NilClass/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/NilClass/nil%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/NilClass/to_a-i.yaml -share/ri/${RUBY_VER_DIR}/system/NilClass/to_f-i.yaml -share/ri/${RUBY_VER_DIR}/system/NilClass/to_i-i.yaml -share/ri/${RUBY_VER_DIR}/system/NilClass/to_s-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/NilClass -share/ri/${RUBY_VER_DIR}/system/NoMemoryError/cdesc-NoMemoryError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/NoMemoryError -share/ri/${RUBY_VER_DIR}/system/NoMethodError/args-i.yaml -share/ri/${RUBY_VER_DIR}/system/NoMethodError/cdesc-NoMethodError.yaml -share/ri/${RUBY_VER_DIR}/system/NoMethodError/new-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/NoMethodError -share/ri/${RUBY_VER_DIR}/system/NotImplementedError/cdesc-NotImplementedError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/NotImplementedError -share/ri/${RUBY_VER_DIR}/system/Numeric/%2b%40-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/%2d%40-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/%3c%3d%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/abs-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/angle-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/arg-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/cdesc-Numeric.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/ceil-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/coerce-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/conj-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/conjugate-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/div-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/divmod-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/eql%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/floor-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/im-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/imag-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/image-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/integer%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/modulo-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/nonzero%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/polar-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/quo-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/real-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/remainder-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/round-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/singleton_method_added-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/step-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/to_int-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/truncate-i.yaml -share/ri/${RUBY_VER_DIR}/system/Numeric/zero%3f-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Numeric -share/ri/${RUBY_VER_DIR}/system/Object/%3d%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/%3d%7e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/__id__-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/__send__-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/cdesc-Object.yaml -share/ri/${RUBY_VER_DIR}/system/Object/class-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/clone-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/display-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/dup-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/eql%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/equal%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/extend-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/freeze-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/frozen%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/id-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/instance_eval-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/instance_of%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/instance_variable_get-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/instance_variable_set-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/instance_variables-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/is_a%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/kind_of%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/method-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/methods-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Object/nil%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/object_id-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/private_methods-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/protected_methods-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/public_methods-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/remove_instance_variable-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/respond_to%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/send-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/singleton_method_added-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/singleton_method_removed-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/singleton_method_undefined-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/singleton_methods-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/taint-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/tainted%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/to_a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/type-i.yaml -share/ri/${RUBY_VER_DIR}/system/Object/untaint-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Object -share/ri/${RUBY_VER_DIR}/system/ObjectSpace/_id2ref-i.yaml -share/ri/${RUBY_VER_DIR}/system/ObjectSpace/add_finalizer-i.yaml -share/ri/${RUBY_VER_DIR}/system/ObjectSpace/call_finalizer-i.yaml -share/ri/${RUBY_VER_DIR}/system/ObjectSpace/cdesc-ObjectSpace.yaml -share/ri/${RUBY_VER_DIR}/system/ObjectSpace/define_finalizer-i.yaml -share/ri/${RUBY_VER_DIR}/system/ObjectSpace/each_object-i.yaml -share/ri/${RUBY_VER_DIR}/system/ObjectSpace/finalizers-i.yaml -share/ri/${RUBY_VER_DIR}/system/ObjectSpace/garbage_collect-i.yaml -share/ri/${RUBY_VER_DIR}/system/ObjectSpace/remove_finalizer-i.yaml -share/ri/${RUBY_VER_DIR}/system/ObjectSpace/undefine_finalizer-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/ObjectSpace -share/ri/${RUBY_VER_DIR}/system/Observable/add_observer-i.yaml -share/ri/${RUBY_VER_DIR}/system/Observable/cdesc-Observable.yaml -share/ri/${RUBY_VER_DIR}/system/Observable/changed%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Observable/changed-i.yaml -share/ri/${RUBY_VER_DIR}/system/Observable/count_observers-i.yaml -share/ri/${RUBY_VER_DIR}/system/Observable/delete_observer-i.yaml -share/ri/${RUBY_VER_DIR}/system/Observable/delete_observers-i.yaml -share/ri/${RUBY_VER_DIR}/system/Observable/notify_observers-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Observable -share/ri/${RUBY_VER_DIR}/system/Pathname/%2b-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/%3c%3d%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/%3d%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/absolute%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/atime-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/basename-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/blockdev%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/cdesc-Pathname.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/chardev%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/chdir-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/children-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/chmod-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/chown-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/chroot-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/cleanpath-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/cleanpath_aggressive-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/cleanpath_conservative-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/ctime-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/delete-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/dir_foreach-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/directory%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/dirname-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/each_entry-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/each_filename-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/each_line-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/entries-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/eql%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/executable%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/executable_real%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/exist%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/expand_path-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/extname-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/file%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/find-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/fnmatch%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/fnmatch-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/foreach-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/foreachline-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/freeze-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/ftype-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/getwd-c.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/glob-c.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/grpowned%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/join-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/lchmod-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/lchown-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/link-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/lstat-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/make_link-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/make_symlink-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/mkdir-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/mkpath-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/mountpoint%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/mtime-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/open-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/opendir-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/owned%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/parent-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/pipe%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/read-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/readable%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/readable_real%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/readlines-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/readlink-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/realpath-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/relative%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/relative_path_from-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/rename-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/rmdir-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/rmtree-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/root%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/setgid%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/setuid%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/size%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/size-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/socket%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/split-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/stat-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/sticky%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/symlink%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/symlink-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/sysopen-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/taint-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/to_str-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/truncate-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/unlink-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/untaint-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/utime-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/writable%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/writable_real%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Pathname/zero%3f-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Pathname -share/ri/${RUBY_VER_DIR}/system/PathnameTest/AnotherStringLike/cdesc-AnotherStringLike.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/PathnameTest/AnotherStringLike -share/ri/${RUBY_VER_DIR}/system/PathnameTest/cdesc-PathnameTest.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/PathnameTest -share/ri/${RUBY_VER_DIR}/system/Precision/cdesc-Precision.yaml -share/ri/${RUBY_VER_DIR}/system/Precision/included-c.yaml -share/ri/${RUBY_VER_DIR}/system/Precision/prec-i.yaml -share/ri/${RUBY_VER_DIR}/system/Precision/prec_f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Precision/prec_i-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Precision -share/ri/${RUBY_VER_DIR}/system/Proc/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Proc/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Proc/arity-i.yaml -share/ri/${RUBY_VER_DIR}/system/Proc/binding-i.yaml -share/ri/${RUBY_VER_DIR}/system/Proc/call-i.yaml -share/ri/${RUBY_VER_DIR}/system/Proc/cdesc-Proc.yaml -share/ri/${RUBY_VER_DIR}/system/Proc/clone-i.yaml -share/ri/${RUBY_VER_DIR}/system/Proc/dup-i.yaml -share/ri/${RUBY_VER_DIR}/system/Proc/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Proc/to_proc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Proc/to_s-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Proc -share/ri/${RUBY_VER_DIR}/system/Process/GID/cdesc-GID.yaml -share/ri/${RUBY_VER_DIR}/system/Process/GID/change_privilege-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/GID/eid%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/GID/eid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/GID/grant_privilege-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/GID/re_exchange-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/GID/re_exchangeable%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/GID/rid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/GID/sid_available%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/GID/switch-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Process/GID -share/ri/${RUBY_VER_DIR}/system/Process/Status/%26-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/%3e%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/cdesc-Status.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/coredump%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/exited%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/exitstatus-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/pid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/signaled%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/stopped%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/stopsig-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/success%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/termsig-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/to_i-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/to_int-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Status/to_s-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Process/Status -share/ri/${RUBY_VER_DIR}/system/Process/Sys/cdesc-Sys.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/getegid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/geteuid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/getgid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/getuid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/issetugid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/setegid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/seteuid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/setgid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/setregid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/setresgid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/setresuid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/setreuid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/setrgid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/setruid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/Sys/setuid-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Process/Sys -share/ri/${RUBY_VER_DIR}/system/Process/UID/cdesc-UID.yaml -share/ri/${RUBY_VER_DIR}/system/Process/UID/change_privilege-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/UID/eid%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/UID/eid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/UID/grant_privilege-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/UID/re_exchange-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/UID/re_exchangeable%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/UID/rid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/UID/sid_available%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/UID/switch-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Process/UID -share/ri/${RUBY_VER_DIR}/system/Process/abort-c.yaml -share/ri/${RUBY_VER_DIR}/system/Process/cdesc-Process.yaml -share/ri/${RUBY_VER_DIR}/system/Process/detach-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/egid%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/egid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/euid%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/euid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/exit%21-c.yaml -share/ri/${RUBY_VER_DIR}/system/Process/exit-c.yaml -share/ri/${RUBY_VER_DIR}/system/Process/fork-c.yaml -share/ri/${RUBY_VER_DIR}/system/Process/getpgid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/getpgrp-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/getpriority-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/gid%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/gid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/groups%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/groups-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/initgroups-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/kill-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/maxgroups%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/maxgroups-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/pid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/ppid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/setpgid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/setpgrp-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/setpriority-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/setsid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/times-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/uid%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/uid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/wait-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/wait2-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/waitall-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/waitpid-i.yaml -share/ri/${RUBY_VER_DIR}/system/Process/waitpid2-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Process -share/ri/${RUBY_VER_DIR}/system/Queue/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Queue/cdesc-Queue.yaml -share/ri/${RUBY_VER_DIR}/system/Queue/clear-i.yaml -share/ri/${RUBY_VER_DIR}/system/Queue/deq-i.yaml -share/ri/${RUBY_VER_DIR}/system/Queue/empty%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Queue/enq-i.yaml -share/ri/${RUBY_VER_DIR}/system/Queue/length-i.yaml -share/ri/${RUBY_VER_DIR}/system/Queue/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Queue/num_waiting-i.yaml -share/ri/${RUBY_VER_DIR}/system/Queue/pop-i.yaml -share/ri/${RUBY_VER_DIR}/system/Queue/push-i.yaml -share/ri/${RUBY_VER_DIR}/system/Queue/shift-i.yaml -share/ri/${RUBY_VER_DIR}/system/Queue/size-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Queue -share/ri/${RUBY_VER_DIR}/system/Range/%3d%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/begin-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/cdesc-Range.yaml -share/ri/${RUBY_VER_DIR}/system/Range/each-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/end-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/eql%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/exclude_end%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/first-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/include%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/last-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/member%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Range/step-i.yaml -share/ri/${RUBY_VER_DIR}/system/Range/to_s-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Range -share/ri/${RUBY_VER_DIR}/system/RangeError/cdesc-RangeError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/RangeError -share/ri/${RUBY_VER_DIR}/system/Regexp/%3d%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/%3d%7e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/%7e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/casefold%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/cdesc-Regexp.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/compile-c.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/eql%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/escape-c.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/kcode-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/last_match-c.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/match-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/options-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/quote-c.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/source-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Regexp/union-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Regexp -share/ri/${RUBY_VER_DIR}/system/RegexpError/cdesc-RegexpError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/RegexpError -share/ri/${RUBY_VER_DIR}/system/RuntimeError/cdesc-RuntimeError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/RuntimeError -share/ri/${RUBY_VER_DIR}/system/ScriptError/cdesc-ScriptError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/ScriptError -share/ri/${RUBY_VER_DIR}/system/SecurityError/cdesc-SecurityError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/SecurityError -share/ri/${RUBY_VER_DIR}/system/Set/%26-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/%2b-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/%2d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/%5b%5d-c.yaml -share/ri/${RUBY_VER_DIR}/system/Set/%5e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/%7c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/add%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/add-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/cdesc-Set.yaml -share/ri/${RUBY_VER_DIR}/system/Set/classify-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/clear-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/collect%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/delete%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/delete-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/delete_if-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/difference-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/divide-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/each-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/empty%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/flatten%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/flatten-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/flatten_merge-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/include%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/intersection-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/length-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/map%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/member%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/merge-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Set/proper_subset%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/proper_superset%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/reject%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/replace-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/size-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/subset%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/subtract-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/superset%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/to_a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Set/union-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Set -share/ri/${RUBY_VER_DIR}/system/Shellwords/cdesc-Shellwords.yaml -share/ri/${RUBY_VER_DIR}/system/Shellwords/shellwords-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Shellwords -share/ri/${RUBY_VER_DIR}/system/Signal/cdesc-Signal.yaml -share/ri/${RUBY_VER_DIR}/system/Signal/list-i.yaml -share/ri/${RUBY_VER_DIR}/system/Signal/trap-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Signal -share/ri/${RUBY_VER_DIR}/system/SignalException/cdesc-SignalException.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/SignalException -share/ri/${RUBY_VER_DIR}/system/Singleton/_dump-i.yaml -share/ri/${RUBY_VER_DIR}/system/Singleton/cdesc-Singleton.yaml -share/ri/${RUBY_VER_DIR}/system/Singleton/clone-i.yaml -share/ri/${RUBY_VER_DIR}/system/Singleton/dup-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Singleton -share/ri/${RUBY_VER_DIR}/system/SingletonClassMethods/_instantiate%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/SingletonClassMethods/_load-i.yaml -share/ri/${RUBY_VER_DIR}/system/SingletonClassMethods/cdesc-SingletonClassMethods.yaml -share/ri/${RUBY_VER_DIR}/system/SingletonClassMethods/clone-i.yaml -share/ri/${RUBY_VER_DIR}/system/SingletonClassMethods/inherited-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/SingletonClassMethods -share/ri/${RUBY_VER_DIR}/system/SizedQueue/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/SizedQueue/cdesc-SizedQueue.yaml -share/ri/${RUBY_VER_DIR}/system/SizedQueue/deq-i.yaml -share/ri/${RUBY_VER_DIR}/system/SizedQueue/enq-i.yaml -share/ri/${RUBY_VER_DIR}/system/SizedQueue/max%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/SizedQueue/max-i.yaml -share/ri/${RUBY_VER_DIR}/system/SizedQueue/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/SizedQueue/num_waiting-i.yaml -share/ri/${RUBY_VER_DIR}/system/SizedQueue/pop-i.yaml -share/ri/${RUBY_VER_DIR}/system/SizedQueue/push-i.yaml -share/ri/${RUBY_VER_DIR}/system/SizedQueue/shift-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/SizedQueue -share/ri/${RUBY_VER_DIR}/system/SortedSet/cdesc-SortedSet.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/SortedSet -share/ri/${RUBY_VER_DIR}/system/StandardError/cdesc-StandardError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/StandardError -share/ri/${RUBY_VER_DIR}/system/String/%25-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/%2b-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/%3c%3d%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/%3d%7e-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/%5b%5d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/capitalize%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/capitalize-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/casecmp-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/cdesc-String.yaml -share/ri/${RUBY_VER_DIR}/system/String/center-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/chomp%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/chomp-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/chop%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/chop-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/concat-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/count-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/crypt-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/delete%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/delete-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/downcase%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/downcase-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/dump-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/each-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/each_byte-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/each_line-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/empty%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/eql%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/gsub%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/gsub-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/hex-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/include%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/index-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/insert-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/intern-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/length-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/ljust-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/lstrip%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/lstrip-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/match-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/String/next%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/next-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/oct-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/replace-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/reverse%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/reverse-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/rindex-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/rjust-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/rstrip%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/rstrip-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/scan-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/size-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/slice%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/slice-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/split-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/squeeze%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/squeeze-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/strip%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/strip-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/sub%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/sub-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/succ%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/succ-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/sum-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/swapcase%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/swapcase-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/to_f-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/to_i-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/to_str-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/to_sym-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/tr%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/tr-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/tr_s%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/tr_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/unpack-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/upcase%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/upcase-i.yaml -share/ri/${RUBY_VER_DIR}/system/String/upto-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/String -share/ri/${RUBY_VER_DIR}/system/StringScanner/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/Error/cdesc-Error.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/StringScanner/Error -share/ri/${RUBY_VER_DIR}/system/StringScanner/beginning_of_line%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/bol%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/cdesc-StringScanner.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/check-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/check_until-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/clear-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/concat-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/empty%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/eos%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/exist%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/get_byte-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/getbyte-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/getch-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/match%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/matched%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/matched-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/matched_size-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/matchedsize-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/must_C_version-c.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/peek-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/peep-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/pointer%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/pointer-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/pos%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/pos-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/post_match-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/pre_match-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/reset-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/rest%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/rest-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/rest_size-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/restsize-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/scan-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/scan_full-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/scan_until-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/search_full-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/skip-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/skip_until-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/string%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/string-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/terminate-i.yaml -share/ri/${RUBY_VER_DIR}/system/StringScanner/unscan-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/StringScanner -share/ri/${RUBY_VER_DIR}/system/Struct/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/%5b%5d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/cdesc-Struct.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/each-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/each_pair-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/eql%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/length-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/members-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/select-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/size-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/to_a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/values-i.yaml -share/ri/${RUBY_VER_DIR}/system/Struct/values_at-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Struct -share/ri/${RUBY_VER_DIR}/system/Symbol/%3d%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Symbol/all_symbols-c.yaml -share/ri/${RUBY_VER_DIR}/system/Symbol/cdesc-Symbol.yaml -share/ri/${RUBY_VER_DIR}/system/Symbol/id2name-i.yaml -share/ri/${RUBY_VER_DIR}/system/Symbol/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Symbol/to_i-i.yaml -share/ri/${RUBY_VER_DIR}/system/Symbol/to_int-i.yaml -share/ri/${RUBY_VER_DIR}/system/Symbol/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Symbol/to_sym-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Symbol -share/ri/${RUBY_VER_DIR}/system/SyncEnumerator/cdesc-SyncEnumerator.yaml -share/ri/${RUBY_VER_DIR}/system/SyncEnumerator/each-i.yaml -share/ri/${RUBY_VER_DIR}/system/SyncEnumerator/end%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/SyncEnumerator/length-i.yaml -share/ri/${RUBY_VER_DIR}/system/SyncEnumerator/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/SyncEnumerator/size-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/SyncEnumerator -share/ri/${RUBY_VER_DIR}/system/SyntaxError/cdesc-SyntaxError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/SyntaxError -share/ri/${RUBY_VER_DIR}/system/SystemCallError/%3d%3d%3d-c.yaml -share/ri/${RUBY_VER_DIR}/system/SystemCallError/cdesc-SystemCallError.yaml -share/ri/${RUBY_VER_DIR}/system/SystemCallError/errno-i.yaml -share/ri/${RUBY_VER_DIR}/system/SystemCallError/new-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/SystemCallError -share/ri/${RUBY_VER_DIR}/system/SystemExit/cdesc-SystemExit.yaml -share/ri/${RUBY_VER_DIR}/system/SystemExit/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/SystemExit/status-i.yaml -share/ri/${RUBY_VER_DIR}/system/SystemExit/success%3f-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/SystemExit -share/ri/${RUBY_VER_DIR}/system/SystemStackError/cdesc-SystemStackError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/SystemStackError -share/ri/${RUBY_VER_DIR}/system/Tempfile/cdesc-Tempfile.yaml -share/ri/${RUBY_VER_DIR}/system/Tempfile/close%21-i.yaml -share/ri/${RUBY_VER_DIR}/system/Tempfile/close-i.yaml -share/ri/${RUBY_VER_DIR}/system/Tempfile/delete-i.yaml -share/ri/${RUBY_VER_DIR}/system/Tempfile/length-i.yaml -share/ri/${RUBY_VER_DIR}/system/Tempfile/make_tmpname-i.yaml -share/ri/${RUBY_VER_DIR}/system/Tempfile/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Tempfile/open-c.yaml -share/ri/${RUBY_VER_DIR}/system/Tempfile/open-i.yaml -share/ri/${RUBY_VER_DIR}/system/Tempfile/path-i.yaml -share/ri/${RUBY_VER_DIR}/system/Tempfile/size-i.yaml -share/ri/${RUBY_VER_DIR}/system/Tempfile/unlink-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Tempfile -share/ri/${RUBY_VER_DIR}/system/Test/Unit/cdesc-Unit.yaml -share/ri/${RUBY_VER_DIR}/system/Test/Unit/run%3d-c.yaml -share/ri/${RUBY_VER_DIR}/system/Test/Unit/run%3f-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Test/Unit -share/ri/${RUBY_VER_DIR}/system/Test/cdesc-Test.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Test -share/ri/${RUBY_VER_DIR}/system/Thread/%5b%5d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/abort_on_exception%3d-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/abort_on_exception%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/abort_on_exception-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/abort_on_exception-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/alive%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/cdesc-Thread.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/critical%3d-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/critical-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/current-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/exclusive-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/exit-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/exit-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/fork-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/group-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/join-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/key%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/keys-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/kill-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/kill-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/list-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/main-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/pass-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/priority%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/priority-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/raise-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/run-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/safe_level-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/start-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/status-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/stop%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/stop-c.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/terminate-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/value-i.yaml -share/ri/${RUBY_VER_DIR}/system/Thread/wakeup-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Thread -share/ri/${RUBY_VER_DIR}/system/ThreadError/cdesc-ThreadError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/ThreadError -share/ri/${RUBY_VER_DIR}/system/ThreadGroup/add-i.yaml -share/ri/${RUBY_VER_DIR}/system/ThreadGroup/cdesc-ThreadGroup.yaml -share/ri/${RUBY_VER_DIR}/system/ThreadGroup/enclose-i.yaml -share/ri/${RUBY_VER_DIR}/system/ThreadGroup/enclosed%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/ThreadGroup/list-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/ThreadGroup -share/ri/${RUBY_VER_DIR}/system/ThreadsWait/all_waits-c.yaml -share/ri/${RUBY_VER_DIR}/system/ThreadsWait/all_waits-i.yaml -share/ri/${RUBY_VER_DIR}/system/ThreadsWait/cdesc-ThreadsWait.yaml -share/ri/${RUBY_VER_DIR}/system/ThreadsWait/empty%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/ThreadsWait/finished%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/ThreadsWait/join-i.yaml -share/ri/${RUBY_VER_DIR}/system/ThreadsWait/join_nowait-i.yaml -share/ri/${RUBY_VER_DIR}/system/ThreadsWait/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/ThreadsWait/next_wait-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/ThreadsWait -share/ri/${RUBY_VER_DIR}/system/Time/%2b-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/%2d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/%3c%3d%3e-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/_dump-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/_load-c.yaml -share/ri/${RUBY_VER_DIR}/system/Time/asctime-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/at-c.yaml -share/ri/${RUBY_VER_DIR}/system/Time/cdesc-Time.yaml -share/ri/${RUBY_VER_DIR}/system/Time/ctime-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/day-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/dst%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/eql%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/getgm-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/getlocal-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/getutc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/gm-c.yaml -share/ri/${RUBY_VER_DIR}/system/Time/gmt%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/gmt_offset-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/gmtime-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/gmtoff-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/hour-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/httpdate-c.yaml -share/ri/${RUBY_VER_DIR}/system/Time/httpdate-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/initialize_copy-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/isdst-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/iso8601-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/local-c.yaml -share/ri/${RUBY_VER_DIR}/system/Time/localtime-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/marshal_dump-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/marshal_load-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/mday-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/min-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/mktime-c.yaml -share/ri/${RUBY_VER_DIR}/system/Time/mon-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/month-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Time/now-c.yaml -share/ri/${RUBY_VER_DIR}/system/Time/parse-c.yaml -share/ri/${RUBY_VER_DIR}/system/Time/rfc2822-c.yaml -share/ri/${RUBY_VER_DIR}/system/Time/rfc2822-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/rfc822-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/sec-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/strftime-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/succ-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/times-c.yaml -share/ri/${RUBY_VER_DIR}/system/Time/to_a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/to_f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/to_i-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/to_s-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/tv_sec-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/tv_usec-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/usec-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/utc%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/utc-c.yaml -share/ri/${RUBY_VER_DIR}/system/Time/utc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/utc_offset-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/wday-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/xmlschema-c.yaml -share/ri/${RUBY_VER_DIR}/system/Time/xmlschema-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/yday-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/year-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/zone-i.yaml -share/ri/${RUBY_VER_DIR}/system/Time/zone_offset-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Time -share/ri/${RUBY_VER_DIR}/system/TimeExtentionTest/cdesc-TimeExtentionTest.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/TimeExtentionTest -share/ri/${RUBY_VER_DIR}/system/TrueClass/%26-i.yaml -share/ri/${RUBY_VER_DIR}/system/TrueClass/%5e-i.yaml -share/ri/${RUBY_VER_DIR}/system/TrueClass/%7c-i.yaml -share/ri/${RUBY_VER_DIR}/system/TrueClass/cdesc-TrueClass.yaml -share/ri/${RUBY_VER_DIR}/system/TrueClass/to_s-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/TrueClass -share/ri/${RUBY_VER_DIR}/system/TypeError/cdesc-TypeError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/TypeError -share/ri/${RUBY_VER_DIR}/system/UnboundMethod/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/UnboundMethod/arity-i.yaml -share/ri/${RUBY_VER_DIR}/system/UnboundMethod/bind-i.yaml -share/ri/${RUBY_VER_DIR}/system/UnboundMethod/cdesc-UnboundMethod.yaml -share/ri/${RUBY_VER_DIR}/system/UnboundMethod/clone-i.yaml -share/ri/${RUBY_VER_DIR}/system/UnboundMethod/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/UnboundMethod/to_s-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/UnboundMethod -share/ri/${RUBY_VER_DIR}/system/Vector/%2a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/%2b-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/%2d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/%3d%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/%5b%5d-c.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/%5b%5d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/cdesc-Vector.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/clone-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/coerce-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/collect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/collect2-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/compare_by-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/covector-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/each2-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/elements-c.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/eqn%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/hash-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/init_elements-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/inner_product-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/inspect-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/map-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/map2-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/r-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/size-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/to_a-i.yaml -share/ri/${RUBY_VER_DIR}/system/Vector/to_s-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Vector -share/ri/${RUBY_VER_DIR}/system/YAML/add_builtin_type-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/add_domain_type-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/add_private_type-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/add_ruby_type-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/cdesc-YAML.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/detect_implicit-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/dump-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/dump_stream-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/each_document-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/each_node-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/load-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/load_documents-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/load_file-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/load_stream-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/object_maker-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/parse-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/parse_documents-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/parse_file-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/quick_emit-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/read_type_class-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/transfer-c.yaml -share/ri/${RUBY_VER_DIR}/system/YAML/try_implicit-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/YAML -share/ri/${RUBY_VER_DIR}/system/ZeroDivisionError/cdesc-ZeroDivisionError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/ZeroDivisionError -share/ri/${RUBY_VER_DIR}/system/Zlib/BufError/cdesc-BufError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/BufError -share/ri/${RUBY_VER_DIR}/system/Zlib/DataError/cdesc-DataError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/DataError -share/ri/${RUBY_VER_DIR}/system/Zlib/Deflate/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Deflate/cdesc-Deflate.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Deflate/clone-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Deflate/deflate-c.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Deflate/deflate-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Deflate/flush-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Deflate/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Deflate/params-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Deflate/set_dictionary-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/Deflate -share/ri/${RUBY_VER_DIR}/system/Zlib/Error/cdesc-Error.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/Error -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/CRCError/cdesc-CRCError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/CRCError -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/Error/cdesc-Error.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/Error -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/LengthError/cdesc-LengthError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/LengthError -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/NoFooter/cdesc-NoFooter.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/NoFooter -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/cdesc-GzipFile.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/close-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/closed%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/comment-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/crc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/finish-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/level-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/mtime-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/orig_name-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/os_code-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/sync%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/sync-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/to_io-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile/wrap-c.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/GzipFile -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/cdesc-GzipReader.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/each-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/each_byte-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/each_line-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/eof%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/eof-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/getc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/gets-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/lineno%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/lineno-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/open-c.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/pos-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/read-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/readchar-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/readline-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/readlines-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/rewind-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/tell-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/ungetc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader/unused-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/GzipReader -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/cdesc-GzipWriter.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/comment%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/flush-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/mtime%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/open-c.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/orig_name%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/pos-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/print-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/printf-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/putc-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/puts-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/tell-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter/write-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/GzipWriter -share/ri/${RUBY_VER_DIR}/system/Zlib/Inflate/%3c%3c-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Inflate/cdesc-Inflate.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Inflate/inflate-c.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Inflate/inflate-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Inflate/new-c.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Inflate/set_dictionary-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Inflate/sync-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/Inflate/sync_point%3f-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/Inflate -share/ri/${RUBY_VER_DIR}/system/Zlib/MemError/cdesc-MemError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/MemError -share/ri/${RUBY_VER_DIR}/system/Zlib/NeedDict/cdesc-NeedDict.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/NeedDict -share/ri/${RUBY_VER_DIR}/system/Zlib/StreamEnd/cdesc-StreamEnd.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/StreamEnd -share/ri/${RUBY_VER_DIR}/system/Zlib/StreamError/cdesc-StreamError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/StreamError -share/ri/${RUBY_VER_DIR}/system/Zlib/VersionError/cdesc-VersionError.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/VersionError -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/adler-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/avail_in-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/avail_out%3d-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/avail_out-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/cdesc-ZStream.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/close-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/closed%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/data_type-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/end-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/ended%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/finish-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/finished%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/flush_next_in-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/flush_next_out-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/reset-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/stream_end%3f-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/total_in-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream/total_out-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib/ZStream -share/ri/${RUBY_VER_DIR}/system/Zlib/adler32-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/cdesc-Zlib.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/crc32-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/crc_table-i.yaml -share/ri/${RUBY_VER_DIR}/system/Zlib/zlib_version-i.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/Zlib -share/ri/${RUBY_VER_DIR}/system/created.rid -share/ri/${RUBY_VER_DIR}/system/fatal/cdesc-fatal.yaml -@dirrm share/ri/${RUBY_VER_DIR}/system/fatal -@dirrm share/ri/${RUBY_VER_DIR}/system -@dirrm share/ri/${RUBY_VER_DIR} -@dirrm share/ri +${RUBY_SYSRIDIR}/Abbrev/abbrev-i.yaml +${RUBY_SYSRIDIR}/Abbrev/cdesc-Abbrev.yaml +@dirrm ${RUBY_SYSRIDIR}/Abbrev +${RUBY_SYSRIDIR}/ArgumentError/cdesc-ArgumentError.yaml +@dirrm ${RUBY_SYSRIDIR}/ArgumentError +${RUBY_SYSRIDIR}/Array/%26-i.yaml +${RUBY_SYSRIDIR}/Array/%2a-i.yaml +${RUBY_SYSRIDIR}/Array/%2b-i.yaml +${RUBY_SYSRIDIR}/Array/%2d-i.yaml +${RUBY_SYSRIDIR}/Array/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/Array/%3c%3d%3e-i.yaml +${RUBY_SYSRIDIR}/Array/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Array/%5b%5d%3d-i.yaml +${RUBY_SYSRIDIR}/Array/%5b%5d-c.yaml +${RUBY_SYSRIDIR}/Array/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/Array/%7c-i.yaml +${RUBY_SYSRIDIR}/Array/abbrev-i.yaml +${RUBY_SYSRIDIR}/Array/assoc-i.yaml +${RUBY_SYSRIDIR}/Array/at-i.yaml +${RUBY_SYSRIDIR}/Array/cdesc-Array.yaml +${RUBY_SYSRIDIR}/Array/clear-i.yaml +${RUBY_SYSRIDIR}/Array/collect%21-i.yaml +${RUBY_SYSRIDIR}/Array/collect-i.yaml +${RUBY_SYSRIDIR}/Array/compact%21-i.yaml +${RUBY_SYSRIDIR}/Array/compact-i.yaml +${RUBY_SYSRIDIR}/Array/concat-i.yaml +${RUBY_SYSRIDIR}/Array/delete-i.yaml +${RUBY_SYSRIDIR}/Array/delete_at-i.yaml +${RUBY_SYSRIDIR}/Array/delete_if-i.yaml +${RUBY_SYSRIDIR}/Array/each-i.yaml +${RUBY_SYSRIDIR}/Array/each_index-i.yaml +${RUBY_SYSRIDIR}/Array/empty%3f-i.yaml +${RUBY_SYSRIDIR}/Array/eql%3f-i.yaml +${RUBY_SYSRIDIR}/Array/fetch-i.yaml +${RUBY_SYSRIDIR}/Array/fill-i.yaml +${RUBY_SYSRIDIR}/Array/first-i.yaml +${RUBY_SYSRIDIR}/Array/flatten%21-i.yaml +${RUBY_SYSRIDIR}/Array/flatten-i.yaml +${RUBY_SYSRIDIR}/Array/frozen%3f-i.yaml +${RUBY_SYSRIDIR}/Array/hash-i.yaml +${RUBY_SYSRIDIR}/Array/include%3f-i.yaml +${RUBY_SYSRIDIR}/Array/index-i.yaml +${RUBY_SYSRIDIR}/Array/indexes-i.yaml +${RUBY_SYSRIDIR}/Array/indices-i.yaml +${RUBY_SYSRIDIR}/Array/initialize_copy-i.yaml +${RUBY_SYSRIDIR}/Array/insert-i.yaml +${RUBY_SYSRIDIR}/Array/inspect-i.yaml +${RUBY_SYSRIDIR}/Array/join-i.yaml +${RUBY_SYSRIDIR}/Array/last-i.yaml +${RUBY_SYSRIDIR}/Array/length-i.yaml +${RUBY_SYSRIDIR}/Array/map%21-i.yaml +${RUBY_SYSRIDIR}/Array/map-i.yaml +${RUBY_SYSRIDIR}/Array/new-c.yaml +${RUBY_SYSRIDIR}/Array/nitems-i.yaml +${RUBY_SYSRIDIR}/Array/pack-i.yaml +${RUBY_SYSRIDIR}/Array/pop-i.yaml +${RUBY_SYSRIDIR}/Array/push-i.yaml +${RUBY_SYSRIDIR}/Array/rassoc-i.yaml +${RUBY_SYSRIDIR}/Array/reject%21-i.yaml +${RUBY_SYSRIDIR}/Array/reject-i.yaml +${RUBY_SYSRIDIR}/Array/replace-i.yaml +${RUBY_SYSRIDIR}/Array/reverse%21-i.yaml +${RUBY_SYSRIDIR}/Array/reverse-i.yaml +${RUBY_SYSRIDIR}/Array/reverse_each-i.yaml +${RUBY_SYSRIDIR}/Array/rindex-i.yaml +${RUBY_SYSRIDIR}/Array/select-i.yaml +${RUBY_SYSRIDIR}/Array/shift-i.yaml +${RUBY_SYSRIDIR}/Array/size-i.yaml +${RUBY_SYSRIDIR}/Array/slice%21-i.yaml +${RUBY_SYSRIDIR}/Array/slice-i.yaml +${RUBY_SYSRIDIR}/Array/sort%21-i.yaml +${RUBY_SYSRIDIR}/Array/sort-i.yaml +${RUBY_SYSRIDIR}/Array/to_a-i.yaml +${RUBY_SYSRIDIR}/Array/to_ary-i.yaml +${RUBY_SYSRIDIR}/Array/to_s-i.yaml +${RUBY_SYSRIDIR}/Array/transpose-i.yaml +${RUBY_SYSRIDIR}/Array/uniq%21-i.yaml +${RUBY_SYSRIDIR}/Array/uniq-i.yaml +${RUBY_SYSRIDIR}/Array/unshift-i.yaml +${RUBY_SYSRIDIR}/Array/values_at-i.yaml +${RUBY_SYSRIDIR}/Array/zip-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Array +${RUBY_SYSRIDIR}/Base64/Deprecated/cdesc-Deprecated.yaml +@dirrm ${RUBY_SYSRIDIR}/Base64/Deprecated +${RUBY_SYSRIDIR}/Base64/b64encode-i.yaml +${RUBY_SYSRIDIR}/Base64/cdesc-Base64.yaml +${RUBY_SYSRIDIR}/Base64/decode64-i.yaml +${RUBY_SYSRIDIR}/Base64/decode_b-i.yaml +${RUBY_SYSRIDIR}/Base64/encode64-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Base64 +${RUBY_SYSRIDIR}/Benchmark/Job/cdesc-Job.yaml +@dirrm ${RUBY_SYSRIDIR}/Benchmark/Job +${RUBY_SYSRIDIR}/Benchmark/Report/cdesc-Report.yaml +@dirrm ${RUBY_SYSRIDIR}/Benchmark/Report +${RUBY_SYSRIDIR}/Benchmark/Tms/%2a-i.yaml +${RUBY_SYSRIDIR}/Benchmark/Tms/%2b-i.yaml +${RUBY_SYSRIDIR}/Benchmark/Tms/%2d-i.yaml +${RUBY_SYSRIDIR}/Benchmark/Tms/%2f-i.yaml +${RUBY_SYSRIDIR}/Benchmark/Tms/add%21-i.yaml +${RUBY_SYSRIDIR}/Benchmark/Tms/add-i.yaml +${RUBY_SYSRIDIR}/Benchmark/Tms/cdesc-Tms.yaml +${RUBY_SYSRIDIR}/Benchmark/Tms/format-i.yaml +${RUBY_SYSRIDIR}/Benchmark/Tms/memberwise-i.yaml +${RUBY_SYSRIDIR}/Benchmark/Tms/new-c.yaml +${RUBY_SYSRIDIR}/Benchmark/Tms/to_a-i.yaml +${RUBY_SYSRIDIR}/Benchmark/Tms/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Benchmark/Tms +${RUBY_SYSRIDIR}/Benchmark/benchmark-i.yaml +${RUBY_SYSRIDIR}/Benchmark/bm-i.yaml +${RUBY_SYSRIDIR}/Benchmark/bmbm-i.yaml +${RUBY_SYSRIDIR}/Benchmark/cdesc-Benchmark.yaml +${RUBY_SYSRIDIR}/Benchmark/measure-i.yaml +${RUBY_SYSRIDIR}/Benchmark/realtime-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Benchmark +${RUBY_SYSRIDIR}/Bignum/%25-i.yaml +${RUBY_SYSRIDIR}/Bignum/%26-i.yaml +${RUBY_SYSRIDIR}/Bignum/%2a%2a-i.yaml +${RUBY_SYSRIDIR}/Bignum/%2a-i.yaml +${RUBY_SYSRIDIR}/Bignum/%2b-i.yaml +${RUBY_SYSRIDIR}/Bignum/%2d%40-i.yaml +${RUBY_SYSRIDIR}/Bignum/%2d-i.yaml +${RUBY_SYSRIDIR}/Bignum/%2f-i.yaml +${RUBY_SYSRIDIR}/Bignum/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/Bignum/%3c%3d%3e-i.yaml +${RUBY_SYSRIDIR}/Bignum/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Bignum/%3e%3e-i.yaml +${RUBY_SYSRIDIR}/Bignum/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/Bignum/%5e-i.yaml +${RUBY_SYSRIDIR}/Bignum/%7c-i.yaml +${RUBY_SYSRIDIR}/Bignum/%7e-i.yaml +${RUBY_SYSRIDIR}/Bignum/abs-i.yaml +${RUBY_SYSRIDIR}/Bignum/cdesc-Bignum.yaml +${RUBY_SYSRIDIR}/Bignum/coerce-i.yaml +${RUBY_SYSRIDIR}/Bignum/div-i.yaml +${RUBY_SYSRIDIR}/Bignum/divmod-i.yaml +${RUBY_SYSRIDIR}/Bignum/eql%3f-i.yaml +${RUBY_SYSRIDIR}/Bignum/hash-i.yaml +${RUBY_SYSRIDIR}/Bignum/modulo-i.yaml +${RUBY_SYSRIDIR}/Bignum/quo-i.yaml +${RUBY_SYSRIDIR}/Bignum/remainder-i.yaml +${RUBY_SYSRIDIR}/Bignum/size-i.yaml +${RUBY_SYSRIDIR}/Bignum/to_f-i.yaml +${RUBY_SYSRIDIR}/Bignum/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Bignum +${RUBY_SYSRIDIR}/Binding/cdesc-Binding.yaml +${RUBY_SYSRIDIR}/Binding/clone-i.yaml +${RUBY_SYSRIDIR}/Binding/dup-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Binding +${RUBY_SYSRIDIR}/CGI/Cookie/cdesc-Cookie.yaml +${RUBY_SYSRIDIR}/CGI/Cookie/new-c.yaml +${RUBY_SYSRIDIR}/CGI/Cookie/parse-c.yaml +${RUBY_SYSRIDIR}/CGI/Cookie/secure%3d-i.yaml +${RUBY_SYSRIDIR}/CGI/Cookie/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI/Cookie +${RUBY_SYSRIDIR}/CGI/Html3/cdesc-Html3.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI/Html3 +${RUBY_SYSRIDIR}/CGI/Html4/cdesc-Html4.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI/Html4 +${RUBY_SYSRIDIR}/CGI/Html4Fr/cdesc-Html4Fr.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI/Html4Fr +${RUBY_SYSRIDIR}/CGI/Html4Tr/cdesc-Html4Tr.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI/Html4Tr +${RUBY_SYSRIDIR}/CGI/HtmlExtension/a-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/base-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/blockquote-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/caption-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/cdesc-HtmlExtension.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/checkbox-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/checkbox_group-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/file_field-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/form-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/hidden-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/html-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/image_button-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/img-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/multipart_form-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/password_field-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/popup_menu-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/radio_button-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/radio_group-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/reset-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/scrolling_list-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/submit-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/text_field-i.yaml +${RUBY_SYSRIDIR}/CGI/HtmlExtension/textarea-i.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI/HtmlExtension +${RUBY_SYSRIDIR}/CGI/QueryExtension/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/CGI/QueryExtension/Value/cdesc-Value.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI/QueryExtension/Value +${RUBY_SYSRIDIR}/CGI/QueryExtension/cdesc-QueryExtension.yaml +${RUBY_SYSRIDIR}/CGI/QueryExtension/has_key%3f-i.yaml +${RUBY_SYSRIDIR}/CGI/QueryExtension/include%3f-i.yaml +${RUBY_SYSRIDIR}/CGI/QueryExtension/initialize_query-i.yaml +${RUBY_SYSRIDIR}/CGI/QueryExtension/key%3f-i.yaml +${RUBY_SYSRIDIR}/CGI/QueryExtension/keys-i.yaml +${RUBY_SYSRIDIR}/CGI/QueryExtension/multipart%3f-i.yaml +${RUBY_SYSRIDIR}/CGI/QueryExtension/params%3d-i.yaml +${RUBY_SYSRIDIR}/CGI/QueryExtension/raw_cookie-i.yaml +${RUBY_SYSRIDIR}/CGI/QueryExtension/raw_cookie2-i.yaml +${RUBY_SYSRIDIR}/CGI/QueryExtension/read_from_cmdline-i.yaml +${RUBY_SYSRIDIR}/CGI/QueryExtension/read_multipart-i.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI/QueryExtension +${RUBY_SYSRIDIR}/CGI/Session/%5b%5d%3d-i.yaml +${RUBY_SYSRIDIR}/CGI/Session/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/CGI/Session/FileStore/cdesc-FileStore.yaml +${RUBY_SYSRIDIR}/CGI/Session/FileStore/close-i.yaml +${RUBY_SYSRIDIR}/CGI/Session/FileStore/delete-i.yaml +${RUBY_SYSRIDIR}/CGI/Session/FileStore/new-c.yaml +${RUBY_SYSRIDIR}/CGI/Session/FileStore/restore-i.yaml +${RUBY_SYSRIDIR}/CGI/Session/FileStore/update-i.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI/Session/FileStore +${RUBY_SYSRIDIR}/CGI/Session/MemoryStore/cdesc-MemoryStore.yaml +${RUBY_SYSRIDIR}/CGI/Session/MemoryStore/close-i.yaml +${RUBY_SYSRIDIR}/CGI/Session/MemoryStore/delete-i.yaml +${RUBY_SYSRIDIR}/CGI/Session/MemoryStore/new-c.yaml +${RUBY_SYSRIDIR}/CGI/Session/MemoryStore/restore-i.yaml +${RUBY_SYSRIDIR}/CGI/Session/MemoryStore/update-i.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI/Session/MemoryStore +${RUBY_SYSRIDIR}/CGI/Session/NoSession/cdesc-NoSession.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI/Session/NoSession +${RUBY_SYSRIDIR}/CGI/Session/cdesc-Session.yaml +${RUBY_SYSRIDIR}/CGI/Session/close-i.yaml +${RUBY_SYSRIDIR}/CGI/Session/create_new_id-i.yaml +${RUBY_SYSRIDIR}/CGI/Session/delete-i.yaml +${RUBY_SYSRIDIR}/CGI/Session/new-c.yaml +${RUBY_SYSRIDIR}/CGI/Session/update-i.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI/Session +${RUBY_SYSRIDIR}/CGI/TagMaker/cdesc-TagMaker.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI/TagMaker +${RUBY_SYSRIDIR}/CGI/cdesc-CGI.yaml +${RUBY_SYSRIDIR}/CGI/env_table-i.yaml +${RUBY_SYSRIDIR}/CGI/escape-c.yaml +${RUBY_SYSRIDIR}/CGI/escapeElement-c.yaml +${RUBY_SYSRIDIR}/CGI/escapeHTML-c.yaml +${RUBY_SYSRIDIR}/CGI/header-i.yaml +${RUBY_SYSRIDIR}/CGI/new-c.yaml +${RUBY_SYSRIDIR}/CGI/out-i.yaml +${RUBY_SYSRIDIR}/CGI/parse-c.yaml +${RUBY_SYSRIDIR}/CGI/pretty-c.yaml +${RUBY_SYSRIDIR}/CGI/print-i.yaml +${RUBY_SYSRIDIR}/CGI/rfc1123_date-c.yaml +${RUBY_SYSRIDIR}/CGI/stdinput-i.yaml +${RUBY_SYSRIDIR}/CGI/stdoutput-i.yaml +${RUBY_SYSRIDIR}/CGI/unescape-c.yaml +${RUBY_SYSRIDIR}/CGI/unescapeElement-c.yaml +${RUBY_SYSRIDIR}/CGI/unescapeHTML-c.yaml +@dirrm ${RUBY_SYSRIDIR}/CGI +${RUBY_SYSRIDIR}/Class/allocate-i.yaml +${RUBY_SYSRIDIR}/Class/cdesc-Class.yaml +${RUBY_SYSRIDIR}/Class/inherited-i.yaml +${RUBY_SYSRIDIR}/Class/new-c.yaml +${RUBY_SYSRIDIR}/Class/new-i.yaml +${RUBY_SYSRIDIR}/Class/superclass-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Class +${RUBY_SYSRIDIR}/Comparable/%3c%3d-i.yaml +${RUBY_SYSRIDIR}/Comparable/%3c-i.yaml +${RUBY_SYSRIDIR}/Comparable/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Comparable/%3e%3d-i.yaml +${RUBY_SYSRIDIR}/Comparable/%3e-i.yaml +${RUBY_SYSRIDIR}/Comparable/between%3f-i.yaml +${RUBY_SYSRIDIR}/Comparable/cdesc-Comparable.yaml +@dirrm ${RUBY_SYSRIDIR}/Comparable +${RUBY_SYSRIDIR}/Complex/%25-i.yaml +${RUBY_SYSRIDIR}/Complex/%2a%2a-i.yaml +${RUBY_SYSRIDIR}/Complex/%2a-i.yaml +${RUBY_SYSRIDIR}/Complex/%2b-i.yaml +${RUBY_SYSRIDIR}/Complex/%2d-i.yaml +${RUBY_SYSRIDIR}/Complex/%2f-i.yaml +${RUBY_SYSRIDIR}/Complex/%3c%3d%3e-i.yaml +${RUBY_SYSRIDIR}/Complex/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Complex/abs-i.yaml +${RUBY_SYSRIDIR}/Complex/abs2-i.yaml +${RUBY_SYSRIDIR}/Complex/angle-i.yaml +${RUBY_SYSRIDIR}/Complex/arg-i.yaml +${RUBY_SYSRIDIR}/Complex/cdesc-Complex.yaml +${RUBY_SYSRIDIR}/Complex/coerce-i.yaml +${RUBY_SYSRIDIR}/Complex/conj-i.yaml +${RUBY_SYSRIDIR}/Complex/conjugate-i.yaml +${RUBY_SYSRIDIR}/Complex/denominator-i.yaml +${RUBY_SYSRIDIR}/Complex/hash-i.yaml +${RUBY_SYSRIDIR}/Complex/inspect-i.yaml +${RUBY_SYSRIDIR}/Complex/new%21-c.yaml +${RUBY_SYSRIDIR}/Complex/new-c.yaml +${RUBY_SYSRIDIR}/Complex/numerator-i.yaml +${RUBY_SYSRIDIR}/Complex/polar-c.yaml +${RUBY_SYSRIDIR}/Complex/polar-i.yaml +${RUBY_SYSRIDIR}/Complex/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Complex +${RUBY_SYSRIDIR}/ConditionVariable/broadcast-i.yaml +${RUBY_SYSRIDIR}/ConditionVariable/cdesc-ConditionVariable.yaml +${RUBY_SYSRIDIR}/ConditionVariable/new-c.yaml +${RUBY_SYSRIDIR}/ConditionVariable/signal-i.yaml +${RUBY_SYSRIDIR}/ConditionVariable/wait-i.yaml +@dirrm ${RUBY_SYSRIDIR}/ConditionVariable +${RUBY_SYSRIDIR}/Continuation/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/Continuation/call-i.yaml +${RUBY_SYSRIDIR}/Continuation/cdesc-Continuation.yaml +@dirrm ${RUBY_SYSRIDIR}/Continuation +${RUBY_SYSRIDIR}/Data/cdesc-Data.yaml +@dirrm ${RUBY_SYSRIDIR}/Data +${RUBY_SYSRIDIR}/Date/%2b-i.yaml +${RUBY_SYSRIDIR}/Date/%2d-i.yaml +${RUBY_SYSRIDIR}/Date/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/Date/%3c%3d%3e-i.yaml +${RUBY_SYSRIDIR}/Date/%3d%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Date/%3e%3e-i.yaml +${RUBY_SYSRIDIR}/Date/_dump-i.yaml +${RUBY_SYSRIDIR}/Date/_load-c.yaml +${RUBY_SYSRIDIR}/Date/ajd-i.yaml +${RUBY_SYSRIDIR}/Date/ajd_to_amjd-c.yaml +${RUBY_SYSRIDIR}/Date/ajd_to_jd-c.yaml +${RUBY_SYSRIDIR}/Date/amjd-i.yaml +${RUBY_SYSRIDIR}/Date/amjd_to_ajd-c.yaml +${RUBY_SYSRIDIR}/Date/cdesc-Date.yaml +${RUBY_SYSRIDIR}/Date/civil-c.yaml +${RUBY_SYSRIDIR}/Date/civil-i.yaml +${RUBY_SYSRIDIR}/Date/civil_to_jd-c.yaml +${RUBY_SYSRIDIR}/Date/commercial-c.yaml +${RUBY_SYSRIDIR}/Date/commercial-i.yaml +${RUBY_SYSRIDIR}/Date/commercial_to_jd-c.yaml +${RUBY_SYSRIDIR}/Date/cwday-i.yaml +${RUBY_SYSRIDIR}/Date/cweek-i.yaml +${RUBY_SYSRIDIR}/Date/cwyear-i.yaml +${RUBY_SYSRIDIR}/Date/day-i.yaml +${RUBY_SYSRIDIR}/Date/day_fraction-i.yaml +${RUBY_SYSRIDIR}/Date/day_fraction_to_time-c.yaml +${RUBY_SYSRIDIR}/Date/downto-i.yaml +${RUBY_SYSRIDIR}/Date/england-i.yaml +${RUBY_SYSRIDIR}/Date/eql%3f-i.yaml +${RUBY_SYSRIDIR}/Date/gregorian-i.yaml +${RUBY_SYSRIDIR}/Date/gregorian_leap%3f-c.yaml +${RUBY_SYSRIDIR}/Date/hash-i.yaml +${RUBY_SYSRIDIR}/Date/hour-i.yaml +${RUBY_SYSRIDIR}/Date/inspect-i.yaml +${RUBY_SYSRIDIR}/Date/italy-i.yaml +${RUBY_SYSRIDIR}/Date/jd-c.yaml +${RUBY_SYSRIDIR}/Date/jd-i.yaml +${RUBY_SYSRIDIR}/Date/jd_to_ajd-c.yaml +${RUBY_SYSRIDIR}/Date/jd_to_civil-c.yaml +${RUBY_SYSRIDIR}/Date/jd_to_commercial-c.yaml +${RUBY_SYSRIDIR}/Date/jd_to_ld-c.yaml +${RUBY_SYSRIDIR}/Date/jd_to_mjd-c.yaml +${RUBY_SYSRIDIR}/Date/jd_to_ordinal-c.yaml +${RUBY_SYSRIDIR}/Date/jd_to_wday-c.yaml +${RUBY_SYSRIDIR}/Date/julian-i.yaml +${RUBY_SYSRIDIR}/Date/julian_leap%3f-c.yaml +${RUBY_SYSRIDIR}/Date/ld-i.yaml +${RUBY_SYSRIDIR}/Date/ld_to_jd-c.yaml +${RUBY_SYSRIDIR}/Date/leap%3f-i.yaml +${RUBY_SYSRIDIR}/Date/mday-i.yaml +${RUBY_SYSRIDIR}/Date/min-i.yaml +${RUBY_SYSRIDIR}/Date/mjd-i.yaml +${RUBY_SYSRIDIR}/Date/mjd_to_jd-c.yaml +${RUBY_SYSRIDIR}/Date/mon-i.yaml +${RUBY_SYSRIDIR}/Date/month-i.yaml +${RUBY_SYSRIDIR}/Date/new-c.yaml +${RUBY_SYSRIDIR}/Date/new_offset-i.yaml +${RUBY_SYSRIDIR}/Date/new_start-i.yaml +${RUBY_SYSRIDIR}/Date/new_with_hash-c.yaml +${RUBY_SYSRIDIR}/Date/next-i.yaml +${RUBY_SYSRIDIR}/Date/ns%3f-c.yaml +${RUBY_SYSRIDIR}/Date/ns%3f-i.yaml +${RUBY_SYSRIDIR}/Date/offset-i.yaml +${RUBY_SYSRIDIR}/Date/ordinal-c.yaml +${RUBY_SYSRIDIR}/Date/ordinal-i.yaml +${RUBY_SYSRIDIR}/Date/ordinal_to_jd-c.yaml +${RUBY_SYSRIDIR}/Date/os%3f-c.yaml +${RUBY_SYSRIDIR}/Date/os%3f-i.yaml +${RUBY_SYSRIDIR}/Date/parse-c.yaml +${RUBY_SYSRIDIR}/Date/sec-i.yaml +${RUBY_SYSRIDIR}/Date/sec_fraction-i.yaml +${RUBY_SYSRIDIR}/Date/start-i.yaml +${RUBY_SYSRIDIR}/Date/step-i.yaml +${RUBY_SYSRIDIR}/Date/strptime-c.yaml +${RUBY_SYSRIDIR}/Date/succ-i.yaml +${RUBY_SYSRIDIR}/Date/time-i.yaml +${RUBY_SYSRIDIR}/Date/time_to_day_fraction-c.yaml +${RUBY_SYSRIDIR}/Date/to_s-i.yaml +${RUBY_SYSRIDIR}/Date/today-c.yaml +${RUBY_SYSRIDIR}/Date/upto-i.yaml +${RUBY_SYSRIDIR}/Date/valid_civil%3f-c.yaml +${RUBY_SYSRIDIR}/Date/valid_commercial%3f-c.yaml +${RUBY_SYSRIDIR}/Date/valid_jd%3f-c.yaml +${RUBY_SYSRIDIR}/Date/valid_ordinal%3f-c.yaml +${RUBY_SYSRIDIR}/Date/wday-i.yaml +${RUBY_SYSRIDIR}/Date/yday-i.yaml +${RUBY_SYSRIDIR}/Date/year-i.yaml +${RUBY_SYSRIDIR}/Date/zone-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Date +${RUBY_SYSRIDIR}/DateTime/cdesc-DateTime.yaml +${RUBY_SYSRIDIR}/DateTime/civil-c.yaml +${RUBY_SYSRIDIR}/DateTime/commercial-c.yaml +${RUBY_SYSRIDIR}/DateTime/jd-c.yaml +${RUBY_SYSRIDIR}/DateTime/new_with_hash-c.yaml +${RUBY_SYSRIDIR}/DateTime/now-c.yaml +${RUBY_SYSRIDIR}/DateTime/ordinal-c.yaml +${RUBY_SYSRIDIR}/DateTime/parse-c.yaml +${RUBY_SYSRIDIR}/DateTime/strptime-c.yaml +${RUBY_SYSRIDIR}/DateTime/valid_time%3f-c.yaml +@dirrm ${RUBY_SYSRIDIR}/DateTime +${RUBY_SYSRIDIR}/Dir/%5b%5d-c.yaml +${RUBY_SYSRIDIR}/Dir/cdesc-Dir.yaml +${RUBY_SYSRIDIR}/Dir/chdir-c.yaml +${RUBY_SYSRIDIR}/Dir/chroot-c.yaml +${RUBY_SYSRIDIR}/Dir/close-i.yaml +${RUBY_SYSRIDIR}/Dir/delete-c.yaml +${RUBY_SYSRIDIR}/Dir/each-i.yaml +${RUBY_SYSRIDIR}/Dir/entries-c.yaml +${RUBY_SYSRIDIR}/Dir/foreach-c.yaml +${RUBY_SYSRIDIR}/Dir/getwd-c.yaml +${RUBY_SYSRIDIR}/Dir/glob-c.yaml +${RUBY_SYSRIDIR}/Dir/mkdir-c.yaml +${RUBY_SYSRIDIR}/Dir/new-c.yaml +${RUBY_SYSRIDIR}/Dir/open-c.yaml +${RUBY_SYSRIDIR}/Dir/path-i.yaml +${RUBY_SYSRIDIR}/Dir/pos%3d-i.yaml +${RUBY_SYSRIDIR}/Dir/pos-i.yaml +${RUBY_SYSRIDIR}/Dir/pwd-c.yaml +${RUBY_SYSRIDIR}/Dir/read-i.yaml +${RUBY_SYSRIDIR}/Dir/rewind-i.yaml +${RUBY_SYSRIDIR}/Dir/rmdir-c.yaml +${RUBY_SYSRIDIR}/Dir/seek-i.yaml +${RUBY_SYSRIDIR}/Dir/tell-i.yaml +${RUBY_SYSRIDIR}/Dir/unlink-c.yaml +@dirrm ${RUBY_SYSRIDIR}/Dir +${RUBY_SYSRIDIR}/EOFError/cdesc-EOFError.yaml +@dirrm ${RUBY_SYSRIDIR}/EOFError +${RUBY_SYSRIDIR}/Enumerable/all%3f-i.yaml +${RUBY_SYSRIDIR}/Enumerable/any%3f-i.yaml +${RUBY_SYSRIDIR}/Enumerable/cdesc-Enumerable.yaml +${RUBY_SYSRIDIR}/Enumerable/collect-i.yaml +${RUBY_SYSRIDIR}/Enumerable/detect-i.yaml +${RUBY_SYSRIDIR}/Enumerable/each_with_index-i.yaml +${RUBY_SYSRIDIR}/Enumerable/entries-i.yaml +${RUBY_SYSRIDIR}/Enumerable/find-i.yaml +${RUBY_SYSRIDIR}/Enumerable/find_all-i.yaml +${RUBY_SYSRIDIR}/Enumerable/grep-i.yaml +${RUBY_SYSRIDIR}/Enumerable/include%3f-i.yaml +${RUBY_SYSRIDIR}/Enumerable/inject-i.yaml +${RUBY_SYSRIDIR}/Enumerable/map-i.yaml +${RUBY_SYSRIDIR}/Enumerable/max-i.yaml +${RUBY_SYSRIDIR}/Enumerable/member%3f-i.yaml +${RUBY_SYSRIDIR}/Enumerable/min-i.yaml +${RUBY_SYSRIDIR}/Enumerable/partition-i.yaml +${RUBY_SYSRIDIR}/Enumerable/reject-i.yaml +${RUBY_SYSRIDIR}/Enumerable/select-i.yaml +${RUBY_SYSRIDIR}/Enumerable/sort-i.yaml +${RUBY_SYSRIDIR}/Enumerable/sort_by-i.yaml +${RUBY_SYSRIDIR}/Enumerable/to_a-i.yaml +${RUBY_SYSRIDIR}/Enumerable/to_set-i.yaml +${RUBY_SYSRIDIR}/Enumerable/zip-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Enumerable +${RUBY_SYSRIDIR}/Errno/cdesc-Errno.yaml +@dirrm ${RUBY_SYSRIDIR}/Errno +${RUBY_SYSRIDIR}/Exception/backtrace-i.yaml +${RUBY_SYSRIDIR}/Exception/cdesc-Exception.yaml +${RUBY_SYSRIDIR}/Exception/exception-c.yaml +${RUBY_SYSRIDIR}/Exception/exception-i.yaml +${RUBY_SYSRIDIR}/Exception/inspect-i.yaml +${RUBY_SYSRIDIR}/Exception/message-i.yaml +${RUBY_SYSRIDIR}/Exception/new-c.yaml +${RUBY_SYSRIDIR}/Exception/set_backtrace-i.yaml +${RUBY_SYSRIDIR}/Exception/to_s-i.yaml +${RUBY_SYSRIDIR}/Exception/to_str-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Exception +${RUBY_SYSRIDIR}/ExceptionForMatrix/cdesc-ExceptionForMatrix.yaml +@dirrm ${RUBY_SYSRIDIR}/ExceptionForMatrix +${RUBY_SYSRIDIR}/FalseClass/%26-i.yaml +${RUBY_SYSRIDIR}/FalseClass/%5e-i.yaml +${RUBY_SYSRIDIR}/FalseClass/%7c-i.yaml +${RUBY_SYSRIDIR}/FalseClass/cdesc-FalseClass.yaml +${RUBY_SYSRIDIR}/FalseClass/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/FalseClass +${RUBY_SYSRIDIR}/File/Constants/cdesc-Constants.yaml +@dirrm ${RUBY_SYSRIDIR}/File/Constants +${RUBY_SYSRIDIR}/File/Stat/%3c%3d%3e-i.yaml +${RUBY_SYSRIDIR}/File/Stat/atime-i.yaml +${RUBY_SYSRIDIR}/File/Stat/blksize-i.yaml +${RUBY_SYSRIDIR}/File/Stat/blockdev%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/blocks-i.yaml +${RUBY_SYSRIDIR}/File/Stat/cdesc-Stat.yaml +${RUBY_SYSRIDIR}/File/Stat/chardev%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/ctime-i.yaml +${RUBY_SYSRIDIR}/File/Stat/dev-i.yaml +${RUBY_SYSRIDIR}/File/Stat/dev_major-i.yaml +${RUBY_SYSRIDIR}/File/Stat/dev_minor-i.yaml +${RUBY_SYSRIDIR}/File/Stat/directory%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/executable%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/executable_real%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/file%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/ftype-i.yaml +${RUBY_SYSRIDIR}/File/Stat/gid-i.yaml +${RUBY_SYSRIDIR}/File/Stat/grpowned%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/ino-i.yaml +${RUBY_SYSRIDIR}/File/Stat/inspect-i.yaml +${RUBY_SYSRIDIR}/File/Stat/mode-i.yaml +${RUBY_SYSRIDIR}/File/Stat/mtime-i.yaml +${RUBY_SYSRIDIR}/File/Stat/new-c.yaml +${RUBY_SYSRIDIR}/File/Stat/nlink-i.yaml +${RUBY_SYSRIDIR}/File/Stat/owned%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/pipe%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/rdev-i.yaml +${RUBY_SYSRIDIR}/File/Stat/rdev_major-i.yaml +${RUBY_SYSRIDIR}/File/Stat/rdev_minor-i.yaml +${RUBY_SYSRIDIR}/File/Stat/readable%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/readable_real%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/setgid%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/setuid%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/size%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/size-i.yaml +${RUBY_SYSRIDIR}/File/Stat/socket%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/sticky%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/symlink%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/uid-i.yaml +${RUBY_SYSRIDIR}/File/Stat/writable%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/writable_real%3f-i.yaml +${RUBY_SYSRIDIR}/File/Stat/zero%3f-i.yaml +@dirrm ${RUBY_SYSRIDIR}/File/Stat +${RUBY_SYSRIDIR}/File/atime-c.yaml +${RUBY_SYSRIDIR}/File/atime-i.yaml +${RUBY_SYSRIDIR}/File/basename-c.yaml +${RUBY_SYSRIDIR}/File/blockdev%3f-c.yaml +${RUBY_SYSRIDIR}/File/cdesc-File.yaml +${RUBY_SYSRIDIR}/File/chardev%3f-c.yaml +${RUBY_SYSRIDIR}/File/chmod-c.yaml +${RUBY_SYSRIDIR}/File/chmod-i.yaml +${RUBY_SYSRIDIR}/File/chown-c.yaml +${RUBY_SYSRIDIR}/File/chown-i.yaml +${RUBY_SYSRIDIR}/File/ctime-c.yaml +${RUBY_SYSRIDIR}/File/ctime-i.yaml +${RUBY_SYSRIDIR}/File/delete-c.yaml +${RUBY_SYSRIDIR}/File/directory%3f-c.yaml +${RUBY_SYSRIDIR}/File/dirname-c.yaml +${RUBY_SYSRIDIR}/File/executable%3f-c.yaml +${RUBY_SYSRIDIR}/File/executable_real%3f-c.yaml +${RUBY_SYSRIDIR}/File/exist%3f-c.yaml +${RUBY_SYSRIDIR}/File/exists%3f-c.yaml +${RUBY_SYSRIDIR}/File/expand_path-c.yaml +${RUBY_SYSRIDIR}/File/extname-c.yaml +${RUBY_SYSRIDIR}/File/file%3f-c.yaml +${RUBY_SYSRIDIR}/File/flock-i.yaml +${RUBY_SYSRIDIR}/File/fnmatch%3f-c.yaml +${RUBY_SYSRIDIR}/File/fnmatch-c.yaml +${RUBY_SYSRIDIR}/File/ftype-c.yaml +${RUBY_SYSRIDIR}/File/grpowned%3f-c.yaml +${RUBY_SYSRIDIR}/File/join-c.yaml +${RUBY_SYSRIDIR}/File/lchmod-c.yaml +${RUBY_SYSRIDIR}/File/lchown-c.yaml +${RUBY_SYSRIDIR}/File/link-c.yaml +${RUBY_SYSRIDIR}/File/lstat-c.yaml +${RUBY_SYSRIDIR}/File/lstat-i.yaml +${RUBY_SYSRIDIR}/File/mtime-c.yaml +${RUBY_SYSRIDIR}/File/mtime-i.yaml +${RUBY_SYSRIDIR}/File/new-c.yaml +${RUBY_SYSRIDIR}/File/owned%3f-c.yaml +${RUBY_SYSRIDIR}/File/path-i.yaml +${RUBY_SYSRIDIR}/File/pipe%3f-c.yaml +${RUBY_SYSRIDIR}/File/readable%3f-c.yaml +${RUBY_SYSRIDIR}/File/readable_real%3f-c.yaml +${RUBY_SYSRIDIR}/File/readlink-c.yaml +${RUBY_SYSRIDIR}/File/rename-c.yaml +${RUBY_SYSRIDIR}/File/setgid%3f-c.yaml +${RUBY_SYSRIDIR}/File/setuid%3f-c.yaml +${RUBY_SYSRIDIR}/File/size%3f-c.yaml +${RUBY_SYSRIDIR}/File/size-c.yaml +${RUBY_SYSRIDIR}/File/socket%3f-c.yaml +${RUBY_SYSRIDIR}/File/split-c.yaml +${RUBY_SYSRIDIR}/File/stat-c.yaml +${RUBY_SYSRIDIR}/File/sticky%3f-c.yaml +${RUBY_SYSRIDIR}/File/symlink%3f-c.yaml +${RUBY_SYSRIDIR}/File/symlink-c.yaml +${RUBY_SYSRIDIR}/File/truncate-c.yaml +${RUBY_SYSRIDIR}/File/truncate-i.yaml +${RUBY_SYSRIDIR}/File/umask-c.yaml +${RUBY_SYSRIDIR}/File/unlink-c.yaml +${RUBY_SYSRIDIR}/File/utime-c.yaml +${RUBY_SYSRIDIR}/File/writable%3f-c.yaml +${RUBY_SYSRIDIR}/File/writable_real%3f-c.yaml +${RUBY_SYSRIDIR}/File/zero%3f-c.yaml +@dirrm ${RUBY_SYSRIDIR}/File +${RUBY_SYSRIDIR}/FileTest/blockdev%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/cdesc-FileTest.yaml +${RUBY_SYSRIDIR}/FileTest/chardev%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/directory%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/executable%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/executable_real%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/exist%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/exists%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/file%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/grpowned%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/owned%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/pipe%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/readable%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/readable_real%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/setgid%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/setuid%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/size%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/size-i.yaml +${RUBY_SYSRIDIR}/FileTest/socket%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/sticky%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/symlink%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/writable%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/writable_real%3f-i.yaml +${RUBY_SYSRIDIR}/FileTest/zero%3f-i.yaml +@dirrm ${RUBY_SYSRIDIR}/FileTest +${RUBY_SYSRIDIR}/FileUtils/DryRun/cdesc-DryRun.yaml +@dirrm ${RUBY_SYSRIDIR}/FileUtils/DryRun +${RUBY_SYSRIDIR}/FileUtils/Entry_/cdesc-Entry_.yaml +@dirrm ${RUBY_SYSRIDIR}/FileUtils/Entry_ +${RUBY_SYSRIDIR}/FileUtils/NoWrite/cdesc-NoWrite.yaml +@dirrm ${RUBY_SYSRIDIR}/FileUtils/NoWrite +${RUBY_SYSRIDIR}/FileUtils/StreamUtils_/cdesc-StreamUtils_.yaml +${RUBY_SYSRIDIR}/FileUtils/StreamUtils_/fu_blksize-i.yaml +${RUBY_SYSRIDIR}/FileUtils/StreamUtils_/fu_default_blksize-i.yaml +${RUBY_SYSRIDIR}/FileUtils/StreamUtils_/fu_stream_blksize-i.yaml +${RUBY_SYSRIDIR}/FileUtils/StreamUtils_/fu_windows%3f-i.yaml +@dirrm ${RUBY_SYSRIDIR}/FileUtils/StreamUtils_ +${RUBY_SYSRIDIR}/FileUtils/Verbose/cdesc-Verbose.yaml +@dirrm ${RUBY_SYSRIDIR}/FileUtils/Verbose +${RUBY_SYSRIDIR}/FileUtils/cd-i.yaml +${RUBY_SYSRIDIR}/FileUtils/cdesc-FileUtils.yaml +${RUBY_SYSRIDIR}/FileUtils/chdir-i.yaml +${RUBY_SYSRIDIR}/FileUtils/chmod-i.yaml +${RUBY_SYSRIDIR}/FileUtils/chmod_R-i.yaml +${RUBY_SYSRIDIR}/FileUtils/chown-i.yaml +${RUBY_SYSRIDIR}/FileUtils/chown_R-i.yaml +${RUBY_SYSRIDIR}/FileUtils/cmp-i.yaml +${RUBY_SYSRIDIR}/FileUtils/collect_method-c.yaml +${RUBY_SYSRIDIR}/FileUtils/commands-c.yaml +${RUBY_SYSRIDIR}/FileUtils/compare_file-i.yaml +${RUBY_SYSRIDIR}/FileUtils/compare_stream-i.yaml +${RUBY_SYSRIDIR}/FileUtils/copy-i.yaml +${RUBY_SYSRIDIR}/FileUtils/copy_entry-i.yaml +${RUBY_SYSRIDIR}/FileUtils/copy_file-i.yaml +${RUBY_SYSRIDIR}/FileUtils/copy_stream-i.yaml +${RUBY_SYSRIDIR}/FileUtils/cp-i.yaml +${RUBY_SYSRIDIR}/FileUtils/cp_r-i.yaml +${RUBY_SYSRIDIR}/FileUtils/fu_have_symlink%3f-i.yaml +${RUBY_SYSRIDIR}/FileUtils/fu_world_writable%3f-i.yaml +${RUBY_SYSRIDIR}/FileUtils/getwd-i.yaml +${RUBY_SYSRIDIR}/FileUtils/have_option%3f-c.yaml +${RUBY_SYSRIDIR}/FileUtils/identical%3f-i.yaml +${RUBY_SYSRIDIR}/FileUtils/install-i.yaml +${RUBY_SYSRIDIR}/FileUtils/link-i.yaml +${RUBY_SYSRIDIR}/FileUtils/ln-i.yaml +${RUBY_SYSRIDIR}/FileUtils/ln_s-i.yaml +${RUBY_SYSRIDIR}/FileUtils/ln_sf-i.yaml +${RUBY_SYSRIDIR}/FileUtils/makedirs-i.yaml +${RUBY_SYSRIDIR}/FileUtils/mkdir-i.yaml +${RUBY_SYSRIDIR}/FileUtils/mkdir_p-i.yaml +${RUBY_SYSRIDIR}/FileUtils/mkpath-i.yaml +${RUBY_SYSRIDIR}/FileUtils/move-i.yaml +${RUBY_SYSRIDIR}/FileUtils/mv-i.yaml +${RUBY_SYSRIDIR}/FileUtils/options-c.yaml +${RUBY_SYSRIDIR}/FileUtils/options_of-c.yaml +${RUBY_SYSRIDIR}/FileUtils/pwd-i.yaml +${RUBY_SYSRIDIR}/FileUtils/remove_dir-i.yaml +${RUBY_SYSRIDIR}/FileUtils/remove_entry-i.yaml +${RUBY_SYSRIDIR}/FileUtils/remove_entry_secure-i.yaml +${RUBY_SYSRIDIR}/FileUtils/remove_file-i.yaml +${RUBY_SYSRIDIR}/FileUtils/remove-i.yaml +${RUBY_SYSRIDIR}/FileUtils/rm-i.yaml +${RUBY_SYSRIDIR}/FileUtils/rm_f-i.yaml +${RUBY_SYSRIDIR}/FileUtils/rm_r-i.yaml +${RUBY_SYSRIDIR}/FileUtils/rm_rf-i.yaml +${RUBY_SYSRIDIR}/FileUtils/rmdir-i.yaml +${RUBY_SYSRIDIR}/FileUtils/rmtree-i.yaml +${RUBY_SYSRIDIR}/FileUtils/safe_unlink-i.yaml +${RUBY_SYSRIDIR}/FileUtils/symlink-i.yaml +${RUBY_SYSRIDIR}/FileUtils/touch-i.yaml +${RUBY_SYSRIDIR}/FileUtils/uptodate%3f-i.yaml +@dirrm ${RUBY_SYSRIDIR}/FileUtils +${RUBY_SYSRIDIR}/Find/cdesc-Find.yaml +${RUBY_SYSRIDIR}/Find/find-i.yaml +${RUBY_SYSRIDIR}/Find/prune-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Find +${RUBY_SYSRIDIR}/Fixnum/%25-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%26-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%2a%2a-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%2a-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%2b-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%2d%40-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%2d-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%2f-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%3c%3d%3e-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%3c%3d-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%3c-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%3e%3d-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%3e%3e-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%3e-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%5e-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%7c-i.yaml +${RUBY_SYSRIDIR}/Fixnum/%7e-i.yaml +${RUBY_SYSRIDIR}/Fixnum/abs-i.yaml +${RUBY_SYSRIDIR}/Fixnum/cdesc-Fixnum.yaml +${RUBY_SYSRIDIR}/Fixnum/div-i.yaml +${RUBY_SYSRIDIR}/Fixnum/divmod-i.yaml +${RUBY_SYSRIDIR}/Fixnum/id2name-i.yaml +${RUBY_SYSRIDIR}/Fixnum/induced_from-c.yaml +${RUBY_SYSRIDIR}/Fixnum/modulo-i.yaml +${RUBY_SYSRIDIR}/Fixnum/quo-i.yaml +${RUBY_SYSRIDIR}/Fixnum/size-i.yaml +${RUBY_SYSRIDIR}/Fixnum/to_f-i.yaml +${RUBY_SYSRIDIR}/Fixnum/to_s-i.yaml +${RUBY_SYSRIDIR}/Fixnum/to_sym-i.yaml +${RUBY_SYSRIDIR}/Fixnum/zero%3f-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Fixnum +${RUBY_SYSRIDIR}/Float/%25-i.yaml +${RUBY_SYSRIDIR}/Float/%2a%2a-i.yaml +${RUBY_SYSRIDIR}/Float/%2a-i.yaml +${RUBY_SYSRIDIR}/Float/%2b-i.yaml +${RUBY_SYSRIDIR}/Float/%2d%40-i.yaml +${RUBY_SYSRIDIR}/Float/%2d-i.yaml +${RUBY_SYSRIDIR}/Float/%2f-i.yaml +${RUBY_SYSRIDIR}/Float/%3c%3d%3e-i.yaml +${RUBY_SYSRIDIR}/Float/%3c%3d-i.yaml +${RUBY_SYSRIDIR}/Float/%3c-i.yaml +${RUBY_SYSRIDIR}/Float/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Float/%3e%3d-i.yaml +${RUBY_SYSRIDIR}/Float/%3e-i.yaml +${RUBY_SYSRIDIR}/Float/abs-i.yaml +${RUBY_SYSRIDIR}/Float/cdesc-Float.yaml +${RUBY_SYSRIDIR}/Float/ceil-i.yaml +${RUBY_SYSRIDIR}/Float/coerce-i.yaml +${RUBY_SYSRIDIR}/Float/divmod-i.yaml +${RUBY_SYSRIDIR}/Float/eql%3f-i.yaml +${RUBY_SYSRIDIR}/Float/finite%3f-i.yaml +${RUBY_SYSRIDIR}/Float/floor-i.yaml +${RUBY_SYSRIDIR}/Float/hash-i.yaml +${RUBY_SYSRIDIR}/Float/induced_from-c.yaml +${RUBY_SYSRIDIR}/Float/infinite%3f-i.yaml +${RUBY_SYSRIDIR}/Float/modulo-i.yaml +${RUBY_SYSRIDIR}/Float/nan%3f-i.yaml +${RUBY_SYSRIDIR}/Float/round-i.yaml +${RUBY_SYSRIDIR}/Float/to_f-i.yaml +${RUBY_SYSRIDIR}/Float/to_i-i.yaml +${RUBY_SYSRIDIR}/Float/to_int-i.yaml +${RUBY_SYSRIDIR}/Float/to_s-i.yaml +${RUBY_SYSRIDIR}/Float/truncate-i.yaml +${RUBY_SYSRIDIR}/Float/zero%3f-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Float +${RUBY_SYSRIDIR}/FloatDomainError/cdesc-FloatDomainError.yaml +@dirrm ${RUBY_SYSRIDIR}/FloatDomainError +${RUBY_SYSRIDIR}/GC/cdesc-GC.yaml +${RUBY_SYSRIDIR}/GC/disable-c.yaml +${RUBY_SYSRIDIR}/GC/enable-c.yaml +${RUBY_SYSRIDIR}/GC/garbage_collect-i.yaml +${RUBY_SYSRIDIR}/GC/start-c.yaml +@dirrm ${RUBY_SYSRIDIR}/GC +${RUBY_SYSRIDIR}/Generator/cdesc-Generator.yaml +${RUBY_SYSRIDIR}/Generator/current-i.yaml +${RUBY_SYSRIDIR}/Generator/each-i.yaml +${RUBY_SYSRIDIR}/Generator/end%3f-i.yaml +${RUBY_SYSRIDIR}/Generator/index-i.yaml +${RUBY_SYSRIDIR}/Generator/new-c.yaml +${RUBY_SYSRIDIR}/Generator/next%3f-i.yaml +${RUBY_SYSRIDIR}/Generator/next-i.yaml +${RUBY_SYSRIDIR}/Generator/pos-i.yaml +${RUBY_SYSRIDIR}/Generator/rewind-i.yaml +${RUBY_SYSRIDIR}/Generator/yield-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Generator +${RUBY_SYSRIDIR}/Hash/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Hash/%5b%5d%3d-i.yaml +${RUBY_SYSRIDIR}/Hash/%5b%5d-c.yaml +${RUBY_SYSRIDIR}/Hash/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/Hash/cdesc-Hash.yaml +${RUBY_SYSRIDIR}/Hash/clear-i.yaml +${RUBY_SYSRIDIR}/Hash/default%3d-i.yaml +${RUBY_SYSRIDIR}/Hash/default-i.yaml +${RUBY_SYSRIDIR}/Hash/default_proc-i.yaml +${RUBY_SYSRIDIR}/Hash/delete-i.yaml +${RUBY_SYSRIDIR}/Hash/delete_if-i.yaml +${RUBY_SYSRIDIR}/Hash/each-i.yaml +${RUBY_SYSRIDIR}/Hash/each_key-i.yaml +${RUBY_SYSRIDIR}/Hash/each_pair-i.yaml +${RUBY_SYSRIDIR}/Hash/each_value-i.yaml +${RUBY_SYSRIDIR}/Hash/empty%3f-i.yaml +${RUBY_SYSRIDIR}/Hash/fetch-i.yaml +${RUBY_SYSRIDIR}/Hash/has_key%3f-i.yaml +${RUBY_SYSRIDIR}/Hash/has_value%3f-i.yaml +${RUBY_SYSRIDIR}/Hash/include%3f-i.yaml +${RUBY_SYSRIDIR}/Hash/index-i.yaml +${RUBY_SYSRIDIR}/Hash/indexes-i.yaml +${RUBY_SYSRIDIR}/Hash/indices-i.yaml +${RUBY_SYSRIDIR}/Hash/initialize_copy-i.yaml +${RUBY_SYSRIDIR}/Hash/inspect-i.yaml +${RUBY_SYSRIDIR}/Hash/invert-i.yaml +${RUBY_SYSRIDIR}/Hash/key%3f-i.yaml +${RUBY_SYSRIDIR}/Hash/keys-i.yaml +${RUBY_SYSRIDIR}/Hash/length-i.yaml +${RUBY_SYSRIDIR}/Hash/member%3f-i.yaml +${RUBY_SYSRIDIR}/Hash/merge%21-i.yaml +${RUBY_SYSRIDIR}/Hash/merge-i.yaml +${RUBY_SYSRIDIR}/Hash/new-c.yaml +${RUBY_SYSRIDIR}/Hash/rehash-i.yaml +${RUBY_SYSRIDIR}/Hash/reject%21-i.yaml +${RUBY_SYSRIDIR}/Hash/reject-i.yaml +${RUBY_SYSRIDIR}/Hash/replace-i.yaml +${RUBY_SYSRIDIR}/Hash/select-i.yaml +${RUBY_SYSRIDIR}/Hash/shift-i.yaml +${RUBY_SYSRIDIR}/Hash/size-i.yaml +${RUBY_SYSRIDIR}/Hash/sort-i.yaml +${RUBY_SYSRIDIR}/Hash/store-i.yaml +${RUBY_SYSRIDIR}/Hash/to_a-i.yaml +${RUBY_SYSRIDIR}/Hash/to_hash-i.yaml +${RUBY_SYSRIDIR}/Hash/to_s-i.yaml +${RUBY_SYSRIDIR}/Hash/update-i.yaml +${RUBY_SYSRIDIR}/Hash/value%3f-i.yaml +${RUBY_SYSRIDIR}/Hash/values-i.yaml +${RUBY_SYSRIDIR}/Hash/values_at-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Hash +${RUBY_SYSRIDIR}/IO/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/IO/binmode-i.yaml +${RUBY_SYSRIDIR}/IO/cdesc-IO.yaml +${RUBY_SYSRIDIR}/IO/close-i.yaml +${RUBY_SYSRIDIR}/IO/close_read-i.yaml +${RUBY_SYSRIDIR}/IO/close_write-i.yaml +${RUBY_SYSRIDIR}/IO/closed%3f-i.yaml +${RUBY_SYSRIDIR}/IO/each-i.yaml +${RUBY_SYSRIDIR}/IO/each_byte-i.yaml +${RUBY_SYSRIDIR}/IO/each_line-i.yaml +${RUBY_SYSRIDIR}/IO/eof%3f-i.yaml +${RUBY_SYSRIDIR}/IO/eof-i.yaml +${RUBY_SYSRIDIR}/IO/fcntl-i.yaml +${RUBY_SYSRIDIR}/IO/fileno-i.yaml +${RUBY_SYSRIDIR}/IO/flush-i.yaml +${RUBY_SYSRIDIR}/IO/for_fd-c.yaml +${RUBY_SYSRIDIR}/IO/foreach-c.yaml +${RUBY_SYSRIDIR}/IO/fsync-i.yaml +${RUBY_SYSRIDIR}/IO/getc-i.yaml +${RUBY_SYSRIDIR}/IO/gets-i.yaml +${RUBY_SYSRIDIR}/IO/inspect-i.yaml +${RUBY_SYSRIDIR}/IO/ioctl-i.yaml +${RUBY_SYSRIDIR}/IO/isatty-i.yaml +${RUBY_SYSRIDIR}/IO/lineno%3d-i.yaml +${RUBY_SYSRIDIR}/IO/lineno-i.yaml +${RUBY_SYSRIDIR}/IO/new-c.yaml +${RUBY_SYSRIDIR}/IO/open-c.yaml +${RUBY_SYSRIDIR}/IO/pid-i.yaml +${RUBY_SYSRIDIR}/IO/pipe-c.yaml +${RUBY_SYSRIDIR}/IO/popen-c.yaml +${RUBY_SYSRIDIR}/IO/pos%3d-i.yaml +${RUBY_SYSRIDIR}/IO/pos-i.yaml +${RUBY_SYSRIDIR}/IO/print-i.yaml +${RUBY_SYSRIDIR}/IO/printf-i.yaml +${RUBY_SYSRIDIR}/IO/putc-i.yaml +${RUBY_SYSRIDIR}/IO/puts-i.yaml +${RUBY_SYSRIDIR}/IO/read-c.yaml +${RUBY_SYSRIDIR}/IO/read-i.yaml +${RUBY_SYSRIDIR}/IO/readchar-i.yaml +${RUBY_SYSRIDIR}/IO/readline-i.yaml +${RUBY_SYSRIDIR}/IO/readlines-c.yaml +${RUBY_SYSRIDIR}/IO/readlines-i.yaml +${RUBY_SYSRIDIR}/IO/readpartial-i.yaml +${RUBY_SYSRIDIR}/IO/reopen-i.yaml +${RUBY_SYSRIDIR}/IO/rewind-i.yaml +${RUBY_SYSRIDIR}/IO/seek-i.yaml +${RUBY_SYSRIDIR}/IO/select-c.yaml +${RUBY_SYSRIDIR}/IO/stat-i.yaml +${RUBY_SYSRIDIR}/IO/sync%3d-i.yaml +${RUBY_SYSRIDIR}/IO/sync-i.yaml +${RUBY_SYSRIDIR}/IO/sysopen-c.yaml +${RUBY_SYSRIDIR}/IO/sysread-i.yaml +${RUBY_SYSRIDIR}/IO/sysseek-i.yaml +${RUBY_SYSRIDIR}/IO/syswrite-i.yaml +${RUBY_SYSRIDIR}/IO/tell-i.yaml +${RUBY_SYSRIDIR}/IO/to_i-i.yaml +${RUBY_SYSRIDIR}/IO/to_io-i.yaml +${RUBY_SYSRIDIR}/IO/tty%3f-i.yaml +${RUBY_SYSRIDIR}/IO/ungetc-i.yaml +${RUBY_SYSRIDIR}/IO/write-i.yaml +@dirrm ${RUBY_SYSRIDIR}/IO +${RUBY_SYSRIDIR}/IOError/cdesc-IOError.yaml +@dirrm ${RUBY_SYSRIDIR}/IOError +${RUBY_SYSRIDIR}/Iconv/Failure/cdesc-Failure.yaml +${RUBY_SYSRIDIR}/Iconv/Failure/failed-i.yaml +${RUBY_SYSRIDIR}/Iconv/Failure/inspect-i.yaml +${RUBY_SYSRIDIR}/Iconv/Failure/new-c.yaml +${RUBY_SYSRIDIR}/Iconv/Failure/success-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Iconv/Failure +${RUBY_SYSRIDIR}/Iconv/IllegalSequence/cdesc-IllegalSequence.yaml +@dirrm ${RUBY_SYSRIDIR}/Iconv/IllegalSequence +${RUBY_SYSRIDIR}/Iconv/InvalidCharacter/cdesc-InvalidCharacter.yaml +@dirrm ${RUBY_SYSRIDIR}/Iconv/InvalidCharacter +${RUBY_SYSRIDIR}/Iconv/InvalidEncoding/cdesc-InvalidEncoding.yaml +@dirrm ${RUBY_SYSRIDIR}/Iconv/InvalidEncoding +${RUBY_SYSRIDIR}/Iconv/OutOfRange/cdesc-OutOfRange.yaml +@dirrm ${RUBY_SYSRIDIR}/Iconv/OutOfRange +${RUBY_SYSRIDIR}/Iconv/cdesc-Iconv.yaml +${RUBY_SYSRIDIR}/Iconv/charset_map-c.yaml +${RUBY_SYSRIDIR}/Iconv/close-i.yaml +${RUBY_SYSRIDIR}/Iconv/conv-c.yaml +${RUBY_SYSRIDIR}/Iconv/iconv-c.yaml +${RUBY_SYSRIDIR}/Iconv/iconv-i.yaml +${RUBY_SYSRIDIR}/Iconv/new-c.yaml +${RUBY_SYSRIDIR}/Iconv/open-c.yaml +@dirrm ${RUBY_SYSRIDIR}/Iconv +${RUBY_SYSRIDIR}/IndexError/cdesc-IndexError.yaml +@dirrm ${RUBY_SYSRIDIR}/IndexError +${RUBY_SYSRIDIR}/Integer/cdesc-Integer.yaml +${RUBY_SYSRIDIR}/Integer/ceil-i.yaml +${RUBY_SYSRIDIR}/Integer/chr-i.yaml +${RUBY_SYSRIDIR}/Integer/downto-i.yaml +${RUBY_SYSRIDIR}/Integer/floor-i.yaml +${RUBY_SYSRIDIR}/Integer/induced_from-c.yaml +${RUBY_SYSRIDIR}/Integer/integer%3f-i.yaml +${RUBY_SYSRIDIR}/Integer/next-i.yaml +${RUBY_SYSRIDIR}/Integer/round-i.yaml +${RUBY_SYSRIDIR}/Integer/succ-i.yaml +${RUBY_SYSRIDIR}/Integer/times-i.yaml +${RUBY_SYSRIDIR}/Integer/to_i-i.yaml +${RUBY_SYSRIDIR}/Integer/to_int-i.yaml +${RUBY_SYSRIDIR}/Integer/truncate-i.yaml +${RUBY_SYSRIDIR}/Integer/upto-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Integer +${RUBY_SYSRIDIR}/Interrupt/cdesc-Interrupt.yaml +@dirrm ${RUBY_SYSRIDIR}/Interrupt +${RUBY_SYSRIDIR}/Kernel/cdesc-Kernel.yaml +@dirrm ${RUBY_SYSRIDIR}/Kernel +${RUBY_SYSRIDIR}/LoadError/cdesc-LoadError.yaml +@dirrm ${RUBY_SYSRIDIR}/LoadError +${RUBY_SYSRIDIR}/LocalJumpError/cdesc-LocalJumpError.yaml +${RUBY_SYSRIDIR}/LocalJumpError/exit_value-i.yaml +${RUBY_SYSRIDIR}/LocalJumpError/reason-i.yaml +@dirrm ${RUBY_SYSRIDIR}/LocalJumpError +${RUBY_SYSRIDIR}/Logger/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/Logger/Application/cdesc-Application.yaml +${RUBY_SYSRIDIR}/Logger/Application/level%3d-i.yaml +${RUBY_SYSRIDIR}/Logger/Application/log%3d-i.yaml +${RUBY_SYSRIDIR}/Logger/Application/log-i.yaml +${RUBY_SYSRIDIR}/Logger/Application/new-c.yaml +${RUBY_SYSRIDIR}/Logger/Application/run-i.yaml +${RUBY_SYSRIDIR}/Logger/Application/set_log-i.yaml +${RUBY_SYSRIDIR}/Logger/Application/start-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Logger/Application +${RUBY_SYSRIDIR}/Logger/Error/cdesc-Error.yaml +@dirrm ${RUBY_SYSRIDIR}/Logger/Error +${RUBY_SYSRIDIR}/Logger/Formatter/call-i.yaml +${RUBY_SYSRIDIR}/Logger/Formatter/cdesc-Formatter.yaml +${RUBY_SYSRIDIR}/Logger/Formatter/format_datetime-i.yaml +${RUBY_SYSRIDIR}/Logger/Formatter/msg2str-i.yaml +${RUBY_SYSRIDIR}/Logger/Formatter/new-c.yaml +@dirrm ${RUBY_SYSRIDIR}/Logger/Formatter +${RUBY_SYSRIDIR}/Logger/LogDevice/LogDeviceMutex/cdesc-LogDeviceMutex.yaml +@dirrm ${RUBY_SYSRIDIR}/Logger/LogDevice/LogDeviceMutex +${RUBY_SYSRIDIR}/Logger/LogDevice/add_log_header-i.yaml +${RUBY_SYSRIDIR}/Logger/LogDevice/cdesc-LogDevice.yaml +${RUBY_SYSRIDIR}/Logger/LogDevice/check_shift_log-i.yaml +${RUBY_SYSRIDIR}/Logger/LogDevice/close-i.yaml +${RUBY_SYSRIDIR}/Logger/LogDevice/create_logfile-i.yaml +${RUBY_SYSRIDIR}/Logger/LogDevice/eod-i.yaml +${RUBY_SYSRIDIR}/Logger/LogDevice/new-c.yaml +${RUBY_SYSRIDIR}/Logger/LogDevice/open_logfile-i.yaml +${RUBY_SYSRIDIR}/Logger/LogDevice/previous_period_end-i.yaml +${RUBY_SYSRIDIR}/Logger/LogDevice/shift_log_age-i.yaml +${RUBY_SYSRIDIR}/Logger/LogDevice/shift_log_period-i.yaml +${RUBY_SYSRIDIR}/Logger/LogDevice/write-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Logger/LogDevice +${RUBY_SYSRIDIR}/Logger/Severity/cdesc-Severity.yaml +@dirrm ${RUBY_SYSRIDIR}/Logger/Severity +${RUBY_SYSRIDIR}/Logger/ShiftingError/cdesc-ShiftingError.yaml +@dirrm ${RUBY_SYSRIDIR}/Logger/ShiftingError +${RUBY_SYSRIDIR}/Logger/add-i.yaml +${RUBY_SYSRIDIR}/Logger/cdesc-Logger.yaml +${RUBY_SYSRIDIR}/Logger/close-i.yaml +${RUBY_SYSRIDIR}/Logger/datetime_format%3d-i.yaml +${RUBY_SYSRIDIR}/Logger/datetime_format-i.yaml +${RUBY_SYSRIDIR}/Logger/debug%3f-i.yaml +${RUBY_SYSRIDIR}/Logger/debug-i.yaml +${RUBY_SYSRIDIR}/Logger/error%3f-i.yaml +${RUBY_SYSRIDIR}/Logger/error-i.yaml +${RUBY_SYSRIDIR}/Logger/fatal%3f-i.yaml +${RUBY_SYSRIDIR}/Logger/fatal-i.yaml +${RUBY_SYSRIDIR}/Logger/format_message-i.yaml +${RUBY_SYSRIDIR}/Logger/format_severity-i.yaml +${RUBY_SYSRIDIR}/Logger/info%3f-i.yaml +${RUBY_SYSRIDIR}/Logger/info-i.yaml +${RUBY_SYSRIDIR}/Logger/log-i.yaml +${RUBY_SYSRIDIR}/Logger/new-c.yaml +${RUBY_SYSRIDIR}/Logger/unknown-i.yaml +${RUBY_SYSRIDIR}/Logger/warn%3f-i.yaml +${RUBY_SYSRIDIR}/Logger/warn-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Logger +${RUBY_SYSRIDIR}/Marshal/cdesc-Marshal.yaml +${RUBY_SYSRIDIR}/Marshal/dump-i.yaml +${RUBY_SYSRIDIR}/Marshal/load-i.yaml +${RUBY_SYSRIDIR}/Marshal/restore-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Marshal +${RUBY_SYSRIDIR}/MatchData/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/MatchData/begin-i.yaml +${RUBY_SYSRIDIR}/MatchData/captures-i.yaml +${RUBY_SYSRIDIR}/MatchData/cdesc-MatchData.yaml +${RUBY_SYSRIDIR}/MatchData/end-i.yaml +${RUBY_SYSRIDIR}/MatchData/inspect-i.yaml +${RUBY_SYSRIDIR}/MatchData/length-i.yaml +${RUBY_SYSRIDIR}/MatchData/offset-i.yaml +${RUBY_SYSRIDIR}/MatchData/post_match-i.yaml +${RUBY_SYSRIDIR}/MatchData/pre_match-i.yaml +${RUBY_SYSRIDIR}/MatchData/select-i.yaml +${RUBY_SYSRIDIR}/MatchData/size-i.yaml +${RUBY_SYSRIDIR}/MatchData/string-i.yaml +${RUBY_SYSRIDIR}/MatchData/to_a-i.yaml +${RUBY_SYSRIDIR}/MatchData/to_s-i.yaml +${RUBY_SYSRIDIR}/MatchData/values_at-i.yaml +@dirrm ${RUBY_SYSRIDIR}/MatchData +${RUBY_SYSRIDIR}/Math/acos%21-i.yaml +${RUBY_SYSRIDIR}/Math/acos-i.yaml +${RUBY_SYSRIDIR}/Math/acosh%21-i.yaml +${RUBY_SYSRIDIR}/Math/acosh-i.yaml +${RUBY_SYSRIDIR}/Math/asin%21-i.yaml +${RUBY_SYSRIDIR}/Math/asin-i.yaml +${RUBY_SYSRIDIR}/Math/asinh%21-i.yaml +${RUBY_SYSRIDIR}/Math/asinh-i.yaml +${RUBY_SYSRIDIR}/Math/atan%21-i.yaml +${RUBY_SYSRIDIR}/Math/atan-i.yaml +${RUBY_SYSRIDIR}/Math/atan2%21-i.yaml +${RUBY_SYSRIDIR}/Math/atan2-i.yaml +${RUBY_SYSRIDIR}/Math/atanh%21-i.yaml +${RUBY_SYSRIDIR}/Math/atanh-i.yaml +${RUBY_SYSRIDIR}/Math/cdesc-Math.yaml +${RUBY_SYSRIDIR}/Math/cos%21-i.yaml +${RUBY_SYSRIDIR}/Math/cos-i.yaml +${RUBY_SYSRIDIR}/Math/cosh%21-i.yaml +${RUBY_SYSRIDIR}/Math/cosh-i.yaml +${RUBY_SYSRIDIR}/Math/erf-i.yaml +${RUBY_SYSRIDIR}/Math/erfc-i.yaml +${RUBY_SYSRIDIR}/Math/exp%21-i.yaml +${RUBY_SYSRIDIR}/Math/exp-i.yaml +${RUBY_SYSRIDIR}/Math/frexp-i.yaml +${RUBY_SYSRIDIR}/Math/hypot-i.yaml +${RUBY_SYSRIDIR}/Math/ldexp-i.yaml +${RUBY_SYSRIDIR}/Math/log%21-i.yaml +${RUBY_SYSRIDIR}/Math/log-i.yaml +${RUBY_SYSRIDIR}/Math/log10%21-i.yaml +${RUBY_SYSRIDIR}/Math/log10-i.yaml +${RUBY_SYSRIDIR}/Math/sin%21-i.yaml +${RUBY_SYSRIDIR}/Math/sin-i.yaml +${RUBY_SYSRIDIR}/Math/sinh%21-i.yaml +${RUBY_SYSRIDIR}/Math/sinh-i.yaml +${RUBY_SYSRIDIR}/Math/sqrt%21-i.yaml +${RUBY_SYSRIDIR}/Math/sqrt-i.yaml +${RUBY_SYSRIDIR}/Math/tan%21-i.yaml +${RUBY_SYSRIDIR}/Math/tan-i.yaml +${RUBY_SYSRIDIR}/Math/tanh%21-i.yaml +${RUBY_SYSRIDIR}/Math/tanh-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Math +${RUBY_SYSRIDIR}/Matrix/%2a%2a-i.yaml +${RUBY_SYSRIDIR}/Matrix/%2a-i.yaml +${RUBY_SYSRIDIR}/Matrix/%2b-i.yaml +${RUBY_SYSRIDIR}/Matrix/%2d-i.yaml +${RUBY_SYSRIDIR}/Matrix/%2f-i.yaml +${RUBY_SYSRIDIR}/Matrix/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Matrix/%5b%5d-c.yaml +${RUBY_SYSRIDIR}/Matrix/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/Matrix/Scalar/cdesc-Scalar.yaml +@dirrm ${RUBY_SYSRIDIR}/Matrix/Scalar +${RUBY_SYSRIDIR}/Matrix/cdesc-Matrix.yaml +${RUBY_SYSRIDIR}/Matrix/clone-i.yaml +${RUBY_SYSRIDIR}/Matrix/coerce-i.yaml +${RUBY_SYSRIDIR}/Matrix/collect-i.yaml +${RUBY_SYSRIDIR}/Matrix/column-i.yaml +${RUBY_SYSRIDIR}/Matrix/column_size-i.yaml +${RUBY_SYSRIDIR}/Matrix/column_vector-c.yaml +${RUBY_SYSRIDIR}/Matrix/column_vectors-i.yaml +${RUBY_SYSRIDIR}/Matrix/columns-c.yaml +${RUBY_SYSRIDIR}/Matrix/compare_by_row_vectors-i.yaml +${RUBY_SYSRIDIR}/Matrix/det-i.yaml +${RUBY_SYSRIDIR}/Matrix/determinant-i.yaml +${RUBY_SYSRIDIR}/Matrix/diagonal-c.yaml +${RUBY_SYSRIDIR}/Matrix/eql%3f-i.yaml +${RUBY_SYSRIDIR}/Matrix/hash-i.yaml +${RUBY_SYSRIDIR}/Matrix/identity-c.yaml +${RUBY_SYSRIDIR}/Matrix/init_rows-i.yaml +${RUBY_SYSRIDIR}/Matrix/inspect-i.yaml +${RUBY_SYSRIDIR}/Matrix/inv-i.yaml +${RUBY_SYSRIDIR}/Matrix/inverse-i.yaml +${RUBY_SYSRIDIR}/Matrix/inverse_from-i.yaml +${RUBY_SYSRIDIR}/Matrix/map-i.yaml +${RUBY_SYSRIDIR}/Matrix/minor-i.yaml +${RUBY_SYSRIDIR}/Matrix/new-c.yaml +${RUBY_SYSRIDIR}/Matrix/rank-i.yaml +${RUBY_SYSRIDIR}/Matrix/regular%3f-i.yaml +${RUBY_SYSRIDIR}/Matrix/row-i.yaml +${RUBY_SYSRIDIR}/Matrix/row_size-i.yaml +${RUBY_SYSRIDIR}/Matrix/row_vector-c.yaml +${RUBY_SYSRIDIR}/Matrix/row_vectors-i.yaml +${RUBY_SYSRIDIR}/Matrix/rows-c.yaml +${RUBY_SYSRIDIR}/Matrix/scalar-c.yaml +${RUBY_SYSRIDIR}/Matrix/singular%3f-i.yaml +${RUBY_SYSRIDIR}/Matrix/square%3f-i.yaml +${RUBY_SYSRIDIR}/Matrix/t-i.yaml +${RUBY_SYSRIDIR}/Matrix/to_a-i.yaml +${RUBY_SYSRIDIR}/Matrix/to_s-i.yaml +${RUBY_SYSRIDIR}/Matrix/tr-i.yaml +${RUBY_SYSRIDIR}/Matrix/trace-i.yaml +${RUBY_SYSRIDIR}/Matrix/transpose-i.yaml +${RUBY_SYSRIDIR}/Matrix/zero-c.yaml +@dirrm ${RUBY_SYSRIDIR}/Matrix +${RUBY_SYSRIDIR}/Method/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Method/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/Method/arity-i.yaml +${RUBY_SYSRIDIR}/Method/call-i.yaml +${RUBY_SYSRIDIR}/Method/cdesc-Method.yaml +${RUBY_SYSRIDIR}/Method/clone-i.yaml +${RUBY_SYSRIDIR}/Method/inspect-i.yaml +${RUBY_SYSRIDIR}/Method/to_proc-i.yaml +${RUBY_SYSRIDIR}/Method/to_s-i.yaml +${RUBY_SYSRIDIR}/Method/unbind-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Method +${RUBY_SYSRIDIR}/Module/%3c%3d%3e-i.yaml +${RUBY_SYSRIDIR}/Module/%3c%3d-i.yaml +${RUBY_SYSRIDIR}/Module/%3c-i.yaml +${RUBY_SYSRIDIR}/Module/%3d%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Module/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Module/%3e%3d-i.yaml +${RUBY_SYSRIDIR}/Module/%3e-i.yaml +${RUBY_SYSRIDIR}/Module/alias_method-i.yaml +${RUBY_SYSRIDIR}/Module/ancestors-i.yaml +${RUBY_SYSRIDIR}/Module/append_features-i.yaml +${RUBY_SYSRIDIR}/Module/attr-i.yaml +${RUBY_SYSRIDIR}/Module/attr_accessor-i.yaml +${RUBY_SYSRIDIR}/Module/attr_reader-i.yaml +${RUBY_SYSRIDIR}/Module/attr_writer-i.yaml +${RUBY_SYSRIDIR}/Module/autoload%3f-i.yaml +${RUBY_SYSRIDIR}/Module/autoload-i.yaml +${RUBY_SYSRIDIR}/Module/cdesc-Module.yaml +${RUBY_SYSRIDIR}/Module/class_eval-i.yaml +${RUBY_SYSRIDIR}/Module/class_variable_get-i.yaml +${RUBY_SYSRIDIR}/Module/class_variable_set-i.yaml +${RUBY_SYSRIDIR}/Module/class_variables-i.yaml +${RUBY_SYSRIDIR}/Module/const_defined%3f-i.yaml +${RUBY_SYSRIDIR}/Module/const_get-i.yaml +${RUBY_SYSRIDIR}/Module/const_missing-i.yaml +${RUBY_SYSRIDIR}/Module/const_set-i.yaml +${RUBY_SYSRIDIR}/Module/constants-c.yaml +${RUBY_SYSRIDIR}/Module/constants-i.yaml +${RUBY_SYSRIDIR}/Module/define_method-i.yaml +${RUBY_SYSRIDIR}/Module/extend_object-i.yaml +${RUBY_SYSRIDIR}/Module/extended-i.yaml +${RUBY_SYSRIDIR}/Module/freeze-i.yaml +${RUBY_SYSRIDIR}/Module/include%3f-i.yaml +${RUBY_SYSRIDIR}/Module/include-i.yaml +${RUBY_SYSRIDIR}/Module/included-i.yaml +${RUBY_SYSRIDIR}/Module/included_modules-i.yaml +${RUBY_SYSRIDIR}/Module/instance_method-i.yaml +${RUBY_SYSRIDIR}/Module/instance_methods-i.yaml +${RUBY_SYSRIDIR}/Module/method_added-i.yaml +${RUBY_SYSRIDIR}/Module/method_defined%3f-i.yaml +${RUBY_SYSRIDIR}/Module/method_removed-i.yaml +${RUBY_SYSRIDIR}/Module/method_undefined-i.yaml +${RUBY_SYSRIDIR}/Module/module_eval-i.yaml +${RUBY_SYSRIDIR}/Module/module_function-i.yaml +${RUBY_SYSRIDIR}/Module/name-i.yaml +${RUBY_SYSRIDIR}/Module/nesting-c.yaml +${RUBY_SYSRIDIR}/Module/new-c.yaml +${RUBY_SYSRIDIR}/Module/private-i.yaml +${RUBY_SYSRIDIR}/Module/private_class_method-i.yaml +${RUBY_SYSRIDIR}/Module/private_instance_methods-i.yaml +${RUBY_SYSRIDIR}/Module/private_method_defined%3f-i.yaml +${RUBY_SYSRIDIR}/Module/protected-i.yaml +${RUBY_SYSRIDIR}/Module/protected_instance_methods-i.yaml +${RUBY_SYSRIDIR}/Module/protected_method_defined%3f-i.yaml +${RUBY_SYSRIDIR}/Module/public-i.yaml +${RUBY_SYSRIDIR}/Module/public_class_method-i.yaml +${RUBY_SYSRIDIR}/Module/public_instance_methods-i.yaml +${RUBY_SYSRIDIR}/Module/public_method_defined%3f-i.yaml +${RUBY_SYSRIDIR}/Module/remove_class_variable-i.yaml +${RUBY_SYSRIDIR}/Module/remove_const-i.yaml +${RUBY_SYSRIDIR}/Module/remove_method-i.yaml +${RUBY_SYSRIDIR}/Module/to_s-i.yaml +${RUBY_SYSRIDIR}/Module/undef_method-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Module +${RUBY_SYSRIDIR}/Mutex/cdesc-Mutex.yaml +${RUBY_SYSRIDIR}/Mutex/exclusive_unlock-i.yaml +${RUBY_SYSRIDIR}/Mutex/lock-i.yaml +${RUBY_SYSRIDIR}/Mutex/locked%3f-i.yaml +${RUBY_SYSRIDIR}/Mutex/new-c.yaml +${RUBY_SYSRIDIR}/Mutex/synchronize-i.yaml +${RUBY_SYSRIDIR}/Mutex/try_lock-i.yaml +${RUBY_SYSRIDIR}/Mutex/unlock-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Mutex +${RUBY_SYSRIDIR}/NameError/cdesc-NameError.yaml +${RUBY_SYSRIDIR}/NameError/message/cdesc-message.yaml +@dirrm ${RUBY_SYSRIDIR}/NameError/message +${RUBY_SYSRIDIR}/NameError/name-i.yaml +${RUBY_SYSRIDIR}/NameError/new-c.yaml +${RUBY_SYSRIDIR}/NameError/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/NameError +${RUBY_SYSRIDIR}/NilClass/%26-i.yaml +${RUBY_SYSRIDIR}/NilClass/%5e-i.yaml +${RUBY_SYSRIDIR}/NilClass/%7c-i.yaml +${RUBY_SYSRIDIR}/NilClass/cdesc-NilClass.yaml +${RUBY_SYSRIDIR}/NilClass/inspect-i.yaml +${RUBY_SYSRIDIR}/NilClass/nil%3f-i.yaml +${RUBY_SYSRIDIR}/NilClass/to_a-i.yaml +${RUBY_SYSRIDIR}/NilClass/to_f-i.yaml +${RUBY_SYSRIDIR}/NilClass/to_i-i.yaml +${RUBY_SYSRIDIR}/NilClass/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/NilClass +${RUBY_SYSRIDIR}/NoMemoryError/cdesc-NoMemoryError.yaml +@dirrm ${RUBY_SYSRIDIR}/NoMemoryError +${RUBY_SYSRIDIR}/NoMethodError/args-i.yaml +${RUBY_SYSRIDIR}/NoMethodError/cdesc-NoMethodError.yaml +${RUBY_SYSRIDIR}/NoMethodError/new-c.yaml +@dirrm ${RUBY_SYSRIDIR}/NoMethodError +${RUBY_SYSRIDIR}/NotImplementedError/cdesc-NotImplementedError.yaml +@dirrm ${RUBY_SYSRIDIR}/NotImplementedError +${RUBY_SYSRIDIR}/Numeric/%2b%40-i.yaml +${RUBY_SYSRIDIR}/Numeric/%2d%40-i.yaml +${RUBY_SYSRIDIR}/Numeric/%3c%3d%3e-i.yaml +${RUBY_SYSRIDIR}/Numeric/abs-i.yaml +${RUBY_SYSRIDIR}/Numeric/angle-i.yaml +${RUBY_SYSRIDIR}/Numeric/arg-i.yaml +${RUBY_SYSRIDIR}/Numeric/cdesc-Numeric.yaml +${RUBY_SYSRIDIR}/Numeric/ceil-i.yaml +${RUBY_SYSRIDIR}/Numeric/coerce-i.yaml +${RUBY_SYSRIDIR}/Numeric/conj-i.yaml +${RUBY_SYSRIDIR}/Numeric/conjugate-i.yaml +${RUBY_SYSRIDIR}/Numeric/div-i.yaml +${RUBY_SYSRIDIR}/Numeric/divmod-i.yaml +${RUBY_SYSRIDIR}/Numeric/eql%3f-i.yaml +${RUBY_SYSRIDIR}/Numeric/floor-i.yaml +${RUBY_SYSRIDIR}/Numeric/im-i.yaml +${RUBY_SYSRIDIR}/Numeric/imag-i.yaml +${RUBY_SYSRIDIR}/Numeric/image-i.yaml +${RUBY_SYSRIDIR}/Numeric/integer%3f-i.yaml +${RUBY_SYSRIDIR}/Numeric/modulo-i.yaml +${RUBY_SYSRIDIR}/Numeric/nonzero%3f-i.yaml +${RUBY_SYSRIDIR}/Numeric/polar-i.yaml +${RUBY_SYSRIDIR}/Numeric/quo-i.yaml +${RUBY_SYSRIDIR}/Numeric/real-i.yaml +${RUBY_SYSRIDIR}/Numeric/remainder-i.yaml +${RUBY_SYSRIDIR}/Numeric/round-i.yaml +${RUBY_SYSRIDIR}/Numeric/singleton_method_added-i.yaml +${RUBY_SYSRIDIR}/Numeric/step-i.yaml +${RUBY_SYSRIDIR}/Numeric/to_int-i.yaml +${RUBY_SYSRIDIR}/Numeric/truncate-i.yaml +${RUBY_SYSRIDIR}/Numeric/zero%3f-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Numeric +${RUBY_SYSRIDIR}/Object/%3d%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Object/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Object/%3d%7e-i.yaml +${RUBY_SYSRIDIR}/Object/__id__-i.yaml +${RUBY_SYSRIDIR}/Object/__send__-i.yaml +${RUBY_SYSRIDIR}/Object/cdesc-Object.yaml +${RUBY_SYSRIDIR}/Object/class-i.yaml +${RUBY_SYSRIDIR}/Object/clone-i.yaml +${RUBY_SYSRIDIR}/Object/display-i.yaml +${RUBY_SYSRIDIR}/Object/dup-i.yaml +${RUBY_SYSRIDIR}/Object/eql%3f-i.yaml +${RUBY_SYSRIDIR}/Object/equal%3f-i.yaml +${RUBY_SYSRIDIR}/Object/extend-i.yaml +${RUBY_SYSRIDIR}/Object/freeze-i.yaml +${RUBY_SYSRIDIR}/Object/frozen%3f-i.yaml +${RUBY_SYSRIDIR}/Object/hash-i.yaml +${RUBY_SYSRIDIR}/Object/id-i.yaml +${RUBY_SYSRIDIR}/Object/inspect-i.yaml +${RUBY_SYSRIDIR}/Object/instance_eval-i.yaml +${RUBY_SYSRIDIR}/Object/instance_of%3f-i.yaml +${RUBY_SYSRIDIR}/Object/instance_variable_get-i.yaml +${RUBY_SYSRIDIR}/Object/instance_variable_set-i.yaml +${RUBY_SYSRIDIR}/Object/instance_variables-i.yaml +${RUBY_SYSRIDIR}/Object/is_a%3f-i.yaml +${RUBY_SYSRIDIR}/Object/kind_of%3f-i.yaml +${RUBY_SYSRIDIR}/Object/method-i.yaml +${RUBY_SYSRIDIR}/Object/methods-i.yaml +${RUBY_SYSRIDIR}/Object/new-c.yaml +${RUBY_SYSRIDIR}/Object/nil%3f-i.yaml +${RUBY_SYSRIDIR}/Object/object_id-i.yaml +${RUBY_SYSRIDIR}/Object/private_methods-i.yaml +${RUBY_SYSRIDIR}/Object/protected_methods-i.yaml +${RUBY_SYSRIDIR}/Object/public_methods-i.yaml +${RUBY_SYSRIDIR}/Object/remove_instance_variable-i.yaml +${RUBY_SYSRIDIR}/Object/respond_to%3f-i.yaml +${RUBY_SYSRIDIR}/Object/send-i.yaml +${RUBY_SYSRIDIR}/Object/singleton_method_added-i.yaml +${RUBY_SYSRIDIR}/Object/singleton_method_removed-i.yaml +${RUBY_SYSRIDIR}/Object/singleton_method_undefined-i.yaml +${RUBY_SYSRIDIR}/Object/singleton_methods-i.yaml +${RUBY_SYSRIDIR}/Object/taint-i.yaml +${RUBY_SYSRIDIR}/Object/tainted%3f-i.yaml +${RUBY_SYSRIDIR}/Object/to_a-i.yaml +${RUBY_SYSRIDIR}/Object/to_s-i.yaml +${RUBY_SYSRIDIR}/Object/type-i.yaml +${RUBY_SYSRIDIR}/Object/untaint-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Object +${RUBY_SYSRIDIR}/ObjectSpace/_id2ref-i.yaml +${RUBY_SYSRIDIR}/ObjectSpace/add_finalizer-i.yaml +${RUBY_SYSRIDIR}/ObjectSpace/call_finalizer-i.yaml +${RUBY_SYSRIDIR}/ObjectSpace/cdesc-ObjectSpace.yaml +${RUBY_SYSRIDIR}/ObjectSpace/define_finalizer-i.yaml +${RUBY_SYSRIDIR}/ObjectSpace/each_object-i.yaml +${RUBY_SYSRIDIR}/ObjectSpace/finalizers-i.yaml +${RUBY_SYSRIDIR}/ObjectSpace/garbage_collect-i.yaml +${RUBY_SYSRIDIR}/ObjectSpace/remove_finalizer-i.yaml +${RUBY_SYSRIDIR}/ObjectSpace/undefine_finalizer-i.yaml +@dirrm ${RUBY_SYSRIDIR}/ObjectSpace +${RUBY_SYSRIDIR}/Observable/add_observer-i.yaml +${RUBY_SYSRIDIR}/Observable/cdesc-Observable.yaml +${RUBY_SYSRIDIR}/Observable/changed%3f-i.yaml +${RUBY_SYSRIDIR}/Observable/changed-i.yaml +${RUBY_SYSRIDIR}/Observable/count_observers-i.yaml +${RUBY_SYSRIDIR}/Observable/delete_observer-i.yaml +${RUBY_SYSRIDIR}/Observable/delete_observers-i.yaml +${RUBY_SYSRIDIR}/Observable/notify_observers-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Observable +${RUBY_SYSRIDIR}/Pathname/%2b-i.yaml +${RUBY_SYSRIDIR}/Pathname/%3c%3d%3e-i.yaml +${RUBY_SYSRIDIR}/Pathname/%3d%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Pathname/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Pathname/absolute%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/atime-i.yaml +${RUBY_SYSRIDIR}/Pathname/basename-i.yaml +${RUBY_SYSRIDIR}/Pathname/blockdev%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/cdesc-Pathname.yaml +${RUBY_SYSRIDIR}/Pathname/chardev%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/chdir-i.yaml +${RUBY_SYSRIDIR}/Pathname/children-i.yaml +${RUBY_SYSRIDIR}/Pathname/chmod-i.yaml +${RUBY_SYSRIDIR}/Pathname/chown-i.yaml +${RUBY_SYSRIDIR}/Pathname/chroot-i.yaml +${RUBY_SYSRIDIR}/Pathname/cleanpath-i.yaml +${RUBY_SYSRIDIR}/Pathname/cleanpath_aggressive-i.yaml +${RUBY_SYSRIDIR}/Pathname/cleanpath_conservative-i.yaml +${RUBY_SYSRIDIR}/Pathname/ctime-i.yaml +${RUBY_SYSRIDIR}/Pathname/delete-i.yaml +${RUBY_SYSRIDIR}/Pathname/dir_foreach-i.yaml +${RUBY_SYSRIDIR}/Pathname/directory%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/dirname-i.yaml +${RUBY_SYSRIDIR}/Pathname/each_entry-i.yaml +${RUBY_SYSRIDIR}/Pathname/each_filename-i.yaml +${RUBY_SYSRIDIR}/Pathname/each_line-i.yaml +${RUBY_SYSRIDIR}/Pathname/entries-i.yaml +${RUBY_SYSRIDIR}/Pathname/eql%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/executable%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/executable_real%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/exist%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/expand_path-i.yaml +${RUBY_SYSRIDIR}/Pathname/extname-i.yaml +${RUBY_SYSRIDIR}/Pathname/file%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/find-i.yaml +${RUBY_SYSRIDIR}/Pathname/fnmatch%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/fnmatch-i.yaml +${RUBY_SYSRIDIR}/Pathname/foreach-i.yaml +${RUBY_SYSRIDIR}/Pathname/foreachline-i.yaml +${RUBY_SYSRIDIR}/Pathname/freeze-i.yaml +${RUBY_SYSRIDIR}/Pathname/ftype-i.yaml +${RUBY_SYSRIDIR}/Pathname/getwd-c.yaml +${RUBY_SYSRIDIR}/Pathname/glob-c.yaml +${RUBY_SYSRIDIR}/Pathname/grpowned%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/join-i.yaml +${RUBY_SYSRIDIR}/Pathname/lchmod-i.yaml +${RUBY_SYSRIDIR}/Pathname/lchown-i.yaml +${RUBY_SYSRIDIR}/Pathname/link-i.yaml +${RUBY_SYSRIDIR}/Pathname/lstat-i.yaml +${RUBY_SYSRIDIR}/Pathname/make_link-i.yaml +${RUBY_SYSRIDIR}/Pathname/make_symlink-i.yaml +${RUBY_SYSRIDIR}/Pathname/mkdir-i.yaml +${RUBY_SYSRIDIR}/Pathname/mkpath-i.yaml +${RUBY_SYSRIDIR}/Pathname/mountpoint%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/mtime-i.yaml +${RUBY_SYSRIDIR}/Pathname/new-c.yaml +${RUBY_SYSRIDIR}/Pathname/open-i.yaml +${RUBY_SYSRIDIR}/Pathname/opendir-i.yaml +${RUBY_SYSRIDIR}/Pathname/owned%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/parent-i.yaml +${RUBY_SYSRIDIR}/Pathname/pipe%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/read-i.yaml +${RUBY_SYSRIDIR}/Pathname/readable%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/readable_real%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/readlines-i.yaml +${RUBY_SYSRIDIR}/Pathname/readlink-i.yaml +${RUBY_SYSRIDIR}/Pathname/realpath-i.yaml +${RUBY_SYSRIDIR}/Pathname/relative%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/relative_path_from-i.yaml +${RUBY_SYSRIDIR}/Pathname/rename-i.yaml +${RUBY_SYSRIDIR}/Pathname/rmdir-i.yaml +${RUBY_SYSRIDIR}/Pathname/rmtree-i.yaml +${RUBY_SYSRIDIR}/Pathname/root%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/setgid%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/setuid%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/size%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/size-i.yaml +${RUBY_SYSRIDIR}/Pathname/socket%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/split-i.yaml +${RUBY_SYSRIDIR}/Pathname/stat-i.yaml +${RUBY_SYSRIDIR}/Pathname/sticky%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/symlink%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/symlink-i.yaml +${RUBY_SYSRIDIR}/Pathname/sysopen-i.yaml +${RUBY_SYSRIDIR}/Pathname/taint-i.yaml +${RUBY_SYSRIDIR}/Pathname/to_s-i.yaml +${RUBY_SYSRIDIR}/Pathname/to_str-i.yaml +${RUBY_SYSRIDIR}/Pathname/truncate-i.yaml +${RUBY_SYSRIDIR}/Pathname/unlink-i.yaml +${RUBY_SYSRIDIR}/Pathname/untaint-i.yaml +${RUBY_SYSRIDIR}/Pathname/utime-i.yaml +${RUBY_SYSRIDIR}/Pathname/writable%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/writable_real%3f-i.yaml +${RUBY_SYSRIDIR}/Pathname/zero%3f-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Pathname +${RUBY_SYSRIDIR}/PathnameTest/AnotherStringLike/cdesc-AnotherStringLike.yaml +@dirrm ${RUBY_SYSRIDIR}/PathnameTest/AnotherStringLike +${RUBY_SYSRIDIR}/PathnameTest/cdesc-PathnameTest.yaml +@dirrm ${RUBY_SYSRIDIR}/PathnameTest +${RUBY_SYSRIDIR}/Precision/cdesc-Precision.yaml +${RUBY_SYSRIDIR}/Precision/included-c.yaml +${RUBY_SYSRIDIR}/Precision/prec-i.yaml +${RUBY_SYSRIDIR}/Precision/prec_f-i.yaml +${RUBY_SYSRIDIR}/Precision/prec_i-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Precision +${RUBY_SYSRIDIR}/Proc/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Proc/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/Proc/arity-i.yaml +${RUBY_SYSRIDIR}/Proc/binding-i.yaml +${RUBY_SYSRIDIR}/Proc/call-i.yaml +${RUBY_SYSRIDIR}/Proc/cdesc-Proc.yaml +${RUBY_SYSRIDIR}/Proc/clone-i.yaml +${RUBY_SYSRIDIR}/Proc/dup-i.yaml +${RUBY_SYSRIDIR}/Proc/new-c.yaml +${RUBY_SYSRIDIR}/Proc/to_proc-i.yaml +${RUBY_SYSRIDIR}/Proc/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Proc +${RUBY_SYSRIDIR}/Process/GID/cdesc-GID.yaml +${RUBY_SYSRIDIR}/Process/GID/change_privilege-i.yaml +${RUBY_SYSRIDIR}/Process/GID/eid%3d-i.yaml +${RUBY_SYSRIDIR}/Process/GID/eid-i.yaml +${RUBY_SYSRIDIR}/Process/GID/grant_privilege-i.yaml +${RUBY_SYSRIDIR}/Process/GID/re_exchange-i.yaml +${RUBY_SYSRIDIR}/Process/GID/re_exchangeable%3f-i.yaml +${RUBY_SYSRIDIR}/Process/GID/rid-i.yaml +${RUBY_SYSRIDIR}/Process/GID/sid_available%3f-i.yaml +${RUBY_SYSRIDIR}/Process/GID/switch-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Process/GID +${RUBY_SYSRIDIR}/Process/Status/%26-i.yaml +${RUBY_SYSRIDIR}/Process/Status/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Process/Status/%3e%3e-i.yaml +${RUBY_SYSRIDIR}/Process/Status/cdesc-Status.yaml +${RUBY_SYSRIDIR}/Process/Status/coredump%3f-i.yaml +${RUBY_SYSRIDIR}/Process/Status/exited%3f-i.yaml +${RUBY_SYSRIDIR}/Process/Status/exitstatus-i.yaml +${RUBY_SYSRIDIR}/Process/Status/inspect-i.yaml +${RUBY_SYSRIDIR}/Process/Status/pid-i.yaml +${RUBY_SYSRIDIR}/Process/Status/signaled%3f-i.yaml +${RUBY_SYSRIDIR}/Process/Status/stopped%3f-i.yaml +${RUBY_SYSRIDIR}/Process/Status/stopsig-i.yaml +${RUBY_SYSRIDIR}/Process/Status/success%3f-i.yaml +${RUBY_SYSRIDIR}/Process/Status/termsig-i.yaml +${RUBY_SYSRIDIR}/Process/Status/to_i-i.yaml +${RUBY_SYSRIDIR}/Process/Status/to_int-i.yaml +${RUBY_SYSRIDIR}/Process/Status/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Process/Status +${RUBY_SYSRIDIR}/Process/Sys/cdesc-Sys.yaml +${RUBY_SYSRIDIR}/Process/Sys/getegid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/geteuid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/getgid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/getuid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/issetugid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/setegid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/seteuid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/setgid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/setregid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/setresgid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/setresuid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/setreuid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/setrgid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/setruid-i.yaml +${RUBY_SYSRIDIR}/Process/Sys/setuid-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Process/Sys +${RUBY_SYSRIDIR}/Process/UID/cdesc-UID.yaml +${RUBY_SYSRIDIR}/Process/UID/change_privilege-i.yaml +${RUBY_SYSRIDIR}/Process/UID/eid%3d-i.yaml +${RUBY_SYSRIDIR}/Process/UID/eid-i.yaml +${RUBY_SYSRIDIR}/Process/UID/grant_privilege-i.yaml +${RUBY_SYSRIDIR}/Process/UID/re_exchange-i.yaml +${RUBY_SYSRIDIR}/Process/UID/re_exchangeable%3f-i.yaml +${RUBY_SYSRIDIR}/Process/UID/rid-i.yaml +${RUBY_SYSRIDIR}/Process/UID/sid_available%3f-i.yaml +${RUBY_SYSRIDIR}/Process/UID/switch-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Process/UID +${RUBY_SYSRIDIR}/Process/abort-c.yaml +${RUBY_SYSRIDIR}/Process/cdesc-Process.yaml +${RUBY_SYSRIDIR}/Process/detach-i.yaml +${RUBY_SYSRIDIR}/Process/egid%3d-i.yaml +${RUBY_SYSRIDIR}/Process/egid-i.yaml +${RUBY_SYSRIDIR}/Process/euid%3d-i.yaml +${RUBY_SYSRIDIR}/Process/euid-i.yaml +${RUBY_SYSRIDIR}/Process/exit%21-c.yaml +${RUBY_SYSRIDIR}/Process/exit-c.yaml +${RUBY_SYSRIDIR}/Process/fork-c.yaml +${RUBY_SYSRIDIR}/Process/getpgid-i.yaml +${RUBY_SYSRIDIR}/Process/getpgrp-i.yaml +${RUBY_SYSRIDIR}/Process/getpriority-i.yaml +${RUBY_SYSRIDIR}/Process/gid%3d-i.yaml +${RUBY_SYSRIDIR}/Process/gid-i.yaml +${RUBY_SYSRIDIR}/Process/groups%3d-i.yaml +${RUBY_SYSRIDIR}/Process/groups-i.yaml +${RUBY_SYSRIDIR}/Process/initgroups-i.yaml +${RUBY_SYSRIDIR}/Process/kill-i.yaml +${RUBY_SYSRIDIR}/Process/maxgroups%3d-i.yaml +${RUBY_SYSRIDIR}/Process/maxgroups-i.yaml +${RUBY_SYSRIDIR}/Process/pid-i.yaml +${RUBY_SYSRIDIR}/Process/ppid-i.yaml +${RUBY_SYSRIDIR}/Process/setpgid-i.yaml +${RUBY_SYSRIDIR}/Process/setpgrp-i.yaml +${RUBY_SYSRIDIR}/Process/setpriority-i.yaml +${RUBY_SYSRIDIR}/Process/setsid-i.yaml +${RUBY_SYSRIDIR}/Process/times-i.yaml +${RUBY_SYSRIDIR}/Process/uid%3d-i.yaml +${RUBY_SYSRIDIR}/Process/uid-i.yaml +${RUBY_SYSRIDIR}/Process/wait-i.yaml +${RUBY_SYSRIDIR}/Process/wait2-i.yaml +${RUBY_SYSRIDIR}/Process/waitall-i.yaml +${RUBY_SYSRIDIR}/Process/waitpid-i.yaml +${RUBY_SYSRIDIR}/Process/waitpid2-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Process +${RUBY_SYSRIDIR}/Queue/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/Queue/cdesc-Queue.yaml +${RUBY_SYSRIDIR}/Queue/clear-i.yaml +${RUBY_SYSRIDIR}/Queue/deq-i.yaml +${RUBY_SYSRIDIR}/Queue/empty%3f-i.yaml +${RUBY_SYSRIDIR}/Queue/enq-i.yaml +${RUBY_SYSRIDIR}/Queue/length-i.yaml +${RUBY_SYSRIDIR}/Queue/new-c.yaml +${RUBY_SYSRIDIR}/Queue/num_waiting-i.yaml +${RUBY_SYSRIDIR}/Queue/pop-i.yaml +${RUBY_SYSRIDIR}/Queue/push-i.yaml +${RUBY_SYSRIDIR}/Queue/shift-i.yaml +${RUBY_SYSRIDIR}/Queue/size-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Queue +${RUBY_SYSRIDIR}/Range/%3d%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Range/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Range/begin-i.yaml +${RUBY_SYSRIDIR}/Range/cdesc-Range.yaml +${RUBY_SYSRIDIR}/Range/each-i.yaml +${RUBY_SYSRIDIR}/Range/end-i.yaml +${RUBY_SYSRIDIR}/Range/eql%3f-i.yaml +${RUBY_SYSRIDIR}/Range/exclude_end%3f-i.yaml +${RUBY_SYSRIDIR}/Range/first-i.yaml +${RUBY_SYSRIDIR}/Range/hash-i.yaml +${RUBY_SYSRIDIR}/Range/include%3f-i.yaml +${RUBY_SYSRIDIR}/Range/inspect-i.yaml +${RUBY_SYSRIDIR}/Range/last-i.yaml +${RUBY_SYSRIDIR}/Range/member%3f-i.yaml +${RUBY_SYSRIDIR}/Range/new-c.yaml +${RUBY_SYSRIDIR}/Range/step-i.yaml +${RUBY_SYSRIDIR}/Range/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Range +${RUBY_SYSRIDIR}/RangeError/cdesc-RangeError.yaml +@dirrm ${RUBY_SYSRIDIR}/RangeError +${RUBY_SYSRIDIR}/Regexp/%3d%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Regexp/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Regexp/%3d%7e-i.yaml +${RUBY_SYSRIDIR}/Regexp/%7e-i.yaml +${RUBY_SYSRIDIR}/Regexp/casefold%3f-i.yaml +${RUBY_SYSRIDIR}/Regexp/cdesc-Regexp.yaml +${RUBY_SYSRIDIR}/Regexp/compile-c.yaml +${RUBY_SYSRIDIR}/Regexp/eql%3f-i.yaml +${RUBY_SYSRIDIR}/Regexp/escape-c.yaml +${RUBY_SYSRIDIR}/Regexp/hash-i.yaml +${RUBY_SYSRIDIR}/Regexp/inspect-i.yaml +${RUBY_SYSRIDIR}/Regexp/kcode-i.yaml +${RUBY_SYSRIDIR}/Regexp/last_match-c.yaml +${RUBY_SYSRIDIR}/Regexp/match-i.yaml +${RUBY_SYSRIDIR}/Regexp/new-c.yaml +${RUBY_SYSRIDIR}/Regexp/options-i.yaml +${RUBY_SYSRIDIR}/Regexp/quote-c.yaml +${RUBY_SYSRIDIR}/Regexp/source-i.yaml +${RUBY_SYSRIDIR}/Regexp/to_s-i.yaml +${RUBY_SYSRIDIR}/Regexp/union-c.yaml +@dirrm ${RUBY_SYSRIDIR}/Regexp +${RUBY_SYSRIDIR}/RegexpError/cdesc-RegexpError.yaml +@dirrm ${RUBY_SYSRIDIR}/RegexpError +${RUBY_SYSRIDIR}/RuntimeError/cdesc-RuntimeError.yaml +@dirrm ${RUBY_SYSRIDIR}/RuntimeError +${RUBY_SYSRIDIR}/ScriptError/cdesc-ScriptError.yaml +@dirrm ${RUBY_SYSRIDIR}/ScriptError +${RUBY_SYSRIDIR}/SecurityError/cdesc-SecurityError.yaml +@dirrm ${RUBY_SYSRIDIR}/SecurityError +${RUBY_SYSRIDIR}/Set/%26-i.yaml +${RUBY_SYSRIDIR}/Set/%2b-i.yaml +${RUBY_SYSRIDIR}/Set/%2d-i.yaml +${RUBY_SYSRIDIR}/Set/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/Set/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Set/%5b%5d-c.yaml +${RUBY_SYSRIDIR}/Set/%5e-i.yaml +${RUBY_SYSRIDIR}/Set/%7c-i.yaml +${RUBY_SYSRIDIR}/Set/add%3f-i.yaml +${RUBY_SYSRIDIR}/Set/add-i.yaml +${RUBY_SYSRIDIR}/Set/cdesc-Set.yaml +${RUBY_SYSRIDIR}/Set/classify-i.yaml +${RUBY_SYSRIDIR}/Set/clear-i.yaml +${RUBY_SYSRIDIR}/Set/collect%21-i.yaml +${RUBY_SYSRIDIR}/Set/delete%3f-i.yaml +${RUBY_SYSRIDIR}/Set/delete-i.yaml +${RUBY_SYSRIDIR}/Set/delete_if-i.yaml +${RUBY_SYSRIDIR}/Set/difference-i.yaml +${RUBY_SYSRIDIR}/Set/divide-i.yaml +${RUBY_SYSRIDIR}/Set/each-i.yaml +${RUBY_SYSRIDIR}/Set/empty%3f-i.yaml +${RUBY_SYSRIDIR}/Set/flatten%21-i.yaml +${RUBY_SYSRIDIR}/Set/flatten-i.yaml +${RUBY_SYSRIDIR}/Set/flatten_merge-i.yaml +${RUBY_SYSRIDIR}/Set/include%3f-i.yaml +${RUBY_SYSRIDIR}/Set/initialize_copy-i.yaml +${RUBY_SYSRIDIR}/Set/inspect-i.yaml +${RUBY_SYSRIDIR}/Set/intersection-i.yaml +${RUBY_SYSRIDIR}/Set/length-i.yaml +${RUBY_SYSRIDIR}/Set/map%21-i.yaml +${RUBY_SYSRIDIR}/Set/member%3f-i.yaml +${RUBY_SYSRIDIR}/Set/merge-i.yaml +${RUBY_SYSRIDIR}/Set/new-c.yaml +${RUBY_SYSRIDIR}/Set/proper_subset%3f-i.yaml +${RUBY_SYSRIDIR}/Set/proper_superset%3f-i.yaml +${RUBY_SYSRIDIR}/Set/reject%21-i.yaml +${RUBY_SYSRIDIR}/Set/replace-i.yaml +${RUBY_SYSRIDIR}/Set/size-i.yaml +${RUBY_SYSRIDIR}/Set/subset%3f-i.yaml +${RUBY_SYSRIDIR}/Set/subtract-i.yaml +${RUBY_SYSRIDIR}/Set/superset%3f-i.yaml +${RUBY_SYSRIDIR}/Set/to_a-i.yaml +${RUBY_SYSRIDIR}/Set/union-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Set +${RUBY_SYSRIDIR}/Shellwords/cdesc-Shellwords.yaml +${RUBY_SYSRIDIR}/Shellwords/shellwords-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Shellwords +${RUBY_SYSRIDIR}/Signal/cdesc-Signal.yaml +${RUBY_SYSRIDIR}/Signal/list-i.yaml +${RUBY_SYSRIDIR}/Signal/trap-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Signal +${RUBY_SYSRIDIR}/SignalException/cdesc-SignalException.yaml +@dirrm ${RUBY_SYSRIDIR}/SignalException +${RUBY_SYSRIDIR}/Singleton/_dump-i.yaml +${RUBY_SYSRIDIR}/Singleton/cdesc-Singleton.yaml +${RUBY_SYSRIDIR}/Singleton/clone-i.yaml +${RUBY_SYSRIDIR}/Singleton/dup-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Singleton +${RUBY_SYSRIDIR}/SingletonClassMethods/_instantiate%3f-i.yaml +${RUBY_SYSRIDIR}/SingletonClassMethods/_load-i.yaml +${RUBY_SYSRIDIR}/SingletonClassMethods/cdesc-SingletonClassMethods.yaml +${RUBY_SYSRIDIR}/SingletonClassMethods/clone-i.yaml +${RUBY_SYSRIDIR}/SingletonClassMethods/inherited-i.yaml +@dirrm ${RUBY_SYSRIDIR}/SingletonClassMethods +${RUBY_SYSRIDIR}/SizedQueue/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/SizedQueue/cdesc-SizedQueue.yaml +${RUBY_SYSRIDIR}/SizedQueue/deq-i.yaml +${RUBY_SYSRIDIR}/SizedQueue/enq-i.yaml +${RUBY_SYSRIDIR}/SizedQueue/max%3d-i.yaml +${RUBY_SYSRIDIR}/SizedQueue/max-i.yaml +${RUBY_SYSRIDIR}/SizedQueue/new-c.yaml +${RUBY_SYSRIDIR}/SizedQueue/num_waiting-i.yaml +${RUBY_SYSRIDIR}/SizedQueue/pop-i.yaml +${RUBY_SYSRIDIR}/SizedQueue/push-i.yaml +${RUBY_SYSRIDIR}/SizedQueue/shift-i.yaml +@dirrm ${RUBY_SYSRIDIR}/SizedQueue +${RUBY_SYSRIDIR}/SortedSet/cdesc-SortedSet.yaml +@dirrm ${RUBY_SYSRIDIR}/SortedSet +${RUBY_SYSRIDIR}/StandardError/cdesc-StandardError.yaml +@dirrm ${RUBY_SYSRIDIR}/StandardError +${RUBY_SYSRIDIR}/String/%25-i.yaml +${RUBY_SYSRIDIR}/String/%2a-i.yaml +${RUBY_SYSRIDIR}/String/%2b-i.yaml +${RUBY_SYSRIDIR}/String/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/String/%3c%3d%3e-i.yaml +${RUBY_SYSRIDIR}/String/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/String/%3d%7e-i.yaml +${RUBY_SYSRIDIR}/String/%5b%5d%3d-i.yaml +${RUBY_SYSRIDIR}/String/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/String/capitalize%21-i.yaml +${RUBY_SYSRIDIR}/String/capitalize-i.yaml +${RUBY_SYSRIDIR}/String/casecmp-i.yaml +${RUBY_SYSRIDIR}/String/cdesc-String.yaml +${RUBY_SYSRIDIR}/String/center-i.yaml +${RUBY_SYSRIDIR}/String/chomp%21-i.yaml +${RUBY_SYSRIDIR}/String/chomp-i.yaml +${RUBY_SYSRIDIR}/String/chop%21-i.yaml +${RUBY_SYSRIDIR}/String/chop-i.yaml +${RUBY_SYSRIDIR}/String/concat-i.yaml +${RUBY_SYSRIDIR}/String/count-i.yaml +${RUBY_SYSRIDIR}/String/crypt-i.yaml +${RUBY_SYSRIDIR}/String/delete%21-i.yaml +${RUBY_SYSRIDIR}/String/delete-i.yaml +${RUBY_SYSRIDIR}/String/downcase%21-i.yaml +${RUBY_SYSRIDIR}/String/downcase-i.yaml +${RUBY_SYSRIDIR}/String/dump-i.yaml +${RUBY_SYSRIDIR}/String/each-i.yaml +${RUBY_SYSRIDIR}/String/each_byte-i.yaml +${RUBY_SYSRIDIR}/String/each_line-i.yaml +${RUBY_SYSRIDIR}/String/empty%3f-i.yaml +${RUBY_SYSRIDIR}/String/eql%3f-i.yaml +${RUBY_SYSRIDIR}/String/gsub%21-i.yaml +${RUBY_SYSRIDIR}/String/gsub-i.yaml +${RUBY_SYSRIDIR}/String/hash-i.yaml +${RUBY_SYSRIDIR}/String/hex-i.yaml +${RUBY_SYSRIDIR}/String/include%3f-i.yaml +${RUBY_SYSRIDIR}/String/index-i.yaml +${RUBY_SYSRIDIR}/String/initialize_copy-i.yaml +${RUBY_SYSRIDIR}/String/insert-i.yaml +${RUBY_SYSRIDIR}/String/inspect-i.yaml +${RUBY_SYSRIDIR}/String/intern-i.yaml +${RUBY_SYSRIDIR}/String/length-i.yaml +${RUBY_SYSRIDIR}/String/ljust-i.yaml +${RUBY_SYSRIDIR}/String/lstrip%21-i.yaml +${RUBY_SYSRIDIR}/String/lstrip-i.yaml +${RUBY_SYSRIDIR}/String/match-i.yaml +${RUBY_SYSRIDIR}/String/new-c.yaml +${RUBY_SYSRIDIR}/String/next%21-i.yaml +${RUBY_SYSRIDIR}/String/next-i.yaml +${RUBY_SYSRIDIR}/String/oct-i.yaml +${RUBY_SYSRIDIR}/String/replace-i.yaml +${RUBY_SYSRIDIR}/String/reverse%21-i.yaml +${RUBY_SYSRIDIR}/String/reverse-i.yaml +${RUBY_SYSRIDIR}/String/rindex-i.yaml +${RUBY_SYSRIDIR}/String/rjust-i.yaml +${RUBY_SYSRIDIR}/String/rstrip%21-i.yaml +${RUBY_SYSRIDIR}/String/rstrip-i.yaml +${RUBY_SYSRIDIR}/String/scan-i.yaml +${RUBY_SYSRIDIR}/String/size-i.yaml +${RUBY_SYSRIDIR}/String/slice%21-i.yaml +${RUBY_SYSRIDIR}/String/slice-i.yaml +${RUBY_SYSRIDIR}/String/split-i.yaml +${RUBY_SYSRIDIR}/String/squeeze%21-i.yaml +${RUBY_SYSRIDIR}/String/squeeze-i.yaml +${RUBY_SYSRIDIR}/String/strip%21-i.yaml +${RUBY_SYSRIDIR}/String/strip-i.yaml +${RUBY_SYSRIDIR}/String/sub%21-i.yaml +${RUBY_SYSRIDIR}/String/sub-i.yaml +${RUBY_SYSRIDIR}/String/succ%21-i.yaml +${RUBY_SYSRIDIR}/String/succ-i.yaml +${RUBY_SYSRIDIR}/String/sum-i.yaml +${RUBY_SYSRIDIR}/String/swapcase%21-i.yaml +${RUBY_SYSRIDIR}/String/swapcase-i.yaml +${RUBY_SYSRIDIR}/String/to_f-i.yaml +${RUBY_SYSRIDIR}/String/to_i-i.yaml +${RUBY_SYSRIDIR}/String/to_s-i.yaml +${RUBY_SYSRIDIR}/String/to_str-i.yaml +${RUBY_SYSRIDIR}/String/to_sym-i.yaml +${RUBY_SYSRIDIR}/String/tr%21-i.yaml +${RUBY_SYSRIDIR}/String/tr-i.yaml +${RUBY_SYSRIDIR}/String/tr_s%21-i.yaml +${RUBY_SYSRIDIR}/String/tr_s-i.yaml +${RUBY_SYSRIDIR}/String/unpack-i.yaml +${RUBY_SYSRIDIR}/String/upcase%21-i.yaml +${RUBY_SYSRIDIR}/String/upcase-i.yaml +${RUBY_SYSRIDIR}/String/upto-i.yaml +@dirrm ${RUBY_SYSRIDIR}/String +${RUBY_SYSRIDIR}/StringIO/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/StringIO/binmode-i.yaml +${RUBY_SYSRIDIR}/StringIO/cdesc-StringIO.yaml +${RUBY_SYSRIDIR}/StringIO/close-i.yaml +${RUBY_SYSRIDIR}/StringIO/close_read-i.yaml +${RUBY_SYSRIDIR}/StringIO/close_write-i.yaml +${RUBY_SYSRIDIR}/StringIO/closed%3f-i.yaml +${RUBY_SYSRIDIR}/StringIO/closed_read%3f-i.yaml +${RUBY_SYSRIDIR}/StringIO/closed_write%3f-i.yaml +${RUBY_SYSRIDIR}/StringIO/each-i.yaml +${RUBY_SYSRIDIR}/StringIO/each_byte-i.yaml +${RUBY_SYSRIDIR}/StringIO/each_line-i.yaml +${RUBY_SYSRIDIR}/StringIO/eof%3f-i.yaml +${RUBY_SYSRIDIR}/StringIO/eof-i.yaml +${RUBY_SYSRIDIR}/StringIO/fcntl-i.yaml +${RUBY_SYSRIDIR}/StringIO/fileno-i.yaml +${RUBY_SYSRIDIR}/StringIO/flush-i.yaml +${RUBY_SYSRIDIR}/StringIO/fsync-i.yaml +${RUBY_SYSRIDIR}/StringIO/getc-i.yaml +${RUBY_SYSRIDIR}/StringIO/gets-i.yaml +${RUBY_SYSRIDIR}/StringIO/isatty-i.yaml +${RUBY_SYSRIDIR}/StringIO/length-i.yaml +${RUBY_SYSRIDIR}/StringIO/lineno%3d-i.yaml +${RUBY_SYSRIDIR}/StringIO/lineno-i.yaml +${RUBY_SYSRIDIR}/StringIO/new-c.yaml +${RUBY_SYSRIDIR}/StringIO/open-c.yaml +${RUBY_SYSRIDIR}/StringIO/path-i.yaml +${RUBY_SYSRIDIR}/StringIO/pid-i.yaml +${RUBY_SYSRIDIR}/StringIO/pos%3d-i.yaml +${RUBY_SYSRIDIR}/StringIO/pos-i.yaml +${RUBY_SYSRIDIR}/StringIO/print-i.yaml +${RUBY_SYSRIDIR}/StringIO/printf-i.yaml +${RUBY_SYSRIDIR}/StringIO/putc-i.yaml +${RUBY_SYSRIDIR}/StringIO/puts-i.yaml +${RUBY_SYSRIDIR}/StringIO/read-i.yaml +${RUBY_SYSRIDIR}/StringIO/readchar-i.yaml +${RUBY_SYSRIDIR}/StringIO/readline-i.yaml +${RUBY_SYSRIDIR}/StringIO/readlines-i.yaml +${RUBY_SYSRIDIR}/StringIO/reopen-i.yaml +${RUBY_SYSRIDIR}/StringIO/rewind-i.yaml +${RUBY_SYSRIDIR}/StringIO/seek-i.yaml +${RUBY_SYSRIDIR}/StringIO/size-i.yaml +${RUBY_SYSRIDIR}/StringIO/string%3d-i.yaml +${RUBY_SYSRIDIR}/StringIO/string-i.yaml +${RUBY_SYSRIDIR}/StringIO/sync%3d-i.yaml +${RUBY_SYSRIDIR}/StringIO/sync-i.yaml +${RUBY_SYSRIDIR}/StringIO/sysread-i.yaml +${RUBY_SYSRIDIR}/StringIO/syswrite-i.yaml +${RUBY_SYSRIDIR}/StringIO/tell-i.yaml +${RUBY_SYSRIDIR}/StringIO/truncate-i.yaml +${RUBY_SYSRIDIR}/StringIO/tty%3f-i.yaml +${RUBY_SYSRIDIR}/StringIO/ungetc-i.yaml +${RUBY_SYSRIDIR}/StringIO/write-i.yaml +@dirrm ${RUBY_SYSRIDIR}/StringIO +${RUBY_SYSRIDIR}/StringScanner/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/StringScanner/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/StringScanner/Error/cdesc-Error.yaml +@dirrm ${RUBY_SYSRIDIR}/StringScanner/Error +${RUBY_SYSRIDIR}/StringScanner/beginning_of_line%3f-i.yaml +${RUBY_SYSRIDIR}/StringScanner/bol%3f-i.yaml +${RUBY_SYSRIDIR}/StringScanner/cdesc-StringScanner.yaml +${RUBY_SYSRIDIR}/StringScanner/check-i.yaml +${RUBY_SYSRIDIR}/StringScanner/check_until-i.yaml +${RUBY_SYSRIDIR}/StringScanner/clear-i.yaml +${RUBY_SYSRIDIR}/StringScanner/concat-i.yaml +${RUBY_SYSRIDIR}/StringScanner/empty%3f-i.yaml +${RUBY_SYSRIDIR}/StringScanner/eos%3f-i.yaml +${RUBY_SYSRIDIR}/StringScanner/exist%3f-i.yaml +${RUBY_SYSRIDIR}/StringScanner/get_byte-i.yaml +${RUBY_SYSRIDIR}/StringScanner/getbyte-i.yaml +${RUBY_SYSRIDIR}/StringScanner/getch-i.yaml +${RUBY_SYSRIDIR}/StringScanner/inspect-i.yaml +${RUBY_SYSRIDIR}/StringScanner/match%3f-i.yaml +${RUBY_SYSRIDIR}/StringScanner/matched%3f-i.yaml +${RUBY_SYSRIDIR}/StringScanner/matched-i.yaml +${RUBY_SYSRIDIR}/StringScanner/matched_size-i.yaml +${RUBY_SYSRIDIR}/StringScanner/matchedsize-i.yaml +${RUBY_SYSRIDIR}/StringScanner/must_C_version-c.yaml +${RUBY_SYSRIDIR}/StringScanner/new-c.yaml +${RUBY_SYSRIDIR}/StringScanner/peek-i.yaml +${RUBY_SYSRIDIR}/StringScanner/peep-i.yaml +${RUBY_SYSRIDIR}/StringScanner/pointer%3d-i.yaml +${RUBY_SYSRIDIR}/StringScanner/pointer-i.yaml +${RUBY_SYSRIDIR}/StringScanner/pos%3d-i.yaml +${RUBY_SYSRIDIR}/StringScanner/pos-i.yaml +${RUBY_SYSRIDIR}/StringScanner/post_match-i.yaml +${RUBY_SYSRIDIR}/StringScanner/pre_match-i.yaml +${RUBY_SYSRIDIR}/StringScanner/reset-i.yaml +${RUBY_SYSRIDIR}/StringScanner/rest%3f-i.yaml +${RUBY_SYSRIDIR}/StringScanner/rest-i.yaml +${RUBY_SYSRIDIR}/StringScanner/rest_size-i.yaml +${RUBY_SYSRIDIR}/StringScanner/restsize-i.yaml +${RUBY_SYSRIDIR}/StringScanner/scan-i.yaml +${RUBY_SYSRIDIR}/StringScanner/scan_full-i.yaml +${RUBY_SYSRIDIR}/StringScanner/scan_until-i.yaml +${RUBY_SYSRIDIR}/StringScanner/search_full-i.yaml +${RUBY_SYSRIDIR}/StringScanner/skip-i.yaml +${RUBY_SYSRIDIR}/StringScanner/skip_until-i.yaml +${RUBY_SYSRIDIR}/StringScanner/string%3d-i.yaml +${RUBY_SYSRIDIR}/StringScanner/string-i.yaml +${RUBY_SYSRIDIR}/StringScanner/terminate-i.yaml +${RUBY_SYSRIDIR}/StringScanner/unscan-i.yaml +@dirrm ${RUBY_SYSRIDIR}/StringScanner +${RUBY_SYSRIDIR}/Struct/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Struct/%5b%5d%3d-i.yaml +${RUBY_SYSRIDIR}/Struct/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/Struct/cdesc-Struct.yaml +${RUBY_SYSRIDIR}/Struct/each-i.yaml +${RUBY_SYSRIDIR}/Struct/each_pair-i.yaml +${RUBY_SYSRIDIR}/Struct/eql%3f-i.yaml +${RUBY_SYSRIDIR}/Struct/hash-i.yaml +${RUBY_SYSRIDIR}/Struct/inspect-i.yaml +${RUBY_SYSRIDIR}/Struct/length-i.yaml +${RUBY_SYSRIDIR}/Struct/members-i.yaml +${RUBY_SYSRIDIR}/Struct/new-c.yaml +${RUBY_SYSRIDIR}/Struct/select-i.yaml +${RUBY_SYSRIDIR}/Struct/size-i.yaml +${RUBY_SYSRIDIR}/Struct/to_a-i.yaml +${RUBY_SYSRIDIR}/Struct/to_s-i.yaml +${RUBY_SYSRIDIR}/Struct/values-i.yaml +${RUBY_SYSRIDIR}/Struct/values_at-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Struct +${RUBY_SYSRIDIR}/Symbol/%3d%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Symbol/all_symbols-c.yaml +${RUBY_SYSRIDIR}/Symbol/cdesc-Symbol.yaml +${RUBY_SYSRIDIR}/Symbol/id2name-i.yaml +${RUBY_SYSRIDIR}/Symbol/inspect-i.yaml +${RUBY_SYSRIDIR}/Symbol/to_i-i.yaml +${RUBY_SYSRIDIR}/Symbol/to_int-i.yaml +${RUBY_SYSRIDIR}/Symbol/to_s-i.yaml +${RUBY_SYSRIDIR}/Symbol/to_sym-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Symbol +${RUBY_SYSRIDIR}/SyncEnumerator/cdesc-SyncEnumerator.yaml +${RUBY_SYSRIDIR}/SyncEnumerator/each-i.yaml +${RUBY_SYSRIDIR}/SyncEnumerator/end%3f-i.yaml +${RUBY_SYSRIDIR}/SyncEnumerator/length-i.yaml +${RUBY_SYSRIDIR}/SyncEnumerator/new-c.yaml +${RUBY_SYSRIDIR}/SyncEnumerator/size-i.yaml +@dirrm ${RUBY_SYSRIDIR}/SyncEnumerator +${RUBY_SYSRIDIR}/SyntaxError/cdesc-SyntaxError.yaml +@dirrm ${RUBY_SYSRIDIR}/SyntaxError +${RUBY_SYSRIDIR}/SystemCallError/%3d%3d%3d-c.yaml +${RUBY_SYSRIDIR}/SystemCallError/cdesc-SystemCallError.yaml +${RUBY_SYSRIDIR}/SystemCallError/errno-i.yaml +${RUBY_SYSRIDIR}/SystemCallError/new-c.yaml +@dirrm ${RUBY_SYSRIDIR}/SystemCallError +${RUBY_SYSRIDIR}/SystemExit/cdesc-SystemExit.yaml +${RUBY_SYSRIDIR}/SystemExit/new-c.yaml +${RUBY_SYSRIDIR}/SystemExit/status-i.yaml +${RUBY_SYSRIDIR}/SystemExit/success%3f-i.yaml +@dirrm ${RUBY_SYSRIDIR}/SystemExit +${RUBY_SYSRIDIR}/SystemStackError/cdesc-SystemStackError.yaml +@dirrm ${RUBY_SYSRIDIR}/SystemStackError +${RUBY_SYSRIDIR}/Tempfile/cdesc-Tempfile.yaml +${RUBY_SYSRIDIR}/Tempfile/close%21-i.yaml +${RUBY_SYSRIDIR}/Tempfile/close-i.yaml +${RUBY_SYSRIDIR}/Tempfile/delete-i.yaml +${RUBY_SYSRIDIR}/Tempfile/length-i.yaml +${RUBY_SYSRIDIR}/Tempfile/make_tmpname-i.yaml +${RUBY_SYSRIDIR}/Tempfile/new-c.yaml +${RUBY_SYSRIDIR}/Tempfile/open-c.yaml +${RUBY_SYSRIDIR}/Tempfile/open-i.yaml +${RUBY_SYSRIDIR}/Tempfile/path-i.yaml +${RUBY_SYSRIDIR}/Tempfile/size-i.yaml +${RUBY_SYSRIDIR}/Tempfile/unlink-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Tempfile +${RUBY_SYSRIDIR}/Test/Unit/cdesc-Unit.yaml +${RUBY_SYSRIDIR}/Test/Unit/run%3d-c.yaml +${RUBY_SYSRIDIR}/Test/Unit/run%3f-c.yaml +@dirrm ${RUBY_SYSRIDIR}/Test/Unit +${RUBY_SYSRIDIR}/Test/cdesc-Test.yaml +@dirrm ${RUBY_SYSRIDIR}/Test +${RUBY_SYSRIDIR}/Thread/%5b%5d%3d-i.yaml +${RUBY_SYSRIDIR}/Thread/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/Thread/abort_on_exception%3d-c.yaml +${RUBY_SYSRIDIR}/Thread/abort_on_exception%3d-i.yaml +${RUBY_SYSRIDIR}/Thread/abort_on_exception-c.yaml +${RUBY_SYSRIDIR}/Thread/abort_on_exception-i.yaml +${RUBY_SYSRIDIR}/Thread/alive%3f-i.yaml +${RUBY_SYSRIDIR}/Thread/cdesc-Thread.yaml +${RUBY_SYSRIDIR}/Thread/critical%3d-c.yaml +${RUBY_SYSRIDIR}/Thread/critical-c.yaml +${RUBY_SYSRIDIR}/Thread/current-c.yaml +${RUBY_SYSRIDIR}/Thread/exclusive-c.yaml +${RUBY_SYSRIDIR}/Thread/exit-c.yaml +${RUBY_SYSRIDIR}/Thread/exit-i.yaml +${RUBY_SYSRIDIR}/Thread/fork-c.yaml +${RUBY_SYSRIDIR}/Thread/group-i.yaml +${RUBY_SYSRIDIR}/Thread/inspect-i.yaml +${RUBY_SYSRIDIR}/Thread/join-i.yaml +${RUBY_SYSRIDIR}/Thread/key%3f-i.yaml +${RUBY_SYSRIDIR}/Thread/keys-i.yaml +${RUBY_SYSRIDIR}/Thread/kill-c.yaml +${RUBY_SYSRIDIR}/Thread/kill-i.yaml +${RUBY_SYSRIDIR}/Thread/list-c.yaml +${RUBY_SYSRIDIR}/Thread/main-c.yaml +${RUBY_SYSRIDIR}/Thread/new-c.yaml +${RUBY_SYSRIDIR}/Thread/pass-c.yaml +${RUBY_SYSRIDIR}/Thread/priority%3d-i.yaml +${RUBY_SYSRIDIR}/Thread/priority-i.yaml +${RUBY_SYSRIDIR}/Thread/raise-i.yaml +${RUBY_SYSRIDIR}/Thread/run-i.yaml +${RUBY_SYSRIDIR}/Thread/safe_level-i.yaml +${RUBY_SYSRIDIR}/Thread/start-c.yaml +${RUBY_SYSRIDIR}/Thread/status-i.yaml +${RUBY_SYSRIDIR}/Thread/stop%3f-i.yaml +${RUBY_SYSRIDIR}/Thread/stop-c.yaml +${RUBY_SYSRIDIR}/Thread/terminate-i.yaml +${RUBY_SYSRIDIR}/Thread/value-i.yaml +${RUBY_SYSRIDIR}/Thread/wakeup-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Thread +${RUBY_SYSRIDIR}/ThreadError/cdesc-ThreadError.yaml +@dirrm ${RUBY_SYSRIDIR}/ThreadError +${RUBY_SYSRIDIR}/ThreadGroup/add-i.yaml +${RUBY_SYSRIDIR}/ThreadGroup/cdesc-ThreadGroup.yaml +${RUBY_SYSRIDIR}/ThreadGroup/enclose-i.yaml +${RUBY_SYSRIDIR}/ThreadGroup/enclosed%3f-i.yaml +${RUBY_SYSRIDIR}/ThreadGroup/list-i.yaml +@dirrm ${RUBY_SYSRIDIR}/ThreadGroup +${RUBY_SYSRIDIR}/ThreadsWait/all_waits-c.yaml +${RUBY_SYSRIDIR}/ThreadsWait/all_waits-i.yaml +${RUBY_SYSRIDIR}/ThreadsWait/cdesc-ThreadsWait.yaml +${RUBY_SYSRIDIR}/ThreadsWait/empty%3f-i.yaml +${RUBY_SYSRIDIR}/ThreadsWait/finished%3f-i.yaml +${RUBY_SYSRIDIR}/ThreadsWait/join-i.yaml +${RUBY_SYSRIDIR}/ThreadsWait/join_nowait-i.yaml +${RUBY_SYSRIDIR}/ThreadsWait/new-c.yaml +${RUBY_SYSRIDIR}/ThreadsWait/next_wait-i.yaml +@dirrm ${RUBY_SYSRIDIR}/ThreadsWait +${RUBY_SYSRIDIR}/Time/%2b-i.yaml +${RUBY_SYSRIDIR}/Time/%2d-i.yaml +${RUBY_SYSRIDIR}/Time/%3c%3d%3e-i.yaml +${RUBY_SYSRIDIR}/Time/_dump-i.yaml +${RUBY_SYSRIDIR}/Time/_load-c.yaml +${RUBY_SYSRIDIR}/Time/apply_offset-c.yaml +${RUBY_SYSRIDIR}/Time/asctime-i.yaml +${RUBY_SYSRIDIR}/Time/at-c.yaml +${RUBY_SYSRIDIR}/Time/cdesc-Time.yaml +${RUBY_SYSRIDIR}/Time/ctime-i.yaml +${RUBY_SYSRIDIR}/Time/day-i.yaml +${RUBY_SYSRIDIR}/Time/dst%3f-i.yaml +${RUBY_SYSRIDIR}/Time/eql%3f-i.yaml +${RUBY_SYSRIDIR}/Time/getgm-i.yaml +${RUBY_SYSRIDIR}/Time/getlocal-i.yaml +${RUBY_SYSRIDIR}/Time/getutc-i.yaml +${RUBY_SYSRIDIR}/Time/gm-c.yaml +${RUBY_SYSRIDIR}/Time/gmt%3f-i.yaml +${RUBY_SYSRIDIR}/Time/gmt_offset-i.yaml +${RUBY_SYSRIDIR}/Time/gmtime-i.yaml +${RUBY_SYSRIDIR}/Time/gmtoff-i.yaml +${RUBY_SYSRIDIR}/Time/hash-i.yaml +${RUBY_SYSRIDIR}/Time/hour-i.yaml +${RUBY_SYSRIDIR}/Time/httpdate-c.yaml +${RUBY_SYSRIDIR}/Time/httpdate-i.yaml +${RUBY_SYSRIDIR}/Time/inspect-i.yaml +${RUBY_SYSRIDIR}/Time/isdst-i.yaml +${RUBY_SYSRIDIR}/Time/iso8601-i.yaml +${RUBY_SYSRIDIR}/Time/local-c.yaml +${RUBY_SYSRIDIR}/Time/localtime-i.yaml +${RUBY_SYSRIDIR}/Time/make_time-c.yaml +${RUBY_SYSRIDIR}/Time/marshal_dump-i.yaml +${RUBY_SYSRIDIR}/Time/marshal_load-i.yaml +${RUBY_SYSRIDIR}/Time/mday-i.yaml +${RUBY_SYSRIDIR}/Time/min-i.yaml +${RUBY_SYSRIDIR}/Time/mktime-c.yaml +${RUBY_SYSRIDIR}/Time/mon-i.yaml +${RUBY_SYSRIDIR}/Time/month-i.yaml +${RUBY_SYSRIDIR}/Time/month_days-c.yaml +${RUBY_SYSRIDIR}/Time/new-c.yaml +${RUBY_SYSRIDIR}/Time/now-c.yaml +${RUBY_SYSRIDIR}/Time/parse-c.yaml +${RUBY_SYSRIDIR}/Time/rfc2822-c.yaml +${RUBY_SYSRIDIR}/Time/rfc2822-i.yaml +${RUBY_SYSRIDIR}/Time/rfc822-i.yaml +${RUBY_SYSRIDIR}/Time/sec-i.yaml +${RUBY_SYSRIDIR}/Time/strftime-i.yaml +${RUBY_SYSRIDIR}/Time/succ-i.yaml +${RUBY_SYSRIDIR}/Time/times-c.yaml +${RUBY_SYSRIDIR}/Time/to_a-i.yaml +${RUBY_SYSRIDIR}/Time/to_f-i.yaml +${RUBY_SYSRIDIR}/Time/to_i-i.yaml +${RUBY_SYSRIDIR}/Time/to_s-i.yaml +${RUBY_SYSRIDIR}/Time/tv_sec-i.yaml +${RUBY_SYSRIDIR}/Time/tv_usec-i.yaml +${RUBY_SYSRIDIR}/Time/usec-i.yaml +${RUBY_SYSRIDIR}/Time/utc%3f-i.yaml +${RUBY_SYSRIDIR}/Time/utc-c.yaml +${RUBY_SYSRIDIR}/Time/utc-i.yaml +${RUBY_SYSRIDIR}/Time/utc_offset-i.yaml +${RUBY_SYSRIDIR}/Time/wday-i.yaml +${RUBY_SYSRIDIR}/Time/xmlschema-c.yaml +${RUBY_SYSRIDIR}/Time/xmlschema-i.yaml +${RUBY_SYSRIDIR}/Time/yday-i.yaml +${RUBY_SYSRIDIR}/Time/year-i.yaml +${RUBY_SYSRIDIR}/Time/zone-i.yaml +${RUBY_SYSRIDIR}/Time/zone_offset-c.yaml +${RUBY_SYSRIDIR}/Time/zone_utc%3f-c.yaml +@dirrm ${RUBY_SYSRIDIR}/Time +${RUBY_SYSRIDIR}/TimeExtentionTest/cdesc-TimeExtentionTest.yaml +@dirrm ${RUBY_SYSRIDIR}/TimeExtentionTest +${RUBY_SYSRIDIR}/TrueClass/%26-i.yaml +${RUBY_SYSRIDIR}/TrueClass/%5e-i.yaml +${RUBY_SYSRIDIR}/TrueClass/%7c-i.yaml +${RUBY_SYSRIDIR}/TrueClass/cdesc-TrueClass.yaml +${RUBY_SYSRIDIR}/TrueClass/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/TrueClass +${RUBY_SYSRIDIR}/TypeError/cdesc-TypeError.yaml +@dirrm ${RUBY_SYSRIDIR}/TypeError +${RUBY_SYSRIDIR}/UnboundMethod/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/UnboundMethod/arity-i.yaml +${RUBY_SYSRIDIR}/UnboundMethod/bind-i.yaml +${RUBY_SYSRIDIR}/UnboundMethod/cdesc-UnboundMethod.yaml +${RUBY_SYSRIDIR}/UnboundMethod/clone-i.yaml +${RUBY_SYSRIDIR}/UnboundMethod/inspect-i.yaml +${RUBY_SYSRIDIR}/UnboundMethod/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/UnboundMethod +${RUBY_SYSRIDIR}/URI/BadURIError/cdesc-BadURIError.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/BadURIError +${RUBY_SYSRIDIR}/URI/Error/cdesc-Error.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/Error +${RUBY_SYSRIDIR}/URI/Escape/cdesc-Escape.yaml +${RUBY_SYSRIDIR}/URI/Escape/decode-i.yaml +${RUBY_SYSRIDIR}/URI/Escape/encode-i.yaml +${RUBY_SYSRIDIR}/URI/Escape/escape-i.yaml +${RUBY_SYSRIDIR}/URI/Escape/unescape-i.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/Escape +${RUBY_SYSRIDIR}/URI/FTP/build-c.yaml +${RUBY_SYSRIDIR}/URI/FTP/cdesc-FTP.yaml +${RUBY_SYSRIDIR}/URI/FTP/check_typecode-i.yaml +${RUBY_SYSRIDIR}/URI/FTP/new-c.yaml +${RUBY_SYSRIDIR}/URI/FTP/new2-c.yaml +${RUBY_SYSRIDIR}/URI/FTP/set_typecode-i.yaml +${RUBY_SYSRIDIR}/URI/FTP/to_s-i.yaml +${RUBY_SYSRIDIR}/URI/FTP/typecode%3d-i.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/FTP +${RUBY_SYSRIDIR}/URI/Generic/%2b-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/%2d-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/absolute%3f-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/absolute-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/build-c.yaml +${RUBY_SYSRIDIR}/URI/Generic/build2-c.yaml +${RUBY_SYSRIDIR}/URI/Generic/cdesc-Generic.yaml +${RUBY_SYSRIDIR}/URI/Generic/check_fragment-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/check_host-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/check_opaque-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/check_password-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/check_path-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/check_port-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/check_query-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/check_registry-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/check_scheme-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/check_user-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/check_userinfo-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/coerce-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/component-c.yaml +${RUBY_SYSRIDIR}/URI/Generic/component-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/component_ary-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/default_port-c.yaml +${RUBY_SYSRIDIR}/URI/Generic/default_port-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/eql%3f-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/escape_userpass-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/fragment%3d-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/hash-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/hierarchical%3f-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/host%3d-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/inspect-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/merge%21-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/merge-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/merge0-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/merge_path-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/new-c.yaml +${RUBY_SYSRIDIR}/URI/Generic/normalize%21-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/normalize-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/opaque%3d-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/password%3d-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/password-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/path%3d-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/path_query-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/port%3d-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/query%3d-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/registry%3d-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/relative%3f-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/replace%21-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/route_from-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/route_from0-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/route_from_path-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/route_to-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/scheme%3d-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/select-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/set_fragment-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/set_host-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/set_opaque-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/set_password-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/set_path-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/set_port-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/set_query-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/set_registry-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/set_scheme-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/set_user-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/set_userinfo-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/split_path-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/split_userinfo-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/to_s-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/use_registry-c.yaml +${RUBY_SYSRIDIR}/URI/Generic/user%3d-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/user-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/userinfo%3d-i.yaml +${RUBY_SYSRIDIR}/URI/Generic/userinfo-i.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/Generic +${RUBY_SYSRIDIR}/URI/HTTP/build-c.yaml +${RUBY_SYSRIDIR}/URI/HTTP/cdesc-HTTP.yaml +${RUBY_SYSRIDIR}/URI/HTTP/new-c.yaml +${RUBY_SYSRIDIR}/URI/HTTP/request_uri-i.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/HTTP +${RUBY_SYSRIDIR}/URI/HTTPS/cdesc-HTTPS.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/HTTPS +${RUBY_SYSRIDIR}/URI/InvalidComponentError/cdesc-InvalidComponentError.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/InvalidComponentError +${RUBY_SYSRIDIR}/URI/InvalidURIError/cdesc-InvalidURIError.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/InvalidURIError +${RUBY_SYSRIDIR}/URI/LDAP/attributes%3d-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/attributes-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/build-c.yaml +${RUBY_SYSRIDIR}/URI/LDAP/build_path_query-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/cdesc-LDAP.yaml +${RUBY_SYSRIDIR}/URI/LDAP/dn%3d-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/dn-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/extensions%3d-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/extensions-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/filter%3d-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/filter-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/hierarchical%3f-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/new-c.yaml +${RUBY_SYSRIDIR}/URI/LDAP/parse_dn-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/parse_query-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/scope%3d-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/scope-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/set_attributes-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/set_dn-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/set_extensions-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/set_filter-i.yaml +${RUBY_SYSRIDIR}/URI/LDAP/set_scope-i.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/LDAP +${RUBY_SYSRIDIR}/URI/MailTo/build-c.yaml +${RUBY_SYSRIDIR}/URI/MailTo/cdesc-MailTo.yaml +${RUBY_SYSRIDIR}/URI/MailTo/check_headers-i.yaml +${RUBY_SYSRIDIR}/URI/MailTo/check_to-i.yaml +${RUBY_SYSRIDIR}/URI/MailTo/headers%3d-i.yaml +${RUBY_SYSRIDIR}/URI/MailTo/new-c.yaml +${RUBY_SYSRIDIR}/URI/MailTo/set_headers-i.yaml +${RUBY_SYSRIDIR}/URI/MailTo/set_to-i.yaml +${RUBY_SYSRIDIR}/URI/MailTo/to%3d-i.yaml +${RUBY_SYSRIDIR}/URI/MailTo/to_mailtext-i.yaml +${RUBY_SYSRIDIR}/URI/MailTo/to_rfc822text-i.yaml +${RUBY_SYSRIDIR}/URI/MailTo/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/MailTo +${RUBY_SYSRIDIR}/URI/REGEXP/PATTERN/cdesc-PATTERN.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/REGEXP/PATTERN +${RUBY_SYSRIDIR}/URI/REGEXP/cdesc-REGEXP.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/REGEXP +${RUBY_SYSRIDIR}/URI/Util/cdesc-Util.yaml +@dirrm ${RUBY_SYSRIDIR}/URI/Util +${RUBY_SYSRIDIR}/URI/cdesc-URI.yaml +${RUBY_SYSRIDIR}/URI/extract-c.yaml +${RUBY_SYSRIDIR}/URI/join-c.yaml +${RUBY_SYSRIDIR}/URI/parse-c.yaml +${RUBY_SYSRIDIR}/URI/regexp-c.yaml +${RUBY_SYSRIDIR}/URI/split-c.yaml +@dirrm ${RUBY_SYSRIDIR}/URI +${RUBY_SYSRIDIR}/Vector/%2a-i.yaml +${RUBY_SYSRIDIR}/Vector/%2b-i.yaml +${RUBY_SYSRIDIR}/Vector/%2d-i.yaml +${RUBY_SYSRIDIR}/Vector/%3d%3d-i.yaml +${RUBY_SYSRIDIR}/Vector/%5b%5d-c.yaml +${RUBY_SYSRIDIR}/Vector/%5b%5d-i.yaml +${RUBY_SYSRIDIR}/Vector/cdesc-Vector.yaml +${RUBY_SYSRIDIR}/Vector/clone-i.yaml +${RUBY_SYSRIDIR}/Vector/coerce-i.yaml +${RUBY_SYSRIDIR}/Vector/collect-i.yaml +${RUBY_SYSRIDIR}/Vector/collect2-i.yaml +${RUBY_SYSRIDIR}/Vector/compare_by-i.yaml +${RUBY_SYSRIDIR}/Vector/covector-i.yaml +${RUBY_SYSRIDIR}/Vector/each2-i.yaml +${RUBY_SYSRIDIR}/Vector/elements-c.yaml +${RUBY_SYSRIDIR}/Vector/eqn%3f-i.yaml +${RUBY_SYSRIDIR}/Vector/hash-i.yaml +${RUBY_SYSRIDIR}/Vector/init_elements-i.yaml +${RUBY_SYSRIDIR}/Vector/inner_product-i.yaml +${RUBY_SYSRIDIR}/Vector/inspect-i.yaml +${RUBY_SYSRIDIR}/Vector/map-i.yaml +${RUBY_SYSRIDIR}/Vector/map2-i.yaml +${RUBY_SYSRIDIR}/Vector/new-c.yaml +${RUBY_SYSRIDIR}/Vector/r-i.yaml +${RUBY_SYSRIDIR}/Vector/size-i.yaml +${RUBY_SYSRIDIR}/Vector/to_a-i.yaml +${RUBY_SYSRIDIR}/Vector/to_s-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Vector +${RUBY_SYSRIDIR}/YAML/add_builtin_type-c.yaml +${RUBY_SYSRIDIR}/YAML/add_domain_type-c.yaml +${RUBY_SYSRIDIR}/YAML/add_private_type-c.yaml +${RUBY_SYSRIDIR}/YAML/add_ruby_type-c.yaml +${RUBY_SYSRIDIR}/YAML/cdesc-YAML.yaml +${RUBY_SYSRIDIR}/YAML/detect_implicit-c.yaml +${RUBY_SYSRIDIR}/YAML/dump-c.yaml +${RUBY_SYSRIDIR}/YAML/dump_stream-c.yaml +${RUBY_SYSRIDIR}/YAML/each_document-c.yaml +${RUBY_SYSRIDIR}/YAML/each_node-c.yaml +${RUBY_SYSRIDIR}/YAML/emitter-c.yaml +${RUBY_SYSRIDIR}/YAML/generic_parser-c.yaml +${RUBY_SYSRIDIR}/YAML/load-c.yaml +${RUBY_SYSRIDIR}/YAML/load_documents-c.yaml +${RUBY_SYSRIDIR}/YAML/load_file-c.yaml +${RUBY_SYSRIDIR}/YAML/load_stream-c.yaml +${RUBY_SYSRIDIR}/YAML/object_maker-c.yaml +${RUBY_SYSRIDIR}/YAML/parse-c.yaml +${RUBY_SYSRIDIR}/YAML/parser-c.yaml +${RUBY_SYSRIDIR}/YAML/parse_documents-c.yaml +${RUBY_SYSRIDIR}/YAML/parse_file-c.yaml +${RUBY_SYSRIDIR}/YAML/quick_emit-c.yaml +${RUBY_SYSRIDIR}/YAML/read_type_class-c.yaml +${RUBY_SYSRIDIR}/YAML/resolver-c.yaml +${RUBY_SYSRIDIR}/YAML/tagurize-c.yaml +${RUBY_SYSRIDIR}/YAML/transfer-c.yaml +${RUBY_SYSRIDIR}/YAML/try_implicit-c.yaml +@dirrm ${RUBY_SYSRIDIR}/YAML +${RUBY_SYSRIDIR}/ZeroDivisionError/cdesc-ZeroDivisionError.yaml +@dirrm ${RUBY_SYSRIDIR}/ZeroDivisionError +${RUBY_SYSRIDIR}/Zlib/BufError/cdesc-BufError.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/BufError +${RUBY_SYSRIDIR}/Zlib/DataError/cdesc-DataError.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/DataError +${RUBY_SYSRIDIR}/Zlib/Deflate/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/Zlib/Deflate/cdesc-Deflate.yaml +${RUBY_SYSRIDIR}/Zlib/Deflate/deflate-c.yaml +${RUBY_SYSRIDIR}/Zlib/Deflate/deflate-i.yaml +${RUBY_SYSRIDIR}/Zlib/Deflate/flush-i.yaml +${RUBY_SYSRIDIR}/Zlib/Deflate/initialize_copy-i.yaml +${RUBY_SYSRIDIR}/Zlib/Deflate/new-c.yaml +${RUBY_SYSRIDIR}/Zlib/Deflate/params-i.yaml +${RUBY_SYSRIDIR}/Zlib/Deflate/set_dictionary-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/Deflate +${RUBY_SYSRIDIR}/Zlib/Error/cdesc-Error.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/Error +${RUBY_SYSRIDIR}/Zlib/GzipFile/CRCError/cdesc-CRCError.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/GzipFile/CRCError +${RUBY_SYSRIDIR}/Zlib/GzipFile/Error/cdesc-Error.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/GzipFile/Error +${RUBY_SYSRIDIR}/Zlib/GzipFile/LengthError/cdesc-LengthError.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/GzipFile/LengthError +${RUBY_SYSRIDIR}/Zlib/GzipFile/NoFooter/cdesc-NoFooter.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/GzipFile/NoFooter +${RUBY_SYSRIDIR}/Zlib/GzipFile/cdesc-GzipFile.yaml +${RUBY_SYSRIDIR}/Zlib/GzipFile/close-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipFile/closed%3f-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipFile/comment-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipFile/crc-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipFile/finish-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipFile/level-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipFile/mtime-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipFile/orig_name-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipFile/os_code-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipFile/sync%3d-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipFile/sync-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipFile/to_io-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipFile/wrap-c.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/GzipFile +${RUBY_SYSRIDIR}/Zlib/GzipReader/cdesc-GzipReader.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/each-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/each_byte-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/each_line-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/eof%3f-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/eof-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/getc-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/gets-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/lineno%3d-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/lineno-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/new-c.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/open-c.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/pos-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/read-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/readchar-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/readline-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/readlines-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/rewind-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/tell-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/ungetc-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipReader/unused-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/GzipReader +${RUBY_SYSRIDIR}/Zlib/GzipWriter/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/cdesc-GzipWriter.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/comment%3d-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/flush-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/mtime%3d-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/new-c.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/open-c.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/orig_name%3d-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/pos-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/print-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/printf-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/putc-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/puts-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/tell-i.yaml +${RUBY_SYSRIDIR}/Zlib/GzipWriter/write-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/GzipWriter +${RUBY_SYSRIDIR}/Zlib/Inflate/%3c%3c-i.yaml +${RUBY_SYSRIDIR}/Zlib/Inflate/cdesc-Inflate.yaml +${RUBY_SYSRIDIR}/Zlib/Inflate/inflate-c.yaml +${RUBY_SYSRIDIR}/Zlib/Inflate/inflate-i.yaml +${RUBY_SYSRIDIR}/Zlib/Inflate/new-c.yaml +${RUBY_SYSRIDIR}/Zlib/Inflate/set_dictionary-i.yaml +${RUBY_SYSRIDIR}/Zlib/Inflate/sync-i.yaml +${RUBY_SYSRIDIR}/Zlib/Inflate/sync_point%3f-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/Inflate +${RUBY_SYSRIDIR}/Zlib/MemError/cdesc-MemError.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/MemError +${RUBY_SYSRIDIR}/Zlib/NeedDict/cdesc-NeedDict.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/NeedDict +${RUBY_SYSRIDIR}/Zlib/StreamEnd/cdesc-StreamEnd.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/StreamEnd +${RUBY_SYSRIDIR}/Zlib/StreamError/cdesc-StreamError.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/StreamError +${RUBY_SYSRIDIR}/Zlib/VersionError/cdesc-VersionError.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/VersionError +${RUBY_SYSRIDIR}/Zlib/ZStream/adler-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/avail_in-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/avail_out%3d-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/avail_out-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/cdesc-ZStream.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/close-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/closed%3f-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/data_type-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/end-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/ended%3f-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/finish-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/finished%3f-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/flush_next_in-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/flush_next_out-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/reset-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/stream_end%3f-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/total_in-i.yaml +${RUBY_SYSRIDIR}/Zlib/ZStream/total_out-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib/ZStream +${RUBY_SYSRIDIR}/Zlib/adler32-i.yaml +${RUBY_SYSRIDIR}/Zlib/cdesc-Zlib.yaml +${RUBY_SYSRIDIR}/Zlib/crc32-i.yaml +${RUBY_SYSRIDIR}/Zlib/crc_table-i.yaml +${RUBY_SYSRIDIR}/Zlib/zlib_version-i.yaml +@dirrm ${RUBY_SYSRIDIR}/Zlib +${RUBY_SYSRIDIR}/created.rid +${RUBY_SYSRIDIR}/fatal/cdesc-fatal.yaml +@dirrm ${RUBY_SYSRIDIR}/fatal +@dirrm ${RUBY_SYSRIDIR} +@dirrm ${RUBY_SITERIDIR} +@dirrm ${RUBY_BASERIDIR} +@dirrm ${RUBY_RIDIR} diff --git a/lang/ruby18-base/distinfo b/lang/ruby18-base/distinfo index 83c31c650a6..6b32836ff99 100644 --- a/lang/ruby18-base/distinfo +++ b/lang/ruby18-base/distinfo @@ -1,25 +1,48 @@ -$NetBSD: distinfo,v 1.6 2005/09/23 12:01:44 taca Exp $ +$NetBSD: distinfo,v 1.7 2005/11/02 08:56:39 taca Exp $ -SHA1 (ruby/ruby-1.8.2.tar.gz) = 409a917d3a0aba41f45bd053b767c85b2bc35ffa -RMD160 (ruby/ruby-1.8.2.tar.gz) = fc4dcdc2dda9bfbcf8ca19ca090aa55a18ea06a4 -Size (ruby/ruby-1.8.2.tar.gz) = 3627349 bytes -SHA1 (ruby/1.8.2-patch1.gz) = 776c738b52ad9605e7f502ecb967f1ba2d4934e9 -RMD160 (ruby/1.8.2-patch1.gz) = 55ae9b28c8dbb77230659edae9f3f12c8c7f2b99 -Size (ruby/1.8.2-patch1.gz) = 1347 bytes -SHA1 (patch-aa) = b0c96d7f10ff48245f97d7561e33ced4c4fed69d -SHA1 (patch-ab) = eeb4048b99784392b7a09a904748e8ff23205580 -SHA1 (patch-al) = a62c126e971a0d45b00e873802bc9ee67786c47e -SHA1 (patch-am) = fe000acf64e20245058c83319030e11606e75004 -SHA1 (patch-an) = aa56ea179d9b7bf6ece22b4d8bba0c9137a0e342 -SHA1 (patch-ao) = a8ee52e4f93111dccf98f52d8626ccc5c2c02f1a -SHA1 (patch-ap) = 7e581015de4968553ee7664ada1936cd639efc1d -SHA1 (patch-aq) = be270544464ad51bbc1e2deb238dec16ab7308d7 -SHA1 (patch-ar) = b9743d012e1c70573b590973a68e1d640ebab1c5 -SHA1 (patch-as) = 19acb0f24b0e24c6253ea5df8592a39b38223b91 -SHA1 (patch-at) = ee6b178f5fe31616253e5b47a979c31d18db2a6c -SHA1 (patch-au) = f49bce921fec7d58c59e686d83c671ae71e28e1d -SHA1 (patch-av) = 16955a5779607374b8ca80ab1abe04d07dcef03d -SHA1 (patch-aw) = 95ccd93d39f9b13e5a4c34f5dae5764e984b5682 -SHA1 (patch-ax) = 00e9e4ba94fb550863d635d91b3da0aed3b15dea -SHA1 (patch-ay) = ff77057f34279635d05a80ce316a478e3b528ab4 -SHA1 (patch-az) = 22484716620583e289da3c7d01a55163a1194d93 +SHA1 (ruby/ruby-1.8.3.tar.gz) = 407e70377214fcb812cdbb86a3e1b735e69b7cff +RMD160 (ruby/ruby-1.8.3.tar.gz) = b4244a288d04fca29556144636b5e093b78a8cd5 +Size (ruby/ruby-1.8.3.tar.gz) = 4227276 bytes +SHA1 (patch-aa) = fcd7a15ed5d89e534b6de3e1ecee38bb5bc89cfb +SHA1 (patch-ab) = 0abdff0ce4e7a926ed5422b668f7a3574152bc69 +SHA1 (patch-ad) = acbe8fc8491c2341a951b395359009aca1afeb2f +SHA1 (patch-ae) = dfa9c5296c75f6193c790fca8d3eb15ad4a9f228 +SHA1 (patch-at) = 97a1240fef51c7266652788f855c9c69b2745b3a +SHA1 (patch-ay) = 546b926d9bfb1e251810f3d9c91ccd420a0868e0 +SHA1 (patch-az) = a5bd277387b6a2622dbc26623e6acaf9559d8627 +SHA1 (patch-ba) = adbedb02eb15de56c0561a7deba7ace5f2321a25 +SHA1 (patch-bb) = 8dae0d8c400d4a44d74f1c7f1146c741ffcf5879 +SHA1 (patch-bc) = 947d41216b418c01c53262e3fe06632c25577bad +SHA1 (patch-bd) = 35e9ee8bd7f4d0e7cc49315c5ecc999b56afc6d5 +SHA1 (patch-be) = 892255087c0c17039d610928ed62789effceffd4 +SHA1 (patch-bf) = 548211e291b497b1489dee02893b403f2070af2d +SHA1 (patch-bg) = cb80043712ab6153c27bd57a930f57109f718a3d +SHA1 (patch-bh) = 01aba5d2b8fa0c56eb12d52b6c9c0193cb304f37 +SHA1 (patch-bi) = 04a844f62ed2795e7f81a871f25e7cddb889e9e4 +SHA1 (patch-bj) = 0aa32dfc67d1b3a04d68549ab54e0135421866d0 +SHA1 (patch-bk) = deb6a02a9b5805c84c4881f154f0e6b74ab1e506 +SHA1 (patch-bl) = cad0e79cf5b231f63d2236a2186208c08fc3af56 +SHA1 (patch-bm) = 1d87cf4f33d083d9733fc8a68aa79f56cf355390 +SHA1 (patch-bn) = 2145789663bda7ec6ce11faaa64c91a459becc31 +SHA1 (patch-bo) = dafc7b1635ec371376e026ea8eed829184abd5bc +SHA1 (patch-bp) = caaf77b172dd7282ad693e04e89d23986556cbc1 +SHA1 (patch-bq) = ccb52322a458e66ba480dec1515bf4ad6a1a9257 +SHA1 (patch-br) = dfa310e2f3e58ce703efa0b53e1654b3011a981e +SHA1 (patch-bs) = d8522250fa892e06631dadcf2182e4a278a985e2 +SHA1 (patch-bt) = a66efa441c6d4e85ee53afaa08d90c84b6213402 +SHA1 (patch-bu) = 2e02dca144802380e69a02bffd7d10508bd8eae4 +SHA1 (patch-bv) = 8964ac0a56d9702ced9fd90b42c80c201a05799b +SHA1 (patch-bw) = aa4db9de23c9954a0296a9aeaa0b06238fd27cb3 +SHA1 (patch-bx) = 20866aa61c8f367b6d0d102a9141412bf31f249a +SHA1 (patch-by) = 357b5ede514ba7cc74d0bd5678fcf87b59a17931 +SHA1 (patch-bz) = 747e9ad15131f2e67e74ec22f0839de8ad19e15f +SHA1 (patch-ca) = 92f64a91a2fdb77e30a2dd90975c6be091c16b96 +SHA1 (patch-cb) = 21e0b141cf3e74cdac363e0c6340565dfd982cea +SHA1 (patch-cc) = 820b215abd22ec6fc042425cd4d306689328c88c +SHA1 (patch-cd) = 962afa433bcd95d54055012f2d31e5160fc46ebc +SHA1 (patch-ce) = 8296601b98d1b3a8ec7e57d153488b69956b05b1 +SHA1 (patch-cf) = 2f954fb7db08ac723a3ded6728f14f1e42809425 +SHA1 (patch-cg) = c8781f952b1f987c53f31d2958e69aac9de84cf7 +SHA1 (patch-ch) = 2c2ce227a6f1660edd091a4beb2bfa115265bf54 +SHA1 (patch-ci) = 8cedb24882d37cbe8cf6542760de00577535fc8f +SHA1 (patch-cj) = 7e0c72457bbd5878eefa17a23567088045e612e4 diff --git a/lang/ruby18-base/files/CHANGES.pkgsrc b/lang/ruby18-base/files/CHANGES.pkgsrc new file mode 100644 index 00000000000..2a7bb02b49d --- /dev/null +++ b/lang/ruby18-base/files/CHANGES.pkgsrc @@ -0,0 +1,263 @@ +$NetBSD: CHANGES.pkgsrc,v 1.1 2005/11/02 08:56:40 taca Exp $ + +Tue Nov 1 14:20:11 2005 Yukihiro Matsumoto <matz@ruby-lang.org> + + * eval.c (rb_call_super): should call method_missing if super is + called from Kernel method. + + * eval.c (exec_under): frame during eval should preserve external + information. + +Tue Nov 01 10:50:17 2005 GOTOU Yuuzou <gotoyuzo@notwork.org> + + * ext/openssl/extconf.rb: should check ERR_peek_last_error(). + [ruby-dev:27597] + + * ext/openssl/ossl.c (ossl_raise): ditto. + +Mon Oct 31 17:34:46 2005 Yukihiro Matsumoto <matz@ruby-lang.org> + + * configure.in: use proper option for Sun linker. A patch from + Shinya Kuwamura <kuwa@labs.fujitsu.com>. [ruby-dev:27603] + +Mon Oct 31 05:49:23 2005 GOTOU Yuuzou <gotoyuzo@notwork.org> + + * ext/openssl/ossl_cipher.c (ossl_cipher_update): input data must + not be empty. [ruby-talk:161220] + +Mon Oct 31 05:37:20 2005 GOTOU Yuuzou <gotoyuzo@notwork.org> + + * lib/webrick/httpservlet/cgihandler.rb + (WEBrick::HTTPServlet::CGIHandler#do_GET): the value of Set-Cookie: + header field should be splited into each cookie. [ruby-Bugs:2199] + + * lib/webrick/cookie.rb (WEBrick::Cookie.parse_set_cookie): new method + to parse the value of Set-Cookie: header field. + +Mon Oct 31 03:19:36 2005 Yukihiro Matsumoto <matz@ruby-lang.org> + + * ext/readline/readline.c (readline_readline): type check. + [ruby-core:6089] + + * util.h (strtod): add #undef for platforms defines strtod() + macro. [ruby-dev:27563] + +Thu Oct 27 16:45:31 2005 Yukihiro Matsumoto <matz@ruby-lang.org> + + * string.c (scan_once): wrong condition to use mbclen2(). + [ruby-dev:27535] + +Wed Oct 26 09:27:27 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> + + * ext/syck/implicit.c (syck_type_id_to_uri): should return + newly allocated memory. otherwise, type_id will be freed + twice. [ruby-dev:27384] [ruby-core:6385] + +Wed Oct 26 09:04:51 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> + + * ruby.h (Qfalse, Qtrue, Qnil, Qundef): make sure these immediate + values have VALUE type. there is an environment where sizeof(VALUE) + != sizeof(int) like IA64. if 32bit integer (Qtrue) is passed to ANYARGS + and received by 64bit integer (VALUE), upper bits may have garbage value. + [ruby-dev:27513] + +Tue Oct 25 15:32:00 2005 Yukihiro Matsumoto <matz@ruby-lang.org> + + * lib/irb.rb (IRB::Irb::eval_input): handle prompts with newlines + in irb auto-indentation mode. [ruby-core:06358] + +Sat Oct 22 13:26:57 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * object.c (sym_inspect), parse.y (parser_yylex, rb_symname_p): check + if valid as a symbol name more strictly. [ruby-dev:27478] + + * time.c (rb_strftime): removed meaningless volatile modifiers, and + concatenate successive nul characters at once. [ruby-dev:27472] + +Fri Oct 21 19:21:56 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> + + * rubysig.h (CHECK_INTS): fixed typo. (I believe bit-or is improper) + +Fri Oct 21 15:27:17 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> + + * bignum.c (bignew_1): convertion from `int' to `char' discards + upper bits, (ie. (char)0xff00 -> 0) so it's better to test if + nonzero and set 0 or 1 instead of simply casting ... as a flag usage. + (but I believe this won't cause actual bug in current implementation) + [ruby-dev:27055] + + * time.c: should use LONG_LONG instead of `long long'. + +Thu Oct 20 00:13:18 2005 NAKAMURA Usaku <usa@ruby-lang.org> + + * rubysig.h (CHECK_INTS): fix typo. + +Wed Oct 19 08:28:32 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * file.c (rb_file_join): elements may contain null pointer strings. + report and fixed by Lloyd Zusman (hippoman): [ruby-core:06326] + +Wed Oct 19 02:34:33 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * eval.c, gc.c, time.c: made internal symbols static. [ruby-dev:27435] + +Wed Oct 19 01:27:07 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * regex.c (re_compile_pattern): numeric literal inside character class + disabled succeeding backtrack. fixed: [ruby-list:41328] + +Mon Oct 17 16:04:47 2005 NAKAMURA Usaku <usa@ruby-lang.org> + + * file.c (chmod_internal, lchmod_internal): fixed type of 2nd argument. + +Sun Oct 16 22:16:51 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * ext/extmk.rb: omit non-existing directories. + +Sun Oct 16 03:38:07 2005 Yukihiro Matsumoto <matz@ruby-lang.org> + + * rubysig.h (CHECK_INTS): prevent signal handler to run during + critical section. [ruby-core:04039] + + * eval.c (load_wait): need not to call rb_thread_schedule() + explicitly. [ruby-core:04039] + + * eval.c (rb_thread_schedule): clear rb_thread_critical. + [ruby-core:04039] + +Fri Oct 14 16:57:32 2005 GOTOU Yuuzou <gotoyuzo@notwork.org> + + * lib/webrick/config.rb (Config::FileHandler): :UserDir should be nil. + It is harmful to permit the access to ~/public_html by default. + suggested by Hiroyuki Iwatsuki. + +Wed Oct 12 12:52:57 2005 GOTOU Yuuzou <gotoyuzo@notwork.org> + + * ext/openssl/ossl.c (Init_openssl): should call + OpenSSL_add_ssl_algorithms(). + +Tue Oct 11 21:41:58 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * eval.c (rb_obj_respond_to): check if obj responds to the given + method with the given visibility. [ruby-dev:27408] + + * eval.c (rb_respond_to): conform to Object#respond_to?. [ruby-dev:27411] + +Tue Oct 11 00:01:21 2005 Yukihiro Matsumoto <matz@ruby-lang.org> + + * st.c (st_free_table): do not call free() but xfree(). + [ruby-core:06205] + +Sat Oct 8 20:04:40 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * eval.c (Init_Binding): add Binding#dup method. [yarv-dev:666] + +Fri Oct 7 09:54:00 2005 Yukihiro Matsumoto <matz@ruby-lang.org> + + * lib/cgi.rb (CGI::Cookie::parse): Cookies from Nokia devices may + not be parsed correctly. A patch from August Z. Flatby + (augustzf) in [ruby-Patches-2595]. [ruby-core:06183] + +Thu Oct 6 20:12:16 2005 Minero Aoki <aamine@loveruby.net> + + * ext/strscan/strscan.c (strscan_free): remove useless code. + [ruby-dev:26368] [ruby-dev:27389] + (backported from trunk, rev 1.22) + +Wed Oct 05 04:42:38 2005 GOTOU Yuuzou <gotoyuzo@notwork.org> + + * lib/xmlrpc/server.rb (XMLRPC::Server#initialize): should mount the + servlet on "/". + +Wed Oct 05 03:59:09 2005 GOTOU Yuuzou <gotoyuzo@notwork.org> + + * lib/xmlrpc/server.rb (XMLRPC::Server#serve): delete wrong call + of "join". + +Mon Oct 3 00:04:00 2005 Kazuhiro NISHIYAMA <zn@mbf.nifty.com> + + * pack.c (EXTEND16): [ruby-dev:27383] + +Thu Sep 29 10:26:18 2005 Tanaka Akira <akr@m17n.org> + + * ext/dl/dl.c (rb_io_to_ptr): abolish sizeof(FILE). + [ruby-dev:27317] + +Thu Sep 29 07:22:05 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * evalc. (rb_f_send): underscores need to be escaped. + fixed by Doug Kearns. [ruby-core:06053] + +Thu Sep 29 00:57:35 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * eval.c (ev_const_get), variable.c (rb_const_get_0): retry only when + autoload succeeded. + + * variable.c (rb_autoload_load): now return true if autoload + succeeded. fixed: [ruby-dev:27331] + +Wed Sep 28 23:42:15 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * file.c (apply2files): add prototype. + + * file.c (rb_stat_inspect): constified. + +Wed Sep 28 15:14:19 2005 GOTOU Yuuzou <gotoyuzo@notwork.org> + + * lib/webrick/cgi.rb (WEBrick::CGI#start): req.query_string should + refer the value of QUERY_STRING. [ruby-list:41186] + + * lib/webrick/httprequest.rb (WEBrick::HTTPRequest#query_string=): + add new method. + +Wed Sep 28 10:45:44 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> + + * ext/tcltklib/tcltklib.c: cannot compile with Tcl/Tk8.0.x + [ruby-dev:27335]. + +Wed Sep 28 08:12:18 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * io.c (read_buffered_data): check if reached EOF. fixed: [ruby-dev:27334] + +Wed Sep 28 07:56:52 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * lib/yaml/basenode.rb (YAML::BaseNode::match_segment): fix typo. + [ruby-dev:27237], [ruby-core:05854] + + * lib/yaml/tag.rb (Module#yaml_as): suppress warnings. + + * lib/yaml/types.rb (YAML::PrivateType, YAML::DomainType): ditto. + +Wed Sep 28 03:23:35 2005 NAKAMURA Usaku <usa@ruby-lang.org> + + * rubysig.h: fixed build problem with --enable-pthread on platforms + which don't have setitimer(). + +Mon Sep 26 22:32:13 2005 Yukihiro Matsumoto <matz@ruby-lang.org> + + * eval.c (set_trace_func): add rb_secure(4) to prevent adding + tracing function. + +Tue Oct 25 02:12:08 2005 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * lib/rdoc/markup/simple_markup.rb (SM::SimpleMarkup::LABEL_LIST_RE): + reduce redundant backtrack. [ruby-talk:161771] + +Sun Sep 25 00:18:11 2005 Tanaka Akira <akr@m17n.org> + + * eval.c (unknown_node): show more information. [ruby-dev:26196] + +Sat Sep 24 08:56:01 2005 Minero Aoki <aamine@loveruby.net> + + * lib/fileutils.rb (cd): no longer accept :noop option, related + code is useless (backported from trunk, rev 1.67). + [ruby-core:05858] [ruby-Bugs:2494] + +Sat Sep 24 08:38:07 2005 Minero Aoki <aamine@loveruby.net> + + * lib/fileutils.rb: fix visibility of FileUtils::NoWrite, Verbose, + DryRun (backported from trunk, rev 1.66). [ruby-core:05954] + +Sun Oct 23 07:11:11 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> + + * ext/tk/lib/tkextlib/*: ditto. diff --git a/lang/ruby18-base/patches/patch-aa b/lang/ruby18-base/patches/patch-aa index 3f75b7c0923..c4681802679 100644 --- a/lang/ruby18-base/patches/patch-aa +++ b/lang/ruby18-base/patches/patch-aa @@ -1,8 +1,8 @@ -$NetBSD: patch-aa,v 1.2 2005/09/19 15:19:13 taca Exp $ +$NetBSD: patch-aa,v 1.3 2005/11/02 08:56:40 taca Exp $ ---- configure.in.orig 2004-12-23 00:16:55.000000000 +0900 +--- configure.in.orig 2005-09-07 08:22:56.000000000 +0900 +++ configure.in -@@ -321,6 +321,9 @@ msdosdjgpp*) LIBS="-lm $LIBS" +@@ -348,6 +348,9 @@ msdosdjgpp*) LIBS="-lm $LIBS" ac_cv_func_getpgrp_void=yes ac_cv_func_setitimer=no ;; @@ -12,7 +12,7 @@ $NetBSD: patch-aa,v 1.2 2005/09/19 15:19:13 taca Exp $ freebsd*) LIBS="-lm $LIBS" AC_CACHE_CHECK([whether -lxpg4 has to be linked], rb_cv_lib_xpg4_needed, -@@ -863,6 +866,13 @@ if test "$with_dln_a_out" != yes; then +@@ -890,6 +893,13 @@ if test "$with_dln_a_out" != yes; then LDFLAGS="$LDFLAGS -Wl,-export-dynamic" fi rb_cv_dlopen=yes ;; @@ -26,7 +26,20 @@ $NetBSD: patch-aa,v 1.2 2005/09/19 15:19:13 taca Exp $ interix*) : ${LDSHARED="$CC -shared"} XLDFLAGS="$XLDFLAGS -Wl,-E" LIBPATHFLAG=" -L'%1\$-s'" -@@ -1216,6 +1226,14 @@ if test "$enable_shared" = 'yes'; then +@@ -970,7 +980,11 @@ if test "$with_dln_a_out" != yes; then + [enable_rpath=$enableval], [enable_rpath="$rb_cv_binary_elf"]) + if test "$enable_rpath" = yes; then + LIBPATHFLAG=" -L'%1\$-s'" +- RPATHFLAG=" -Wl,-R'%1\$-s'" ++ if test "$GCC" = yes; then ++ RPATHFLAG=" -Wl,-R'%1\$-s'" ++ else ++ RPATHFLAG=" -R'%1\$-s'" ++ fi + fi + fi + AC_SUBST(LINK_SO) +@@ -1251,6 +1265,14 @@ if test "$enable_shared" = 'yes'; then LIBRUBY_DLDFLAGS='-install_name $(libdir)/lib$(RUBY_SO_NAME).dylib -current_version $(MAJOR).$(MINOR).$(TEENY) -compatibility_version $(MAJOR).$(MINOR)' LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).$(MAJOR).$(MINOR).dylib lib$(RUBY_SO_NAME).dylib' ;; diff --git a/lang/ruby18-base/patches/patch-ab b/lang/ruby18-base/patches/patch-ab index 32589a7c3a9..db950112599 100644 --- a/lang/ruby18-base/patches/patch-ab +++ b/lang/ruby18-base/patches/patch-ab @@ -1,8 +1,8 @@ -$NetBSD: patch-ab,v 1.2 2005/09/19 15:19:13 taca Exp $ +$NetBSD: patch-ab,v 1.3 2005/11/02 08:56:40 taca Exp $ ---- configure.orig 2004-12-25 19:58:38.000000000 +0900 +--- configure.orig 2005-09-21 09:10:31.000000000 +0900 +++ configure -@@ -8993,6 +8993,9 @@ msdosdjgpp*) LIBS="-lm $LIBS" +@@ -9295,6 +9295,9 @@ msdosdjgpp*) LIBS="-lm $LIBS" ac_cv_func_getpgrp_void=yes ac_cv_func_setitimer=no ;; @@ -12,7 +12,7 @@ $NetBSD: patch-ab,v 1.2 2005/09/19 15:19:13 taca Exp $ freebsd*) LIBS="-lm $LIBS" echo "$as_me:$LINENO: checking whether -lxpg4 has to be linked" >&5 echo $ECHO_N "checking whether -lxpg4 has to be linked... $ECHO_C" >&6 -@@ -14003,6 +14006,13 @@ echo $ECHO_N "checking whether OS depend +@@ -14305,6 +14308,13 @@ echo $ECHO_N "checking whether OS depend LDFLAGS="$LDFLAGS -Wl,-export-dynamic" fi rb_cv_dlopen=yes ;; @@ -26,7 +26,20 @@ $NetBSD: patch-ab,v 1.2 2005/09/19 15:19:13 taca Exp $ interix*) : ${LDSHARED="$CC -shared"} XLDFLAGS="$XLDFLAGS -Wl,-E" LIBPATHFLAG=" -L'%1\$-s'" -@@ -14776,6 +14786,14 @@ if test "$enable_shared" = 'yes'; then +@@ -14390,7 +14400,11 @@ else + fi; + if test "$enable_rpath" = yes; then + LIBPATHFLAG=" -L'%1\$-s'" +- RPATHFLAG=" -Wl,-R'%1\$-s'" ++ if test "$GCC" = yes; then ++ RPATHFLAG=" -Wl,-R'%1\$-s'" ++ else ++ RPATHFLAG=" -R'%1\$-s'" ++ fi + fi + fi + +@@ -15088,6 +15102,14 @@ if test "$enable_shared" = 'yes'; then LIBRUBY_DLDFLAGS='-install_name $(libdir)/lib$(RUBY_SO_NAME).dylib -current_version $(MAJOR).$(MINOR).$(TEENY) -compatibility_version $(MAJOR).$(MINOR)' LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).$(MAJOR).$(MINOR).dylib lib$(RUBY_SO_NAME).dylib' ;; diff --git a/lang/ruby18-base/patches/patch-ad b/lang/ruby18-base/patches/patch-ad new file mode 100644 index 00000000000..cf9d5c82060 --- /dev/null +++ b/lang/ruby18-base/patches/patch-ad @@ -0,0 +1,189 @@ +$NetBSD: patch-ad,v 1.3 2005/11/02 08:56:40 taca Exp $ + +--- eval.c.orig 2005-09-20 18:26:35.000000000 +0900 ++++ eval.c +@@ -1837,7 +1837,7 @@ ev_const_get(cref, id, self) + if (NIL_P(klass)) return rb_const_get(CLASS_OF(self), id); + while (RCLASS(klass)->iv_tbl && st_lookup(RCLASS(klass)->iv_tbl, id, &result)) { + if (result == Qundef) { +- rb_autoload_load(klass, id); ++ if (!RTEST(rb_autoload_load(klass, id))) break; + continue; + } + return result; +@@ -2545,6 +2545,7 @@ set_trace_func(obj, trace) + { + rb_event_hook_t *hook; + ++ rb_secure(4); + if (NIL_P(trace)) { + trace_func = 0; + rb_remove_event_hook(call_trace_func); +@@ -2814,7 +2815,15 @@ unknown_node(node) + NODE *volatile node; + { + ruby_current_node = 0; +- rb_bug("unknown node type %d", nd_type(node)); ++ if (node->flags == 0) { ++ rb_bug("terminated node (0x%lx)", node); ++ } ++ else if (BUILTIN_TYPE(node) != T_NODE) { ++ rb_bug("not a node 0x%02lx (0x%lx)", BUILTIN_TYPE(node), node); ++ } ++ else { ++ rb_bug("unknown node type %d (0x%lx)", nd_type(node), node); ++ } + } + + static VALUE +@@ -4091,21 +4100,32 @@ module_setup(module, n) + static NODE *basic_respond_to = 0; + + int +-rb_respond_to(obj, id) ++rb_obj_respond_to(obj, id, priv) + VALUE obj; + ID id; ++ int priv; + { + VALUE klass = CLASS_OF(obj); +- if (rb_method_node(klass, respond_to) == basic_respond_to && +- rb_method_boundp(klass, id, 0)) { +- return Qtrue; ++ ++ if (rb_method_node(klass, respond_to) == basic_respond_to) { ++ return rb_method_boundp(klass, id, !priv); + } +- else{ +- return rb_funcall(obj, respond_to, 1, ID2SYM(id)); ++ else { ++ VALUE args[2]; ++ int n = 0; ++ args[n++] = ID2SYM(id); ++ if (priv) args[n++] = Qtrue; ++ return rb_funcall2(obj, respond_to, n, args); + } +- return Qfalse; + } + ++int ++rb_respond_to(obj, id) ++ VALUE obj; ++ ID id; ++{ ++ return rb_obj_respond_to(obj, id, Qfalse); ++} + + /* + * call-seq: +@@ -4117,7 +4137,7 @@ rb_respond_to(obj, id) + */ + + static VALUE +-rb_obj_respond_to(argc, argv, obj) ++obj_respond_to(argc, argv, obj) + int argc; + VALUE *argv; + VALUE obj; +@@ -5921,7 +5941,7 @@ rb_apply(recv, mid, args) + * obj.__send__(symbol [, args...]) => obj + * + * Invokes the method identified by _symbol_, passing it any +- * arguments specified. You can use <code>__send__</code> if the name ++ * arguments specified. You can use <code>\_\_send__</code> if the name + * +send+ clashes with an existing method in _obj_. + * + * class Klass +@@ -6060,6 +6080,9 @@ rb_call_super(argc, argv) + + self = ruby_frame->self; + klass = ruby_frame->last_class; ++ if (RCLASS(klass)->super == 0) { ++ return method_missing(self, ruby_frame->last_func, argc, argv, CSTAT_SUPER); ++ } + + PUSH_ITER(ruby_iter->iter ? ITER_PRE : ITER_NOT); + result = rb_call(RCLASS(klass)->super, self, ruby_frame->orig_func, argc, argv, 3); +@@ -6419,14 +6442,16 @@ exec_under(func, under, cbase, args) + VALUE val = Qnil; /* OK */ + int state; + int mode; ++ struct FRAME *f = ruby_frame->prev; + + PUSH_CLASS(under); + PUSH_FRAME(); +- ruby_frame->self = _frame.prev->self; +- ruby_frame->last_func = _frame.prev->last_func; +- ruby_frame->last_class = _frame.prev->last_class; +- ruby_frame->argc = _frame.prev->argc; +- ruby_frame->argv = _frame.prev->argv; ++ ruby_frame->self = f->self; ++ ruby_frame->last_func = f->last_func; ++ ruby_frame->orig_func = f->orig_func; ++ ruby_frame->last_class = f->last_class; ++ ruby_frame->argc = f->argc; ++ ruby_frame->argv = f->argv; + if (cbase) { + PUSH_CREF(cbase); + } +@@ -6844,19 +6869,19 @@ rb_provide(feature) + rb_provide_feature(rb_str_new2(feature)); + } + +-static void ++static int + load_wait(ftptr) + char *ftptr; + { + st_data_t th; + +- if (!loading_tbl) return; +- if (!st_lookup(loading_tbl, (st_data_t)ftptr, &th)) return; +- if ((rb_thread_t)th == curr_thread) return; ++ if (!loading_tbl) return Qfalse; ++ if (!st_lookup(loading_tbl, (st_data_t)ftptr, &th)) return Qfalse; + do { ++ if ((rb_thread_t)th == curr_thread) return Qtrue; + CHECK_INTS; +- rb_thread_schedule(); + } while (st_lookup(loading_tbl, (st_data_t)ftptr, &th)); ++ return Qtrue; + } + + /* +@@ -6987,8 +7012,7 @@ rb_require_safe(fname, safe) + ruby_safe_level = safe; + found = search_required(fname, &feature, &path); + if (found) { +- if (!path) { +- load_wait(RSTRING(feature)->ptr); ++ if (!path || load_wait(RSTRING(path)->ptr)) { + result = Qfalse; + } + else { +@@ -7751,7 +7775,7 @@ Init_eval() + rb_define_global_function("method_missing", rb_method_missing, -1); + rb_define_global_function("loop", rb_f_loop, 0); + +- rb_define_method(rb_mKernel, "respond_to?", rb_obj_respond_to, -1); ++ rb_define_method(rb_mKernel, "respond_to?", obj_respond_to, -1); + respond_to = rb_intern("respond_to?"); + basic_respond_to = rb_method_node(rb_cObject, respond_to); + rb_global_variable((VALUE*)&basic_respond_to); +@@ -9383,6 +9407,7 @@ rb_mod_define_method(argc, argv, mod) + noex = NOEX_PUBLIC; + } + rb_add_method(mod, id, node, noex); ++ rb_define_method(rb_cBinding, "dup", proc_dup, 0); + return body; + } + +@@ -12549,7 +12574,7 @@ thgroup_list(group) + * ThreadError: can't move from the enclosed thread group + */ + +-VALUE ++static VALUE + thgroup_enclose(group) + VALUE group; + { diff --git a/lang/ruby18-base/patches/patch-ae b/lang/ruby18-base/patches/patch-ae new file mode 100644 index 00000000000..c121f8714bd --- /dev/null +++ b/lang/ruby18-base/patches/patch-ae @@ -0,0 +1,15 @@ +$NetBSD: patch-ae,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- ext/openssl/ossl_config.c.orig 2004-12-15 10:54:39.000000000 +0900 ++++ ext/openssl/ossl_config.c +@@ -245,7 +245,9 @@ set_conf_section_i(VALUE i, VALUE *arg) + static VALUE + ossl_config_set_section(VALUE self, VALUE section, VALUE hash) + { +- VALUE arg[2] = { self, section }; ++ VALUE arg[2]; ++ arg[0] = self; ++ arg[1] = self; + rb_iterate(rb_each, hash, set_conf_section_i, (VALUE)arg); + return hash; + } diff --git a/lang/ruby18-base/patches/patch-al b/lang/ruby18-base/patches/patch-al deleted file mode 100644 index 2aa0674ca16..00000000000 --- a/lang/ruby18-base/patches/patch-al +++ /dev/null @@ -1,36 +0,0 @@ -$NetBSD: patch-al,v 1.1.1.1 2005/03/06 16:36:57 taca Exp $ - ---- ext/nkf/nkf-utf8/nkf.c.orig 2004-12-04 03:04:38.000000000 +0900 -+++ ext/nkf/nkf-utf8/nkf.c -@@ -256,6 +256,10 @@ extern POINT _BufferSize; - - /* function prototype */ - -+#ifdef CHECK_OPTION -+static int (*iconv_for_check)() = 0; -+#endif -+ - #ifdef ANSI_C_PROTOTYPE - #define PROTO(x) x - #define STATIC static -@@ -1311,9 +1315,6 @@ void set_iconv(f, iconv_func) - int (*iconv_func)(); - #endif - { --#ifdef CHECK_OPTION -- static int (*iconv_for_check)() = 0; --#endif - #ifdef INPUT_CODE_FIX - if (f || !input_f) - #endif -@@ -4292,7 +4293,9 @@ reinit() - broken_counter = 0; - broken_last = 0; - z_prev2=0,z_prev1=0; -- -+#ifdef CHECK_OPTION -+ iconv_for_check = 0; -+#endif - } - #endif - diff --git a/lang/ruby18-base/patches/patch-am b/lang/ruby18-base/patches/patch-am deleted file mode 100644 index 53ca50f3063..00000000000 --- a/lang/ruby18-base/patches/patch-am +++ /dev/null @@ -1,46 +0,0 @@ -$NetBSD: patch-am,v 1.1.1.1 2005/03/06 16:36:57 taca Exp $ - ---- ext/nkf/lib/kconv.rb.orig 2004-11-03 16:30:41.000000000 +0900 -+++ ext/nkf/lib/kconv.rb -@@ -74,8 +74,8 @@ module Kconv - RegexpEucjp = /\A(?: - [\x00-\x7f] | - \x8e [\xa1-\xdf] | -- \x8f [\xa1-\xdf] [\xa1-\xdf] | -- [\xa1-\xdf] [\xa1-\xdf] -+ \x8f [\xa1-\xdf] [\xa1-\xfe] | -+ [\xa1-\xdf] [\xa1-\xfe] - )*\z/nx - RegexpUtf8 = /\A(?: - [\x00-\x7f] | -@@ -101,8 +101,9 @@ module Kconv - when ::NKF::SJIS - opt << 'S' - when ::NKF::UTF8 -- when ::NKF::UTF16 - opt << 'W' -+ when ::NKF::UTF16 -+ opt << 'W16' - end - - case out_code -@@ -113,8 +114,9 @@ module Kconv - when ::NKF::SJIS - opt << 's' - when ::NKF::UTF8 -- when ::NKF::UTF16 - opt << 'w' -+ when ::NKF::UTF16 -+ opt << 'w16' - when ::NKF::NOCONV - return str - end -@@ -164,7 +166,7 @@ module Kconv - module_function :guess - - def guess_old(str) -- ::NKF::guess_old(str) -+ ::NKF::guess1(str) - end - module_function :guess_old - diff --git a/lang/ruby18-base/patches/patch-an b/lang/ruby18-base/patches/patch-an deleted file mode 100644 index 4ec8b765581..00000000000 --- a/lang/ruby18-base/patches/patch-an +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-an,v 1.1.1.1 2005/03/06 16:36:57 taca Exp $ - ---- lib/net/imap.rb.orig 2004-10-03 21:21:35.000000000 +0900 -+++ lib/net/imap.rb -@@ -1266,7 +1266,7 @@ module Net - buf.concat(c) - i += 1 - elsif (c & 0xe0) == 0xc0 && -- inlen >= 2 && -+ len >= 2 && - (s[i + 1] & 0xc0) == 0x80 - if c == 0xc0 || c == 0xc1 - raise DataFormatError, format("non-shortest UTF-8 sequence (%02x)", c) diff --git a/lang/ruby18-base/patches/patch-ao b/lang/ruby18-base/patches/patch-ao deleted file mode 100644 index a7308e638ec..00000000000 --- a/lang/ruby18-base/patches/patch-ao +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ao,v 1.1.1.1 2005/03/06 16:36:57 taca Exp $ - ---- lib/webrick/httpauth.rb.orig 2004-12-18 15:17:33.000000000 +0900 -+++ lib/webrick/httpauth.rb -@@ -22,7 +22,7 @@ module WEBrick - user = pass = nil - if /^Basic\s+(.*)/o =~ req[req_field] - userpass = $1 -- user, pass = decode64(userpass).split(":", 2) -+ user, pass = userpass.unpack("m*")[0].split(":", 2) - end - if block.call(user, pass) - req.user = user diff --git a/lang/ruby18-base/patches/patch-ap b/lang/ruby18-base/patches/patch-ap deleted file mode 100644 index 5e7ff901e78..00000000000 --- a/lang/ruby18-base/patches/patch-ap +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ap,v 1.1.1.1 2005/03/06 16:36:57 taca Exp $ - ---- lib/webrick/httpauth/basicauth.rb.orig 2004-12-18 15:17:33.000000000 +0900 -+++ lib/webrick/httpauth/basicauth.rb -@@ -34,7 +34,7 @@ module WEBrick - unless basic_credentials = check_scheme(req) - challenge(req, res) - end -- userid, password = decode64(basic_credentials).split(":", 2) -+ userid, password = basic_credentials.unpack("m*")[0].split(":", 2) - password ||= "" - if userid.empty? - error("user id was not given.") diff --git a/lang/ruby18-base/patches/patch-aq b/lang/ruby18-base/patches/patch-aq deleted file mode 100644 index f7616507266..00000000000 --- a/lang/ruby18-base/patches/patch-aq +++ /dev/null @@ -1,28 +0,0 @@ -$NetBSD: patch-aq,v 1.1.1.1 2005/03/06 16:36:57 taca Exp $ - ---- lib/webrick/httpauth/digestauth.rb.orig 2004-12-18 16:19:46.000000000 +0900 -+++ lib/webrick/httpauth/digestauth.rb -@@ -174,11 +174,11 @@ module WEBrick - - if auth_req['qop'] == "auth" || auth_req['qop'] == nil - ha2 = hexdigest(req.request_method, auth_req['uri']) -- ha2_res = digest("", auth_req['uri']) -+ ha2_res = hexdigest("", auth_req['uri']) - elsif auth_req['qop'] == "auth-int" - ha2 = hexdigest(req.request_method, auth_req['uri'], - hexdigest(req.body)) -- ha2_res = digest("", auth_req['uri'], hexdigest(req.body)) -+ ha2_res = hexdigest("", auth_req['uri'], hexdigest(res.body)) - end - - if auth_req['qop'] == "auth" || auth_req['qop'] == "auth-int" -@@ -331,9 +331,6 @@ module WEBrick - @h.hexdigest(args.join(":")) - end - -- def digest(*args) -- @h.digest(args.join(":")) -- end - end - - class ProxyDigestAuth < DigestAuth diff --git a/lang/ruby18-base/patches/patch-ar b/lang/ruby18-base/patches/patch-ar deleted file mode 100644 index e9a47d335a9..00000000000 --- a/lang/ruby18-base/patches/patch-ar +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-ar,v 1.1.1.1 2005/03/06 16:36:57 taca Exp $ - ---- lib/webrick/httpauth/htpasswd.rb.orig 2003-07-24 01:51:36.000000000 +0900 -+++ lib/webrick/httpauth/htpasswd.rb -@@ -32,7 +32,15 @@ module WEBrick - open(@path){|io| - while line = io.gets - line.chomp! -- user, pass = line.split(":") -+ case line -+ when %r!\A[^:]+:[a-zA-Z0-9./]{13}\z! -+ user, pass = line.split(":") -+ when /:\$/, /:\{SHA\}/ -+ raise NotImplementedError, -+ 'MD5, SHA1 .htpasswd file not supported' -+ else -+ raise StandardError, 'bad .htpasswd file' -+ end - @passwd[user] = pass - end - } diff --git a/lang/ruby18-base/patches/patch-as b/lang/ruby18-base/patches/patch-as deleted file mode 100644 index ce253761e2a..00000000000 --- a/lang/ruby18-base/patches/patch-as +++ /dev/null @@ -1,24 +0,0 @@ -$NetBSD: patch-as,v 1.1.1.1 2005/03/06 16:36:57 taca Exp $ - ---- lib/webrick/httpproxy.rb.orig 2004-08-22 01:16:18.000000000 +0900 -+++ lib/webrick/httpproxy.rb -@@ -110,7 +110,8 @@ module WEBrick - proxy_host = proxy.host - proxy_port = proxy.port - if proxy.userinfo -- credentials = "Basic " + encode64(proxy.userinfo) -+ credentials = "Basic " + [proxy.userinfo].pack("m*") -+ credentials.chomp! - header['proxy-authorization'] = credentials - end - end -@@ -170,7 +171,8 @@ module WEBrick - if proxy = proxy_uri(req, res) - proxy_request_line = "CONNECT #{host}:#{port} HTTP/1.0" - if proxy.userinfo -- credentials = "Basic " + encode64(proxy.userinfo) -+ credentials = "Basic " + [proxy.userinfo].pack("m*") -+ credentials.chomp! - end - host, port = proxy.host, proxy.port - end diff --git a/lang/ruby18-base/patches/patch-at b/lang/ruby18-base/patches/patch-at index a084ba3e06c..9e69ab09575 100644 --- a/lang/ruby18-base/patches/patch-at +++ b/lang/ruby18-base/patches/patch-at @@ -1,12 +1,34 @@ -$NetBSD: patch-at,v 1.1.1.1 2005/03/06 16:36:57 taca Exp $ +$NetBSD: patch-at,v 1.2 2005/11/02 08:56:40 taca Exp $ ---- variable.c.orig 2004-10-02 12:50:48.000000000 +0900 +--- variable.c.orig 2005-07-27 12:07:01.000000000 +0900 +++ variable.c -@@ -1290,6 +1290,7 @@ rb_autoload(mod, id, file) - } - else { - av = Data_Wrap_Struct(rb_cData, rb_mark_tbl, st_free_table, 0); -+ RBASIC(av)->klass = 0; - st_add_direct(tbl, autoload, av); - DATA_PTR(av) = tbl = st_init_numtable(); +@@ -1329,7 +1329,7 @@ autoload_delete(mod, id) + return (NODE *)load; + } + +-void ++VALUE + rb_autoload_load(klass, id) + VALUE klass; + ID id; +@@ -1338,9 +1338,9 @@ rb_autoload_load(klass, id) + NODE *load = autoload_delete(klass, id); + + if (!load || !(file = load->nd_lit) || rb_provided(RSTRING(file)->ptr)) { +- const_missing(klass, id); ++ return Qfalse; } +- rb_require_safe(file, load->nd_nth); ++ return rb_require_safe(file, load->nd_nth); + } + + static VALUE +@@ -1406,7 +1406,7 @@ rb_const_get_0(klass, id, exclude, recur + while (tmp) { + while (RCLASS(tmp)->iv_tbl && st_lookup(RCLASS(tmp)->iv_tbl,id,&value)) { + if (value == Qundef) { +- rb_autoload_load(tmp, id); ++ if (!RTEST(rb_autoload_load(tmp, id))) break; + continue; + } + if (exclude && tmp == rb_cObject && klass != rb_cObject) { diff --git a/lang/ruby18-base/patches/patch-au b/lang/ruby18-base/patches/patch-au deleted file mode 100644 index 715dff04b72..00000000000 --- a/lang/ruby18-base/patches/patch-au +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-au,v 1.1 2005/09/18 13:38:50 taca Exp $ - ---- error.c.orig 2005-07-15 16:08:36.000000000 +0000 -+++ error.c -@@ -1108,7 +1108,6 @@ void - rb_sys_fail(mesg) - const char *mesg; - { -- extern int errno; - int n = errno; - VALUE arg; - diff --git a/lang/ruby18-base/patches/patch-av b/lang/ruby18-base/patches/patch-av deleted file mode 100644 index 181a5f416a6..00000000000 --- a/lang/ruby18-base/patches/patch-av +++ /dev/null @@ -1,52 +0,0 @@ -$NetBSD: patch-av,v 1.1 2005/09/18 13:38:50 taca Exp $ - ---- process.c.orig 2005-07-15 16:12:12.000000000 +0000 -+++ process.c -@@ -2050,7 +2050,6 @@ static VALUE - p_uid_change_privilege(obj, id) - VALUE obj, id; - { -- extern int errno; - int uid; - - check_uid_switch(); -@@ -2602,7 +2601,6 @@ static VALUE - p_gid_change_privilege(obj, id) - VALUE obj, id; - { -- extern int errno; - int gid; - - check_gid_switch(); -@@ -3129,7 +3127,6 @@ static VALUE - p_uid_switch(obj) - VALUE obj; - { -- extern int errno; - int uid, euid; - - check_uid_switch(); -@@ -3171,7 +3168,6 @@ static VALUE - p_uid_switch(obj) - VALUE obj; - { -- extern int errno; - int uid, euid; - - check_uid_switch(); -@@ -3242,7 +3238,6 @@ static VALUE - p_gid_switch(obj) - VALUE obj; - { -- extern int errno; - int gid, egid; - - check_gid_switch(); -@@ -3283,7 +3278,6 @@ static VALUE - p_gid_switch(obj) - VALUE obj; - { -- extern int errno; - int gid, egid; - - check_gid_switch(); diff --git a/lang/ruby18-base/patches/patch-aw b/lang/ruby18-base/patches/patch-aw deleted file mode 100644 index 35e21d68f4a..00000000000 --- a/lang/ruby18-base/patches/patch-aw +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-aw,v 1.1 2005/09/18 13:38:50 taca Exp $ - ---- ext/pty/pty.c.orig 2005-07-15 16:16:50.000000000 +0000 -+++ ext/pty/pty.c -@@ -103,8 +103,6 @@ char *MasterDevice = "/dev/pty%s", - - static char SlaveName[DEVICELEN]; - --extern int errno; -- - #ifndef HAVE_SETEUID - # ifdef HAVE_SETREUID - # define seteuid(e) setreuid(-1, (e)) diff --git a/lang/ruby18-base/patches/patch-ax b/lang/ruby18-base/patches/patch-ax deleted file mode 100644 index de226636477..00000000000 --- a/lang/ruby18-base/patches/patch-ax +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ax,v 1.1 2005/09/18 13:38:50 taca Exp $ - ---- ext/sdbm/_sdbm.c.orig 2005-07-15 16:18:36.000000000 +0000 -+++ ext/sdbm/_sdbm.c -@@ -103,7 +103,7 @@ static int duppair proto((char *, datu - /* - * externals - */ --#if !defined sun && !defined MSDOS && !defined _WIN32 && !defined __CYGWIN__ -+#if !defined sun && !defined MSDOS && !defined _WIN32 && !defined __CYGWIN__ && !defined(errno) - extern int errno; - #endif - diff --git a/lang/ruby18-base/patches/patch-ay b/lang/ruby18-base/patches/patch-ay index a0a5bb88898..ce66e6c1a89 100644 --- a/lang/ruby18-base/patches/patch-ay +++ b/lang/ruby18-base/patches/patch-ay @@ -1,16 +1,16 @@ -$NetBSD: patch-ay,v 1.1 2005/09/18 13:38:50 taca Exp $ +$NetBSD: patch-ay,v 1.2 2005/11/02 08:56:40 taca Exp $ ---- ext/dl/dl.c.orig 2003-06-16 16:25:38.000000000 +0900 +--- ext/dl/dl.c.orig 2005-09-19 18:38:39.000000000 +0900 +++ ext/dl/dl.c -@@ -543,7 +543,11 @@ rb_io_to_ptr(VALUE self) +@@ -557,11 +557,7 @@ rb_io_to_ptr(VALUE self) GetOpenFile(self, fptr); fp = fptr->f; -+#if defined(__DragonFly__) -+ return fp ? rb_dlptr_new(fp, 0, 0) : Qnil; -+#else - return fp ? rb_dlptr_new(fp, sizeof(FILE), 0) : Qnil; -+#endif +-#if defined(__DragonFly__) + return fp ? rb_dlptr_new(fp, 0, 0) : Qnil; +-#else +- return fp ? rb_dlptr_new(fp, sizeof(FILE), 0) : Qnil; +-#endif } VALUE diff --git a/lang/ruby18-base/patches/patch-az b/lang/ruby18-base/patches/patch-az index b31ba889a60..87fbe939dbb 100644 --- a/lang/ruby18-base/patches/patch-az +++ b/lang/ruby18-base/patches/patch-az @@ -1,13 +1,43 @@ -$NetBSD: patch-az,v 1.1 2005/09/18 13:38:50 taca Exp $ +$NetBSD: patch-az,v 1.2 2005/11/02 08:56:40 taca Exp $ ---- io.c.orig 2004-12-25 19:56:39.000000000 +0900 +--- io.c.orig 2005-09-20 17:11:35.000000000 +0900 +++ io.c -@@ -32,7 +32,7 @@ - # define NO_LONG_FNAME - #endif - --#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(sun) || defined(_nec_ews) -+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(sun) || defined(_nec_ews) - # define USE_SETVBUF +@@ -1020,8 +1020,10 @@ read_buffered_data(ptr, len, f) + if (n > len) n = len; + return fread(ptr, 1, n, f); + #else +- for (n = 0; n < len && READ_DATA_PENDING(f); ++n) { +- *ptr++ = getc(f); ++ int c; ++ ++ for (n = 0; n < len && READ_DATA_PENDING(f) && (c = getc(f)) != EOF; ++n) { ++ *ptr++ = c; + } + return n; #endif +@@ -3516,6 +3518,7 @@ rb_io_reopen(argc, argv, file) + return file; + } ++/* :nodoc: */ + static VALUE + rb_io_init_copy(dest, io) + VALUE dest, io; +@@ -3632,7 +3635,7 @@ rb_f_printf(argc, argv) + * ios.print(obj, ...) => nil + * + * Writes the given object(s) to <em>ios</em>. The stream must be +- * opened for writing. If the output record separator (<code>$\</code>) ++ * opened for writing. If the output record separator (<code>$\\</code>) + * is not <code>nil</code>, it will be appended to the output. If no + * arguments are given, prints <code>$_</code>. Objects that aren't + * strings will be converted by calling their <code>to_s</code> method. +@@ -3688,7 +3691,7 @@ rb_io_print(argc, argv, out) + * Prints each object in turn to <code>$stdout</code>. If the output + * field separator (<code>$,</code>) is not +nil+, its + * contents will appear between each field. If the output record +- * separator (<code>$\</code>) is not +nil+, it will be ++ * separator (<code>$\\</code>) is not +nil+, it will be + * appended to the output. If no arguments are given, prints + * <code>$_</code>. Objects that aren't strings will be converted by + * calling their <code>to_s</code> method. diff --git a/lang/ruby18-base/patches/patch-ba b/lang/ruby18-base/patches/patch-ba new file mode 100644 index 00000000000..c6f3f522048 --- /dev/null +++ b/lang/ruby18-base/patches/patch-ba @@ -0,0 +1,22 @@ +$NetBSD: patch-ba,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- bignum.c.orig 2005-09-07 08:22:56.000000000 +0900 ++++ bignum.c +@@ -46,7 +46,7 @@ bignew_1(klass, len, sign) + { + NEWOBJ(big, struct RBignum); + OBJSETUP(big, klass, T_BIGNUM); +- big->sign = (char)sign; ++ big->sign = sign?1:0; + big->len = len; + big->digits = ALLOC_N(BDIGIT, len); + +@@ -1088,7 +1088,7 @@ bigsub(x, y) + } + } + +- z = bignew(RBIGNUM(x)->len, (z == 0)?1:0); ++ z = bignew(RBIGNUM(x)->len, z==0); + zds = BDIGITS(z); + + for (i = 0, num = 0; i < RBIGNUM(y)->len; i++) { diff --git a/lang/ruby18-base/patches/patch-bb b/lang/ruby18-base/patches/patch-bb new file mode 100644 index 00000000000..3f7805ebb6a --- /dev/null +++ b/lang/ruby18-base/patches/patch-bb @@ -0,0 +1,41 @@ +$NetBSD: patch-bb,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- ext/extmk.rb.orig 2005-08-05 00:20:10.000000000 +0900 ++++ ext/extmk.rb +@@ -350,12 +350,30 @@ end unless $extstatic + + ext_prefix = "#{$top_srcdir}/ext" + exts = $static_ext.sort_by {|t, i| i}.collect {|t, i| t} +-exts |= $extension if $extension +-exts |= Dir.glob("#{ext_prefix}/*/**/extconf.rb").collect {|d| +- d = File.dirname(d) +- d.slice!(0, ext_prefix.length + 1) +- d +-}.sort unless $extension ++if $extension ++ exts |= $extension.select {|d| File.directory?("#{ext_prefix}/#{d}")} ++else ++ withes, withouts = %w[--with --without].collect {|w| ++ if not (w = %w[-extensions -ext].collect {|opt|arg_config(w+opt)}).any? ++ proc {false} ++ elsif (w = w.grep(String)).empty? ++ proc {true} ++ else ++ w.collect {|opt| opt.split(/,/)}.flatten.method(:any?) ++ end ++ } ++ cond = proc {|ext| ++ cond1 = proc {|n| File.fnmatch(n, ext, File::FNM_PATHNAME)} ++ withes.call(&cond1) or !withouts.call(&cond1) ++ } ++ exts |= Dir.glob("#{ext_prefix}/*/**/extconf.rb").collect {|d| ++ d = File.dirname(d) ++ d.slice!(0, ext_prefix.length + 1) ++ d ++ }.find_all {|ext| ++ with_config(ext, &cond) ++ }.sort ++end + + if $extout + Config.expand(extout = "#$extout", Config::CONFIG.merge("topdir"=>$topdir)) diff --git a/lang/ruby18-base/patches/patch-bc b/lang/ruby18-base/patches/patch-bc new file mode 100644 index 00000000000..c1848c7bc05 --- /dev/null +++ b/lang/ruby18-base/patches/patch-bc @@ -0,0 +1,12 @@ +$NetBSD: patch-bc,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- ext/openssl/extconf.rb.orig 2005-04-16 04:16:18.000000000 +0900 ++++ ext/openssl/extconf.rb +@@ -62,6 +62,7 @@ unless have_header("openssl/conf_api.h") + end + + message "=== Checking for OpenSSL features... ===\n" ++have_func("ERR_peek_last_error") + have_func("BN_mod_add") + have_func("BN_mod_sqr") + have_func("BN_mod_sub") diff --git a/lang/ruby18-base/patches/patch-bd b/lang/ruby18-base/patches/patch-bd new file mode 100644 index 00000000000..a495b74052a --- /dev/null +++ b/lang/ruby18-base/patches/patch-bd @@ -0,0 +1,28 @@ +$NetBSD: patch-bd,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- ext/openssl/ossl.c.orig 2005-09-10 09:54:29.000000000 +0900 ++++ ext/openssl/ossl.c +@@ -278,9 +278,14 @@ ossl_raise(VALUE exc, const char *fmt, . + va_list args; + char buf[BUFSIZ]; + const char *msg; +- long e = ERR_peek_last_error(); ++ long e; + int len = 0; + ++#ifdef HAVE_ERR_PEEK_LAST_ERROR ++ e = ERR_peek_last_error(); ++#else ++ e = ERR_peek_error(); ++#endif + if (fmt) { + va_start(args, fmt); + len = vsnprintf(buf, BUFSIZ, fmt, args); +@@ -382,6 +387,7 @@ Init_openssl() + */ + /* CRYPTO_malloc_init(); */ + /* ENGINE_load_builtin_engines(); */ ++ OpenSSL_add_ssl_algorithms(); + OpenSSL_add_all_algorithms(); + ERR_load_crypto_strings(); + SSL_load_error_strings(); diff --git a/lang/ruby18-base/patches/patch-be b/lang/ruby18-base/patches/patch-be new file mode 100644 index 00000000000..2a030210d59 --- /dev/null +++ b/lang/ruby18-base/patches/patch-be @@ -0,0 +1,14 @@ +$NetBSD: patch-be,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- ext/openssl/ossl_cipher.c.orig 2005-02-28 11:45:17.000000000 +0900 ++++ ext/openssl/ossl_cipher.c +@@ -224,7 +224,8 @@ ossl_cipher_update(VALUE self, VALUE dat + + StringValue(data); + in = RSTRING(data)->ptr; +- in_len = RSTRING(data)->len; ++ if ((in_len = RSTRING(data)->len) == 0) ++ rb_raise(rb_eArgError, "data must not be empty"); + GetCipher(self, ctx); + str = rb_str_new(0, in_len+EVP_CIPHER_CTX_block_size(ctx)); + if (!EVP_CipherUpdate(ctx, RSTRING(str)->ptr, &out_len, in, in_len)) diff --git a/lang/ruby18-base/patches/patch-bf b/lang/ruby18-base/patches/patch-bf new file mode 100644 index 00000000000..0d9f069139f --- /dev/null +++ b/lang/ruby18-base/patches/patch-bf @@ -0,0 +1,19 @@ +$NetBSD: patch-bf,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- ext/readline/readline.c.orig 2005-05-25 22:01:56.000000000 +0900 ++++ ext/readline/readline.c +@@ -69,10 +69,12 @@ readline_readline(argc, argv, self) + + if (!isatty(0) && errno == EBADF) rb_raise(rb_eIOError, "stdin closed"); + ++ Check_Type(rb_stdout, T_FILE); + GetOpenFile(rb_stdout, ofp); +- rl_outstream = ofp->f; ++ rl_outstream = GetWriteFile(ofp); ++ Check_Type(rb_stdin, T_FILE); + GetOpenFile(rb_stdin, ifp); +- rl_instream = ifp->f; ++ rl_instream = GetReadFile(ifp); + buff = (char*)rb_protect((VALUE(*)_((VALUE)))readline, (VALUE)prompt, + &status); + if (status) { diff --git a/lang/ruby18-base/patches/patch-bg b/lang/ruby18-base/patches/patch-bg new file mode 100644 index 00000000000..1e232bb0d08 --- /dev/null +++ b/lang/ruby18-base/patches/patch-bg @@ -0,0 +1,22 @@ +$NetBSD: patch-bg,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- ext/syck/implicit.c.orig 2005-09-20 15:46:43.000000000 +0900 ++++ ext/syck/implicit.c +@@ -2481,7 +2481,7 @@ yy244: ++YYCURSOR; + goto yy245; + yy245: + #line 174 "implicit.re" +-{ return type_id; } ++{ return syck_strndup( type_id, strlen( type_id ) ); } + #line 2485 "<stdout>" + yy246: yych = *++YYCURSOR; + switch(yych){ +@@ -2928,7 +2928,7 @@ yy264: ++YYCURSOR; + goto yy265; + yy265: + #line 172 "implicit.re" +-{ return type_id; } ++{ return syck_strndup( type_id, strlen( type_id ) ); } + #line 2932 "<stdout>" + yy266: yych = *++YYCURSOR; + switch(yych){ diff --git a/lang/ruby18-base/patches/patch-bh b/lang/ruby18-base/patches/patch-bh new file mode 100644 index 00000000000..7a92da08806 --- /dev/null +++ b/lang/ruby18-base/patches/patch-bh @@ -0,0 +1,12 @@ +$NetBSD: patch-bh,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- ext/strscan/strscan.c.orig 2005-03-04 19:39:45.000000000 +0900 ++++ ext/strscan/strscan.c +@@ -176,7 +176,6 @@ strscan_free(p) + struct strscanner *p; + { + re_free_registers(&(p->regs)); +- memset(p, sizeof(struct strscanner), 0); + free(p); + } + diff --git a/lang/ruby18-base/patches/patch-bi b/lang/ruby18-base/patches/patch-bi new file mode 100644 index 00000000000..cbba9e6db8a --- /dev/null +++ b/lang/ruby18-base/patches/patch-bi @@ -0,0 +1,317 @@ +$NetBSD: patch-bi,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- file.c.orig 2005-09-21 02:51:20.000000000 +0900 ++++ file.c +@@ -75,9 +75,10 @@ VALUE rb_cFile; + VALUE rb_mFileTest; + static VALUE rb_cStat; + ++static long apply2files _((void (*)(const char *, void *), VALUE, void *)); + static long + apply2files(func, vargs, arg) +- void (*func)(); ++ void (*func)_((const char *, void *)); + VALUE vargs; + void *arg; + { +@@ -179,6 +180,20 @@ rb_stat_cmp(self, other) + return Qnil; + } + ++static VALUE rb_stat_dev _((VALUE)); ++static VALUE rb_stat_ino _((VALUE)); ++static VALUE rb_stat_mode _((VALUE)); ++static VALUE rb_stat_nlink _((VALUE)); ++static VALUE rb_stat_uid _((VALUE)); ++static VALUE rb_stat_gid _((VALUE)); ++static VALUE rb_stat_rdev _((VALUE)); ++static VALUE rb_stat_size _((VALUE)); ++static VALUE rb_stat_blksize _((VALUE)); ++static VALUE rb_stat_blocks _((VALUE)); ++static VALUE rb_stat_atime _((VALUE)); ++static VALUE rb_stat_mtime _((VALUE)); ++static VALUE rb_stat_ctime _((VALUE)); ++ + /* + * call-seq: + * stat.dev => fixnum +@@ -547,23 +562,23 @@ rb_stat_inspect(self) + { + VALUE str; + int i; +- static struct { +- char *name; +- VALUE (*func)(); ++ static const struct { ++ const char *name; ++ VALUE (*func)_((VALUE)); + } member[] = { +- {"dev", rb_stat_dev}, +- {"ino", rb_stat_ino}, +- {"mode", rb_stat_mode}, +- {"nlink", rb_stat_nlink}, +- {"uid", rb_stat_uid}, +- {"gid", rb_stat_gid}, +- {"rdev", rb_stat_rdev}, +- {"size", rb_stat_size}, +- {"blksize", rb_stat_blksize}, +- {"blocks", rb_stat_blocks}, +- {"atime", rb_stat_atime}, +- {"mtime", rb_stat_mtime}, +- {"ctime", rb_stat_ctime}, ++ {"dev", rb_stat_dev}, ++ {"ino", rb_stat_ino}, ++ {"mode", rb_stat_mode}, ++ {"nlink", rb_stat_nlink}, ++ {"uid", rb_stat_uid}, ++ {"gid", rb_stat_gid}, ++ {"rdev", rb_stat_rdev}, ++ {"size", rb_stat_size}, ++ {"blksize", rb_stat_blksize}, ++ {"blocks", rb_stat_blocks}, ++ {"atime", rb_stat_atime}, ++ {"mtime", rb_stat_mtime}, ++ {"ctime", rb_stat_ctime}, + }; + + str = rb_str_buf_new2("#<"); +@@ -1545,12 +1560,13 @@ rb_file_ctime(obj) + return rb_time_new(st.st_ctime, 0); + } + ++static void chmod_internal _((const char *, void *)); + static void + chmod_internal(path, mode) + const char *path; +- int mode; ++ void *mode; + { +- if (chmod(path, mode) < 0) ++ if (chmod(path, (int)mode) < 0) + rb_sys_fail(path); + } + +@@ -1622,12 +1638,13 @@ rb_file_chmod(obj, vmode) + } + + #if defined(HAVE_LCHMOD) ++static void lchmod_internal _((const char *, void *)); + static void + lchmod_internal(path, mode) + const char *path; +- int mode; ++ void *mode; + { +- if (lchmod(path, mode) < 0) ++ if (lchmod(path, (int)mode) < 0) + rb_sys_fail(path); + } + +@@ -1672,11 +1689,13 @@ struct chown_args { + int owner, group; + }; + ++static void chown_internal _((const char *, void *)); + static void +-chown_internal(path, args) ++chown_internal(path, argp) + const char *path; +- struct chown_args *args; ++ void *argp; + { ++ struct chown_args *args = (struct chown_args *)argp; + if (chown(path, args->owner, args->group) < 0) + rb_sys_fail(path); + } +@@ -1763,11 +1782,13 @@ rb_file_chown(obj, owner, group) + } + + #if defined(HAVE_LCHOWN) && !defined(__CHECKER__) ++static void lchown_internal _((const char *, void *)); + static void +-lchown_internal(path, args) ++lchown_internal(path, argp) + const char *path; +- struct chown_args *args; ++ void *argp; + { ++ struct chown_args *args = (struct chown_args *)argp; + if (lchown(path, args->owner, args->group) < 0) + rb_sys_fail(path); + } +@@ -1823,13 +1844,16 @@ rb_file_s_lchown(argc, argv) + + struct timeval rb_time_timeval(); + ++static void utime_internal _((const char *, void *)); ++ + #if defined(HAVE_UTIMES) && !defined(__CHECKER__) + + static void +-utime_internal(path, tvp) +- char *path; +- struct timeval tvp[]; ++utime_internal(path, arg) ++ const char *path; ++ void *arg; + { ++ struct timeval *tvp = arg; + if (utimes(path, tvp) < 0) + rb_sys_fail(path); + } +@@ -1871,10 +1895,11 @@ struct utimbuf { + #endif + + static void +-utime_internal(path, utp) ++utime_internal(path, arg) + const char *path; +- struct utimbuf *utp; ++ void *arg; + { ++ struct utimbuf *utp = arg; + if (utime(path, utp) < 0) + rb_sys_fail(path); + } +@@ -2012,9 +2037,11 @@ rb_file_s_readlink(klass, path) + #endif + } + ++static void unlink_internal _((const char *, void *)); + static void +-unlink_internal(path) ++unlink_internal(path, arg) + const char *path; ++ void *arg; + { + if (unlink(path) < 0) + rb_sys_fail(path); +@@ -2625,8 +2652,8 @@ rb_file_s_dirname(klass, fname) + name = StringValueCStr(fname); + root = skiproot(name); + #ifdef DOSISH_UNC +- if (root > name + 2 && isdirsep(*name)) +- name = root - 2; ++ if (root > name + 1 && isdirsep(*name)) ++ root = skipprefix(name = root - 2); + #else + if (root > name + 1) + name = root - 1; +@@ -2762,7 +2789,7 @@ rb_file_join(ary, sep) + name = StringValueCStr(result); + if (i > 0 && !NIL_P(sep)) { + tail = chompdirsep(name); +- if (isdirsep(RSTRING(tmp)->ptr[0])) { ++ if (RSTRING(tmp)->ptr && isdirsep(RSTRING(tmp)->ptr[0])) { + RSTRING(result)->len = tail - name; + } + else if (!*tail) { +@@ -2915,23 +2942,23 @@ rb_thread_flock(fd, op, fptr) + OpenFile *fptr; + { + if (rb_thread_alone() || (op & LOCK_NB)) { +- int ret; +- TRAP_BEG; ++ int ret; ++ TRAP_BEG; + ret = flock(fd, op); +- TRAP_END; ++ TRAP_END; + return ret; + } + op |= LOCK_NB; + while (flock(fd, op) < 0) { + switch (errno) { +- case EAGAIN: +- case EACCES: ++ case EAGAIN: ++ case EACCES: + #if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN + case EWOULDBLOCK: + #endif + rb_thread_polling(); /* busy wait */ + rb_io_check_closed(fptr); +- continue; ++ continue; + default: + return -1; + } +@@ -2988,19 +3015,19 @@ rb_file_flock(obj, operation) + } + retry: + if (flock(fileno(fptr->f), op) < 0) { +- switch (errno) { +- case EAGAIN: +- case EACCES: ++ switch (errno) { ++ case EAGAIN: ++ case EACCES: + #if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN +- case EWOULDBLOCK: ++ case EWOULDBLOCK: + #endif +- return Qfalse; ++ return Qfalse; + case EINTR: + #if defined(ERESTART) + case ERESTART: + #endif + goto retry; +- } ++ } + rb_sys_fail(fptr->path); + } + #endif +@@ -3049,14 +3076,14 @@ test_check(n, argc, argv) + * ?d | boolean | True if file1 exists and is a directory + * ?e | boolean | True if file1 exists + * ?f | boolean | True if file1 exists and is a regular file +- * ?g | boolean | True if files has the \CF{setgid} bit ++ * ?g | boolean | True if file1 has the \CF{setgid} bit + * | | set (false under NT) + * ?G | boolean | True if file1 exists and has a group + * | | ownership equal to the caller's group + * ?k | boolean | True if file1 exists and has the sticky bit set +- * ?l | boolean | True if files exists and is a symbolic link ++ * ?l | boolean | True if file1 exists and is a symbolic link + * ?M | Time | Last modification time for file1 +- * ?o | boolean | True if files exists and is owned by ++ * ?o | boolean | True if file1 exists and is owned by + * | | the caller's effective uid + * ?O | boolean | True if file1 exists and is owned by + * | | the caller's real uid +@@ -3065,7 +3092,7 @@ test_check(n, argc, argv) + * | | uid/gid of the caller + * ?R | boolean | True if file is readable by the real + * | | uid/gid of the caller +- * ?s | int/nil | If files has nonzero size, return the size, ++ * ?s | int/nil | If file1 has nonzero size, return the size, + * | | otherwise return nil + * ?S | boolean | True if file1 exists and is a socket + * ?u | boolean | True if file1 has the setuid bit set +@@ -3206,7 +3233,7 @@ rb_f_test(argc, argv) + case '-': + if (st1.st_dev == st2.st_dev && st1.st_ino == st2.st_ino) + return Qtrue; +- return Qfalse; ++ return Qfalse; + + case '=': + if (st1.st_mtime == st2.st_mtime) return Qtrue; +@@ -3219,7 +3246,7 @@ rb_f_test(argc, argv) + case '<': + if (st1.st_mtime < st2.st_mtime) return Qtrue; + return Qfalse; +- } ++ } + } + /* unknown command */ + rb_raise(rb_eArgError, "unknown command ?%c", cmd); +@@ -3281,6 +3308,7 @@ rb_stat_init(obj, fname) + return Qnil; + } + ++/* :nodoc: */ + static VALUE + rb_stat_init_copy(copy, orig) + VALUE copy, orig; diff --git a/lang/ruby18-base/patches/patch-bj b/lang/ruby18-base/patches/patch-bj new file mode 100644 index 00000000000..73688952603 --- /dev/null +++ b/lang/ruby18-base/patches/patch-bj @@ -0,0 +1,48 @@ +$NetBSD: patch-bj,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- gc.c.orig 2005-07-27 23:29:11.000000000 +0900 ++++ gc.c +@@ -649,7 +649,7 @@ mark_entry(key, value, lev) + return ST_CONTINUE; + } + +-void ++static void + mark_tbl(tbl, lev) + st_table *tbl; + int lev; +@@ -676,7 +676,7 @@ mark_keyvalue(key, value, lev) + return ST_CONTINUE; + } + +-void ++static void + mark_hash(tbl, lev) + st_table *tbl; + int lev; +@@ -880,13 +880,11 @@ gc_mark_children(ptr, lev) + case NODE_BLOCK_ARG: + case NODE_POSTEXE: + break; +-#ifdef C_ALLOCA + case NODE_ALLOCA: + mark_locations_array((VALUE*)obj->as.node.u1.value, + obj->as.node.u3.cnt); + ptr = (VALUE)obj->as.node.u2.node; + goto again; +-#endif + + default: /* unlisted NODE */ + if (is_pointer_to_heap(obj->as.node.u1.node)) { +@@ -1230,11 +1228,9 @@ obj_free(obj) + RUBY_CRITICAL(free(RANY(obj)->as.node.u1.tbl)); + } + break; +-#ifdef C_ALLOCA + case NODE_ALLOCA: + RUBY_CRITICAL(free(RANY(obj)->as.node.u1.node)); + break; +-#endif + } + return; /* no need to free iv_tbl */ + diff --git a/lang/ruby18-base/patches/patch-bk b/lang/ruby18-base/patches/patch-bk new file mode 100644 index 00000000000..fc22a3641f6 --- /dev/null +++ b/lang/ruby18-base/patches/patch-bk @@ -0,0 +1,29 @@ +$NetBSD: patch-bk,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- intern.h.orig 2005-06-13 01:58:41.000000000 +0900 ++++ intern.h +@@ -164,6 +164,7 @@ void rb_dvar_asgn _((ID, VALUE)); + void rb_dvar_push _((ID, VALUE)); + VALUE *rb_svar _((int)); + VALUE rb_eval_cmd _((VALUE, VALUE, int)); ++int rb_obj_respond_to _((VALUE, ID, int)); + int rb_respond_to _((VALUE, ID)); + void rb_interrupt _((void)); + VALUE rb_apply _((VALUE, ID, VALUE)); +@@ -334,6 +335,7 @@ int rb_is_instance_id _((ID)); + int rb_is_class_id _((ID)); + int rb_is_local_id _((ID)); + int rb_is_junk_id _((ID)); ++int rb_symname_p _((const char*)); + VALUE rb_backref_get _((void)); + void rb_backref_set _((VALUE)); + VALUE rb_lastline_get _((void)); +@@ -449,7 +451,7 @@ VALUE rb_path2class _((const char*)); + void rb_name_class _((VALUE, ID)); + VALUE rb_class_name _((VALUE)); + void rb_autoload _((VALUE, ID, const char*)); +-void rb_autoload_load _((VALUE, ID)); ++VALUE rb_autoload_load _((VALUE, ID)); + VALUE rb_autoload_p _((VALUE, ID)); + void rb_gc_mark_global_tbl _((void)); + VALUE rb_f_trace_var _((int, VALUE*)); diff --git a/lang/ruby18-base/patches/patch-bl b/lang/ruby18-base/patches/patch-bl new file mode 100644 index 00000000000..438f3e13bd3 --- /dev/null +++ b/lang/ruby18-base/patches/patch-bl @@ -0,0 +1,13 @@ +$NetBSD: patch-bl,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/cgi.rb.orig 2005-09-17 23:55:05.000000000 +0900 ++++ lib/cgi.rb +@@ -870,7 +870,7 @@ class CGI + cookies = Hash.new([]) + return cookies unless raw_cookie + +- raw_cookie.split(/[;,] /).each do |pairs| ++ raw_cookie.split(/[;,]\s?/).each do |pairs| + name, values = pairs.split('=',2) + next unless name and values + name = CGI::unescape(name) diff --git a/lang/ruby18-base/patches/patch-bm b/lang/ruby18-base/patches/patch-bm new file mode 100644 index 00000000000..fe320cf49d6 --- /dev/null +++ b/lang/ruby18-base/patches/patch-bm @@ -0,0 +1,70 @@ +$NetBSD: patch-bm,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/fileutils.rb.orig 2005-09-19 10:37:27.000000000 +0900 ++++ lib/fileutils.rb +@@ -118,7 +118,7 @@ module FileUtils + def cd(dir, options = {}, &block) # :yield: dir + fu_check_options options, :verbose + fu_output_message "cd #{dir}" if options[:verbose] +- Dir.chdir(dir, &block) unless options[:noop] ++ Dir.chdir(dir, &block) + fu_output_message 'cd -' if options[:verbose] and block + end + module_function :cd +@@ -1443,6 +1443,8 @@ module FileUtils + end + private_module_function :fu_output_message + ++ METHODS = singleton_methods() - ['private_module_function'] ++ + # + # Returns an Array of method names which have any options. + # +@@ -1505,9 +1507,15 @@ module FileUtils + def #{name}(*args) + super(*fu_update_option(args, :verbose => true)) + end ++ private :#{name} + EOS + end + extend self ++ class << self ++ ::FileUtils::METHODS.each do |m| ++ public m ++ end ++ end + end + + # +@@ -1524,9 +1532,15 @@ module FileUtils + def #{name}(*args) + super(*fu_update_option(args, :noop => true)) + end ++ private :#{name} + EOS + end + extend self ++ class << self ++ ::FileUtils::METHODS.each do |m| ++ public m ++ end ++ end + end + + # +@@ -1544,9 +1558,15 @@ module FileUtils + def #{name}(*args) + super(*fu_update_option(args, :noop => true, :verbose => true)) + end ++ private :#{name} + EOS + end + extend self ++ class << self ++ ::FileUtils::METHODS.each do |m| ++ public m ++ end ++ end + end + + end diff --git a/lang/ruby18-base/patches/patch-bn b/lang/ruby18-base/patches/patch-bn new file mode 100644 index 00000000000..6c4adc49152 --- /dev/null +++ b/lang/ruby18-base/patches/patch-bn @@ -0,0 +1,13 @@ +$NetBSD: patch-bn,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/irb.rb.orig 2005-04-20 04:24:56.000000000 +0900 ++++ lib/irb.rb +@@ -119,7 +119,7 @@ module IRB + end + if @context.auto_indent_mode + unless ltype +- ind = prompt(@context.prompt_i, ltype, indent, line_no).size + ++ ind = prompt(@context.prompt_i, ltype, indent, line_no)[/.*\z/].size + + indent * 2 - p.size + ind += 2 if continue + @context.io.prompt = p + " " * ind if ind > 0 diff --git a/lang/ruby18-base/patches/patch-bo b/lang/ruby18-base/patches/patch-bo new file mode 100644 index 00000000000..bb78a6fa4ec --- /dev/null +++ b/lang/ruby18-base/patches/patch-bo @@ -0,0 +1,19 @@ +$NetBSD: patch-bo,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/optparse.rb.orig 2005-09-21 07:45:06.000000000 +0900 ++++ lib/optparse.rb +@@ -441,12 +441,12 @@ class OptionParser + # + # Raises an exception if argument is not present. + # +- def parse(arg, argv, &error) ++ def parse(arg, argv) + unless arg + raise MissingArgument if argv.empty? + arg = argv.shift + end +- conv_arg(*parse_arg(arg, &error)) ++ conv_arg(*parse_arg(arg) {|*exc| raise(*exc)}) + end + end + diff --git a/lang/ruby18-base/patches/patch-bp b/lang/ruby18-base/patches/patch-bp new file mode 100644 index 00000000000..5bb9ea9d35c --- /dev/null +++ b/lang/ruby18-base/patches/patch-bp @@ -0,0 +1,14 @@ +$NetBSD: patch-bp,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/rdoc/markup/simple_markup.rb.orig 2004-04-24 10:39:45.000000000 +0900 ++++ lib/rdoc/markup/simple_markup.rb +@@ -194,8 +194,7 @@ module SM #:nodoc: + LABEL_LIST_RE = /^( + ( \[.*?\] (?# labeled ) + |\S.*:: (?# note ) +- )(?=\s|$) +- \s* ++ )(?:\s+|$) + )/x + + diff --git a/lang/ruby18-base/patches/patch-bq b/lang/ruby18-base/patches/patch-bq new file mode 100644 index 00000000000..13f5fe73852 --- /dev/null +++ b/lang/ruby18-base/patches/patch-bq @@ -0,0 +1,12 @@ +$NetBSD: patch-bq,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/webrick/cgi.rb.orig 2005-09-16 00:07:05.000000000 +0900 ++++ lib/webrick/cgi.rb +@@ -66,6 +66,7 @@ module WEBrick + req.parse(sock) + req.script_name = (env["SCRIPT_NAME"] || File.expand_path($0)).dup + req.path_info = (env["PATH_INFO"] || "").dup ++ req.query_string = env["QUERY_STRING"] + req.user = env["REMOTE_USER"] + res.request_method = req.request_method + res.request_uri = req.request_uri diff --git a/lang/ruby18-base/patches/patch-br b/lang/ruby18-base/patches/patch-br new file mode 100644 index 00000000000..a965e7e2f51 --- /dev/null +++ b/lang/ruby18-base/patches/patch-br @@ -0,0 +1,13 @@ +$NetBSD: patch-br,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/webrick/config.rb.orig 2004-12-16 18:45:59.000000000 +0900 ++++ lib/webrick/config.rb +@@ -71,7 +71,7 @@ module WEBrick + :HandlerCallback => nil, + :DirectoryCallback => nil, + :FileCallback => nil, +- :UserDir => "public_html", ++ :UserDir => nil, # e.g. "public_html" + :AcceptableLanguages => [] # ["en", "ja", ... ] + } + diff --git a/lang/ruby18-base/patches/patch-bs b/lang/ruby18-base/patches/patch-bs new file mode 100644 index 00000000000..740f03b3503 --- /dev/null +++ b/lang/ruby18-base/patches/patch-bs @@ -0,0 +1,34 @@ +$NetBSD: patch-bs,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/webrick/cookie.rb.orig 2003-07-24 01:51:36.000000000 +0900 ++++ lib/webrick/cookie.rb +@@ -76,5 +76,29 @@ module WEBrick + end + end + ++ def self.parse_set_cookie(str) ++ cookie_elem = str.split(/;/) ++ first_elem = cookie_elem.shift ++ first_elem.strip! ++ key, value = first_elem.split(/=/, 2) ++ cookie = new(key, HTTPUtils.dequote(value)) ++ cookie_elem.each{|pair| ++ pair.strip! ++ key, value = pair.split(/=/, 2) ++ if value ++ value = HTTPUtils.dequote(value.strip) ++ end ++ case key.downcase ++ when "domain" then cookie.domain = value ++ when "path" then cookie.path = value ++ when "expires" then cookie.expires = value ++ when "max-age" then cookie.max_age = Integer(value) ++ when "comment" then cookie.comment = value ++ when "version" then cookie.version = Integer(value) ++ when "secure" then cookie.secure = true ++ end ++ } ++ return cookie ++ end + end + end diff --git a/lang/ruby18-base/patches/patch-bt b/lang/ruby18-base/patches/patch-bt new file mode 100644 index 00000000000..3b6b6fd6e70 --- /dev/null +++ b/lang/ruby18-base/patches/patch-bt @@ -0,0 +1,15 @@ +$NetBSD: patch-bt,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/webrick/httprequest.rb.orig 2005-07-15 08:00:22.000000000 +0900 ++++ lib/webrick/httprequest.rb +@@ -27,8 +27,8 @@ module WEBrick + attr_reader :request_method, :unparsed_uri, :http_version + + # Request-URI +- attr_reader :request_uri, :host, :port, :path, :query_string +- attr_accessor :script_name, :path_info ++ attr_reader :request_uri, :host, :port, :path ++ attr_accessor :script_name, :path_info, :query_string + + # Header and entity body + attr_reader :raw_header, :header, :cookies diff --git a/lang/ruby18-base/patches/patch-bu b/lang/ruby18-base/patches/patch-bu new file mode 100644 index 00000000000..1496344912a --- /dev/null +++ b/lang/ruby18-base/patches/patch-bu @@ -0,0 +1,17 @@ +$NetBSD: patch-bu,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/webrick/httpservlet/cgihandler.rb.orig 2004-07-19 01:15:37.000000000 +0900 ++++ lib/webrick/httpservlet/cgihandler.rb +@@ -85,6 +85,12 @@ module WEBrick + res.status = $1.to_i + header.delete('status') + end ++ if header.has_key?('set-cookie') ++ header['set-cookie'].each{|k| ++ res.cookies << Cookie.parse_set_cookie(k) ++ } ++ header.delete('set-cookie') ++ end + header.each{|key, val| res[key] = val.join(", ") } + rescue => ex + raise HTTPStatus::InternalServerError, ex.message diff --git a/lang/ruby18-base/patches/patch-bv b/lang/ruby18-base/patches/patch-bv new file mode 100644 index 00000000000..9b37eb0ae3a --- /dev/null +++ b/lang/ruby18-base/patches/patch-bv @@ -0,0 +1,22 @@ +$NetBSD: patch-bv,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/xmlrpc/server.rb.orig 2005-09-20 17:51:02.000000000 +0900 ++++ lib/xmlrpc/server.rb +@@ -634,7 +634,7 @@ class Server < WEBrickServlet + require 'webrick' + @server = WEBrick::HTTPServer.new(:Port => port, :BindAddress => host, :MaxClients => maxConnections, + :Logger => WEBrick::Log.new(stdlog)) +- @server.mount("/RPC2", self) ++ @server.mount("/", self) + end + + def serve +@@ -645,7 +645,7 @@ class Server < WEBrickServlet + end + trap(signal) { @server.shutdown } + +- @server.start.join ++ @server.start + end + + def shutdown diff --git a/lang/ruby18-base/patches/patch-bw b/lang/ruby18-base/patches/patch-bw new file mode 100644 index 00000000000..ce8b21e2d1c --- /dev/null +++ b/lang/ruby18-base/patches/patch-bw @@ -0,0 +1,22 @@ +$NetBSD: patch-bw,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/yaml/basenode.rb.orig 2005-09-20 15:46:45.000000000 +0900 ++++ lib/yaml/basenode.rb +@@ -148,7 +148,7 @@ module YAML + if pred + case pred + when /^\.=/ +- pred = $' ++ pred = $' # ' + match_nodes.reject! { |n| + n.last.value != pred + } +@@ -187,7 +187,7 @@ module YAML + v = @value.detect { |k,v| k.transform == key.first } + v[1] if v + elsif Array === @value +- @value.[]( *k ) ++ @value.[]( *key ) + end + end + diff --git a/lang/ruby18-base/patches/patch-bx b/lang/ruby18-base/patches/patch-bx new file mode 100644 index 00000000000..9433abfc851 --- /dev/null +++ b/lang/ruby18-base/patches/patch-bx @@ -0,0 +1,31 @@ +$NetBSD: patch-bx,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/yaml/tag.rb.orig 2005-09-13 12:58:33.000000000 +0900 ++++ lib/yaml/tag.rb +@@ -55,13 +55,14 @@ class Module # :nodoc: all + # in YAML. See YAML::tag_class for detailed information on typing and + # taguris. + def yaml_as( tag, sc = true ) +- class_eval <<-"end;" +- attr_accessor :taguri ++ verbose, $VERBOSE = $VERBOSE, nil ++ class_eval <<-"end;", __FILE__, __LINE__+1 ++ attr_writer :taguri + def taguri + if respond_to? :to_yaml_type + YAML::tagurize( to_yaml_type[1..-1] ) + else +- return @taguri if @taguri ++ return @taguri if defined?(@taguri) and @taguri + tag = #{ tag.dump } + if self.class.yaml_tag_subclasses? and self.class != YAML::tagged_classes[tag] + tag = "\#{ tag }:\#{ self.class.yaml_tag_class_name }" +@@ -72,6 +73,8 @@ class Module # :nodoc: all + def self.yaml_tag_subclasses?; #{ sc ? 'true' : 'false' }; end + end; + YAML::tag_class tag, self ++ ensure ++ $VERBOSE = verbose + end + # Transforms the subclass name into a name suitable for display + # in a subclassed tag. diff --git a/lang/ruby18-base/patches/patch-by b/lang/ruby18-base/patches/patch-by new file mode 100644 index 00000000000..c122b3473fb --- /dev/null +++ b/lang/ruby18-base/patches/patch-by @@ -0,0 +1,38 @@ +$NetBSD: patch-by,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- lib/yaml/types.rb.orig 2005-09-13 12:58:33.000000000 +0900 ++++ lib/yaml/types.rb +@@ -10,6 +10,7 @@ module YAML + class PrivateType + def self.tag_subclasses?; false; end + attr_accessor :type_id, :value ++ verbose, $VERBOSE = $VERBOSE, nil + def initialize( type, val ) + @type_id = type; @value = val + @value.taguri = "x-private:#{ @type_id }" +@@ -17,6 +18,8 @@ module YAML + def to_yaml( opts = {} ) + @value.to_yaml( opts ) + end ++ ensure ++ $VERBOSE = verbose + end + + # +@@ -25,6 +28,7 @@ module YAML + class DomainType + def self.tag_subclasses?; false; end + attr_accessor :domain, :type_id, :value ++ verbose, $VERBOSE = $VERBOSE, nil + def initialize( domain, type, val ) + @domain = domain; @type_id = type; @value = val + @value.taguri = "tag:#{ @domain }:#{ @type_id }" +@@ -32,6 +36,8 @@ module YAML + def to_yaml( opts = {} ) + @value.to_yaml( opts ) + end ++ ensure ++ $VERBOSE = verbose + end + + # diff --git a/lang/ruby18-base/patches/patch-bz b/lang/ruby18-base/patches/patch-bz new file mode 100644 index 00000000000..d1085871423 --- /dev/null +++ b/lang/ruby18-base/patches/patch-bz @@ -0,0 +1,14 @@ +$NetBSD: patch-bz,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- node.h.orig 2005-03-22 17:35:23.000000000 +0900 ++++ node.h +@@ -115,9 +115,7 @@ enum node_type { + NODE_DEFINED, + NODE_NEWLINE, + NODE_POSTEXE, +-#ifdef C_ALLOCA + NODE_ALLOCA, +-#endif + NODE_DMETHOD, + NODE_BMETHOD, + NODE_MEMO, diff --git a/lang/ruby18-base/patches/patch-ca b/lang/ruby18-base/patches/patch-ca new file mode 100644 index 00000000000..36d25bb217f --- /dev/null +++ b/lang/ruby18-base/patches/patch-ca @@ -0,0 +1,39 @@ +$NetBSD: patch-ca,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- object.c.orig 2005-09-08 14:59:33.000000000 +0900 ++++ object.c +@@ -303,6 +303,7 @@ rb_obj_dup(obj) + return dup; + } + ++/* :nodoc: */ + VALUE + rb_obj_init_copy(obj, orig) + VALUE obj, orig; +@@ -1173,7 +1174,7 @@ sym_inspect(sym) + str = rb_str_new(0, strlen(name)+1); + RSTRING(str)->ptr[0] = ':'; + strcpy(RSTRING(str)->ptr+1, name); +- if (rb_is_junk_id(id)) { ++ if (!rb_symname_p(name)) { + str = rb_str_dump(str); + strncpy(RSTRING(str)->ptr, ":\"", 2); + } +@@ -2701,7 +2702,7 @@ Init_Object() + rb_define_method(rb_cModule, "<=", rb_class_inherited_p, 1); + rb_define_method(rb_cModule, ">", rb_mod_gt, 1); + rb_define_method(rb_cModule, ">=", rb_mod_ge, 1); +- rb_define_method(rb_cModule, "initialize_copy", rb_mod_init_copy, 1); ++ rb_define_method(rb_cModule, "initialize_copy", rb_mod_init_copy, 1); /* in class.c */ + rb_define_method(rb_cModule, "to_s", rb_mod_to_s, 0); + rb_define_method(rb_cModule, "included_modules", + rb_mod_included_modules, 0); /* in class.c */ +@@ -2743,7 +2744,7 @@ Init_Object() + rb_define_method(rb_cClass, "allocate", rb_obj_alloc, 0); + rb_define_method(rb_cClass, "new", rb_class_new_instance, -1); + rb_define_method(rb_cClass, "initialize", rb_class_initialize, -1); +- rb_define_method(rb_cClass, "initialize_copy", rb_class_init_copy, 1); ++ rb_define_method(rb_cClass, "initialize_copy", rb_class_init_copy, 1); /* in class.c */ + rb_define_method(rb_cClass, "superclass", rb_class_superclass, 0); + rb_define_alloc_func(rb_cClass, rb_class_s_alloc); + rb_undef_method(rb_cClass, "extend_object"); diff --git a/lang/ruby18-base/patches/patch-cb b/lang/ruby18-base/patches/patch-cb new file mode 100644 index 00000000000..4e83504dd15 --- /dev/null +++ b/lang/ruby18-base/patches/patch-cb @@ -0,0 +1,28 @@ +$NetBSD: patch-cb,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- pack.c.orig 2005-02-28 11:45:19.000000000 +0900 ++++ pack.c +@@ -351,12 +351,12 @@ num2i32(x) + # define EXTEND32(x) + #else + /* invariant in modulo 1<<31 */ +-# define EXTEND32(x) do {if (!natint) {(x) = (I32)(((1<<31)-1-(x))^~(~0<<31))}} while(0) ++# define EXTEND32(x) do {if (!natint) {(x) = (I32)(((1<<31)-1-(x))^~(~0<<31));}} while(0) + #endif + #if SIZEOF_SHORT == SIZE16 + # define EXTEND16(x) + #else +-# define EXTEND16(x) do { if (!natint) {(x) = (short)(((1<<15)-1-(x))^~(~0<<15))}} while(0) ++# define EXTEND16(x) do { if (!natint) {(x) = (short)(((1<<15)-1-(x))^~(~0<<15));}} while(0) + #endif + + #ifdef HAVE_LONG_LONG +@@ -2036,7 +2036,7 @@ uv_to_utf8(buf, uv) + rb_raise(rb_eRangeError, "pack(U): value out of range"); + } + +-static const long utf8_limits[] = { ++static const unsigned long utf8_limits[] = { + 0x0, /* 1 */ + 0x80, /* 2 */ + 0x800, /* 3 */ diff --git a/lang/ruby18-base/patches/patch-cc b/lang/ruby18-base/patches/patch-cc new file mode 100644 index 00000000000..5a4a70e2aef --- /dev/null +++ b/lang/ruby18-base/patches/patch-cc @@ -0,0 +1,372 @@ +$NetBSD: patch-cc,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- parse.y.orig 2005-05-12 01:21:33.000000000 +0900 ++++ parse.y +@@ -13,6 +13,10 @@ + %{ + + #define YYDEBUG 1 ++#define YYERROR_VERBOSE 1 ++#ifndef YYSTACK_USE_ALLOCA ++#define YYSTACK_USE_ALLOCA 0 ++#endif + + #include "ruby.h" + #include "env.h" +@@ -23,6 +27,19 @@ + #include <errno.h> + #include <ctype.h> + ++#define YYMALLOC rb_parser_malloc ++#define YYREALLOC rb_parser_realloc ++#define YYCALLOC rb_parser_calloc ++#define YYFREE rb_parser_free ++#define malloc YYMALLOC ++#define realloc YYREALLOC ++#define calloc YYCALLOC ++#define free YYFREE ++static void *rb_parser_malloc _((size_t)); ++static void *rb_parser_realloc _((void *, size_t)); ++static void *rb_parser_calloc _((size_t, size_t)); ++static void rb_parser_free _((void *)); ++ + #define yyparse ruby_yyparse + #define yylex ruby_yylex + #define yyerror ruby_yyerror +@@ -2450,6 +2467,10 @@ terms : term + none : /* none */ {$$ = 0;} + ; + %% ++#ifdef yystacksize ++#undef YYMALLOC ++#endif ++ + #include "regex.h" + #include "util.h" + +@@ -2528,6 +2549,9 @@ int ruby_in_compile = 0; + int ruby__end__seen; + + static VALUE ruby_debug_lines; ++#ifdef YYMALLOC ++static NODE *parser_heap; ++#endif + + static NODE* + yycompile(f, line) +@@ -2992,7 +3016,7 @@ static void + dispose_string(str) + VALUE str; + { +- free(RSTRING(str)->ptr); ++ xfree(RSTRING(str)->ptr); + rb_gc_force_recycle(str); + } + +@@ -3320,6 +3344,7 @@ yylex() + register int c; + int space_seen = 0; + int cmd_state; ++ enum lex_state last_state; + + if (lex_strterm) { + int token; +@@ -4207,6 +4232,7 @@ yylex() + return '%'; + + case '$': ++ last_state = lex_state; + lex_state = EXPR_END; + newtok(); + c = nextc(); +@@ -4249,7 +4275,13 @@ yylex() + tokadd('$'); + tokadd(c); + c = nextc(); +- tokadd(c); ++ if (is_identchar(c)) { ++ tokadd(c); ++ } ++ else { ++ pushback(c); ++ } ++ gvar: + tokfix(); + yylval.id = rb_intern(tok()); + /* xxx shouldn't check if valid option variable */ +@@ -4259,6 +4291,11 @@ yylex() + case '`': /* $`: string before last match */ + case '\'': /* $': string after last match */ + case '+': /* $+: string matches last paren. */ ++ if (last_state == EXPR_FNAME) { ++ tokadd('$'); ++ tokadd(c); ++ goto gvar; ++ } + yylval.node = NEW_BACK_REF(c); + return tBACK_REF; + +@@ -4271,6 +4308,7 @@ yylex() + c = nextc(); + } while (ISDIGIT(c)); + pushback(c); ++ if (last_state == EXPR_FNAME) goto gvar; + tokfix(); + yylval.node = NEW_NTH_REF(atoi(tok()+1)); + return tNTH_REF; +@@ -4348,8 +4386,8 @@ yylex() + + { + int result = 0; +- enum lex_state last_state = lex_state; + ++ last_state = lex_state; + switch (tok()[0]) { + case '$': + lex_state = EXPR_END; +@@ -5563,11 +5601,11 @@ local_pop() + struct local_vars *local = lvtbl->prev; + + if (lvtbl->tbl) { +- if (!lvtbl->nofree) free(lvtbl->tbl); ++ if (!lvtbl->nofree) xfree(lvtbl->tbl); + else lvtbl->tbl[0] = lvtbl->cnt; + } + ruby_dyna_vars = lvtbl->dyna_vars; +- free(lvtbl); ++ xfree(lvtbl); + lvtbl = local; + } + +@@ -5675,7 +5713,7 @@ top_local_setup() + rb_mem_clear(ruby_scope->local_vars+i, len-i); + } + if (ruby_scope->local_tbl && ruby_scope->local_vars[-1] == 0) { +- free(ruby_scope->local_tbl); ++ xfree(ruby_scope->local_tbl); + } + ruby_scope->local_vars[-1] = 0; + ruby_scope->local_tbl = local_tbl(); +@@ -5726,7 +5764,7 @@ dyna_init(node, pre) + int + ruby_parser_stack_on_heap() + { +-#if defined(YYBISON) && !defined(C_ALLOCA) ++#if defined(YYMALLOC) + return Qfalse; + #else + return Qtrue; +@@ -5736,6 +5774,12 @@ ruby_parser_stack_on_heap() + void + rb_gc_mark_parser() + { ++#if defined YYMALLOC ++ rb_gc_mark((VALUE)parser_heap); ++#elif defined yystacksize ++ if (yyvsp) rb_gc_mark_locations((VALUE *)yyvs, (VALUE *)yyvsp); ++#endif ++ + if (!ruby_in_compile) return; + + rb_gc_mark_maybe((VALUE)yylval.node); +@@ -5837,6 +5881,99 @@ internal_id() + return ID_INTERNAL | (++last_id << ID_SCOPE_SHIFT); + } + ++static int ++is_special_global_name(m) ++ const char *m; ++{ ++ switch (*m) { ++ case '~': case '*': case '$': case '?': case '!': case '@': ++ case '/': case '\\': case ';': case ',': case '.': case '=': ++ case ':': case '<': case '>': case '\"': ++ case '&': case '`': case '\'': case '+': ++ case '0': ++ ++m; ++ break; ++ case '-': ++ ++m; ++ if (is_identchar(*m)) m += mbclen(*m); ++ break; ++ default: ++ if (!ISDIGIT(*m)) return 0; ++ do ++m; while (ISDIGIT(*m)); ++ } ++ return !*m; ++} ++ ++int ++rb_symname_p(name) ++ const char *name; ++{ ++ const char *m = name; ++ int localid = Qfalse; ++ ++ if (!m) return Qfalse; ++ switch (*m) { ++ case '\0': ++ return Qfalse; ++ ++ case '$': ++ if (is_special_global_name(++m)) return Qtrue; ++ goto id; ++ ++ case '@': ++ if (*++m == '@') ++m; ++ goto id; ++ ++ case '<': ++ switch (*++m) { ++ case '<': ++m; break; ++ case '=': if (*++m == '>') ++m; break; ++ default: break; ++ } ++ break; ++ ++ case '>': ++ if (*++m == '>') ++m; ++ break; ++ ++ case '=': ++ switch (*++m) { ++ case '~': ++m; break; ++ case '=': if (*++m == '=') ++m; break; ++ default: return Qfalse; ++ } ++ break; ++ ++ case '*': ++ if (*++m == '*') ++m; ++ break; ++ ++ case '+': case '-': ++ if (*++m == '@') ++m; ++ break; ++ ++ case '|': case '^': case '&': case '/': case '%': case '~': case '`': ++ break; ++ ++ case '[': ++ if (*++m == ']' && *++m == '=') ++m; ++ break; ++ ++ default: ++ localid = !ISUPPER(*m); ++ id: ++ if (*m != '_' && !ISALPHA(*m) && !ismbchar(*m)) return Qfalse; ++ while (is_identchar(*m)) m += mbclen(*m); ++ if (localid) { ++ switch (*m) { ++ case '!': case '?': case '=': ++m; ++ } ++ } ++ break; ++ } ++ return *m ? Qfalse : Qtrue; ++} ++ + ID + rb_intern(name) + const char *name; +@@ -5853,8 +5990,7 @@ rb_intern(name) + switch (*name) { + case '$': + id |= ID_GLOBAL; +- m++; +- if (!is_identchar(*m)) m++; ++ if (is_special_global_name(++m)) goto new_id; + break; + case '@': + if (name[1] == '@') { +@@ -5867,7 +6003,7 @@ rb_intern(name) + m++; + break; + default: +- if (name[0] != '_' && !ISALPHA(name[0]) && !ismbchar(name[0])) { ++ if (name[0] != '_' && ISASCII(name[0]) && !ISALNUM(name[0])) { + /* operators */ + int i; + +@@ -5901,10 +6037,13 @@ rb_intern(name) + } + break; + } +- while (m <= name + last && is_identchar(*m)) { +- m += mbclen(*m); ++ if (!ISDIGIT(*m)) { ++ while (m <= name + last && is_identchar(*m)) { ++ m += mbclen(*m); ++ } + } + if (*m) id = ID_JUNK; ++ new_id: + id |= ++last_id << ID_SCOPE_SHIFT; + id_regist: + name = strdup(name); +@@ -6085,3 +6224,65 @@ rb_lastline_set(val) + special_local_set('_', val); + } + } ++ ++#ifdef YYMALLOC ++#define HEAPCNT(n, size) ((n) * (size) / sizeof(YYSTYPE)) ++#define NEWHEAP(cnt) rb_node_newnode(NODE_ALLOCA, 0, (VALUE)parser_heap, cnt) ++#define ADD2HEAP(n, ptr) ((parser_heap = (n))->u1.node = (ptr)) ++ ++static void * ++rb_parser_malloc(size) ++ size_t size; ++{ ++ NODE *n = NEWHEAP(HEAPCNT(1, size)); ++ ++ return ADD2HEAP(n, xmalloc(size)); ++} ++ ++static void * ++rb_parser_calloc(nelem, size) ++ size_t nelem, size; ++{ ++ NODE *n = NEWHEAP(HEAPCNT(nelem, size)); ++ ++ return ADD2HEAP(n, xcalloc(nelem, size)); ++} ++ ++static void * ++rb_parser_realloc(ptr, size) ++ void *ptr; ++ size_t size; ++{ ++ NODE *n; ++ size_t cnt = HEAPCNT(1, size); ++ ++ if (ptr && (n = parser_heap) != NULL) { ++ do { ++ if (n->u1.node == ptr) { ++ n->u1.node = ptr = xrealloc(ptr, size); ++ if (n->u3.cnt) n->u3.cnt = cnt; ++ return ptr; ++ } ++ } while ((n = n->u2.node) != NULL); ++ } ++ n = NEWHEAP(cnt); ++ return ADD2HEAP(n, xrealloc(ptr, size)); ++} ++ ++static void ++rb_parser_free(ptr) ++ void *ptr; ++{ ++ NODE **prev = &parser_heap, *n; ++ ++ while (n = *prev) { ++ if (n->u1.node == ptr) { ++ *prev = n->u2.node; ++ rb_gc_force_recycle((VALUE)n); ++ break; ++ } ++ prev = &n->u2.node; ++ } ++ xfree(ptr); ++} ++#endif diff --git a/lang/ruby18-base/patches/patch-cd b/lang/ruby18-base/patches/patch-cd new file mode 100644 index 00000000000..8f0a29abaa4 --- /dev/null +++ b/lang/ruby18-base/patches/patch-cd @@ -0,0 +1,12 @@ +$NetBSD: patch-cd,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- regex.c.orig 2005-07-11 08:32:50.000000000 +0900 ++++ regex.c +@@ -1725,6 +1725,7 @@ re_compile_pattern(pattern, size, bufp) + memmove(&b[(unsigned char)b[-1]], &b[(1 << BYTEWIDTH) / BYTEWIDTH], + 2 + EXTRACT_UNSIGNED(&b[(1 << BYTEWIDTH) / BYTEWIDTH])*8); + b += b[-1] + 2 + EXTRACT_UNSIGNED(&b[(unsigned char)b[-1]])*8; ++ had_num_literal = 0; + break; + + case '(': diff --git a/lang/ruby18-base/patches/patch-ce b/lang/ruby18-base/patches/patch-ce new file mode 100644 index 00000000000..23e9616fac6 --- /dev/null +++ b/lang/ruby18-base/patches/patch-ce @@ -0,0 +1,19 @@ +$NetBSD: patch-ce,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- ruby.h.orig 2005-09-14 22:40:58.000000000 +0900 ++++ ruby.h +@@ -170,10 +170,10 @@ VALUE rb_ull2inum _((unsigned LONG_LONG) + #define SYM2ID(x) RSHIFT((long)x,8) + + /* special contants - i.e. non-zero and non-fixnum constants */ +-#define Qfalse 0 +-#define Qtrue 2 +-#define Qnil 4 +-#define Qundef 6 /* undefined value for placeholder */ ++#define Qfalse ((VALUE)0) ++#define Qtrue ((VALUE)2) ++#define Qnil ((VALUE)4) ++#define Qundef ((VALUE)6) /* undefined value for placeholder */ + + #define RTEST(v) (((VALUE)(v) & ~Qnil) != 0) + #define NIL_P(v) ((VALUE)(v) == Qnil) diff --git a/lang/ruby18-base/patches/patch-cf b/lang/ruby18-base/patches/patch-cf new file mode 100644 index 00000000000..0994d3409b3 --- /dev/null +++ b/lang/ruby18-base/patches/patch-cf @@ -0,0 +1,42 @@ +$NetBSD: patch-cf,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- rubysig.h.orig 2004-12-06 17:19:20.000000000 +0900 ++++ rubysig.h +@@ -79,13 +79,12 @@ void rb_trap_restore_mask _((void)); + + RUBY_EXTERN int rb_thread_critical; + void rb_thread_schedule _((void)); +-#if defined(HAVE_SETITIMER) ++#if defined(HAVE_SETITIMER) || defined(_THREAD_SAFE) + RUBY_EXTERN int rb_thread_pending; + # define CHECK_INTS do {\ +- if (!rb_prohibit_interrupt) {\ ++ if (!(rb_prohibit_interrupt || rb_thread_critical)) {\ ++ if (rb_thread_pending) rb_thread_schedule();\ + if (rb_trap_pending) rb_trap_exec();\ +- if (rb_thread_pending && !rb_thread_critical)\ +- rb_thread_schedule();\ + }\ + } while (0) + #else +@@ -93,15 +92,13 @@ RUBY_EXTERN int rb_thread_pending; + RUBY_EXTERN int rb_thread_tick; + #define THREAD_TICK 500 + #define CHECK_INTS do {\ +- if (!rb_prohibit_interrupt) {\ +- if (rb_trap_pending) rb_trap_exec();\ +- if (!rb_thread_critical) {\ +- if (rb_thread_tick-- <= 0) {\ +- rb_thread_tick = THREAD_TICK;\ +- rb_thread_schedule();\ +- }\ ++ if (!(rb_prohibit_interrupt || rb_thread_critical)) {\ ++ if (rb_thread_tick-- <= 0) {\ ++ rb_thread_tick = THREAD_TICK;\ ++ rb_thread_schedule();\ + }\ + }\ ++ if (rb_trap_pending) rb_trap_exec();\ + } while (0) + #endif + diff --git a/lang/ruby18-base/patches/patch-cg b/lang/ruby18-base/patches/patch-cg new file mode 100644 index 00000000000..549a09fc855 --- /dev/null +++ b/lang/ruby18-base/patches/patch-cg @@ -0,0 +1,76 @@ +$NetBSD: patch-cg,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- st.c.orig 2005-02-08 09:50:33.000000000 +0900 ++++ st.c +@@ -218,12 +218,12 @@ st_free_table(table) + ptr = table->bins[i]; + while (ptr != 0) { + next = ptr->next; +- free(ptr); ++ xfree(ptr); + ptr = next; + } + } +- free(table->bins); +- free(table); ++ xfree(table->bins); ++ xfree(table); + } + + #define PTR_NOT_EQUAL(table, ptr, hash_val, key) \ +@@ -342,7 +342,7 @@ rehash(table) + ptr = next; + } + } +- free(table->bins); ++ xfree(table->bins); + table->num_bins = new_num_bins; + table->bins = new_bins; + } +@@ -365,7 +365,7 @@ st_copy(old_table) + Calloc((unsigned)num_bins, sizeof(st_table_entry*)); + + if (new_table->bins == 0) { +- free(new_table); ++ xfree(new_table); + return 0; + } + +@@ -375,8 +375,8 @@ st_copy(old_table) + while (ptr != 0) { + entry = alloc(st_table_entry); + if (entry == 0) { +- free(new_table->bins); +- free(new_table); ++ xfree(new_table->bins); ++ xfree(new_table); + return 0; + } + *entry = *ptr; +@@ -411,7 +411,7 @@ st_delete(table, key, value) + table->num_entries--; + if (value != 0) *value = ptr->record; + *key = ptr->key; +- free(ptr); ++ xfree(ptr); + return 1; + } + +@@ -422,7 +422,7 @@ st_delete(table, key, value) + table->num_entries--; + if (value != 0) *value = tmp->record; + *key = tmp->key; +- free(tmp); ++ xfree(tmp); + return 1; + } + } +@@ -522,7 +522,7 @@ st_foreach(table, func, arg) + last->next = ptr->next; + } + ptr = ptr->next; +- free(tmp); ++ xfree(tmp); + table->num_entries--; + } + } diff --git a/lang/ruby18-base/patches/patch-ch b/lang/ruby18-base/patches/patch-ch new file mode 100644 index 00000000000..efc350b85f7 --- /dev/null +++ b/lang/ruby18-base/patches/patch-ch @@ -0,0 +1,13 @@ +$NetBSD: patch-ch,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- string.c.orig 2005-09-17 23:55:06.000000000 +0900 ++++ string.c +@@ -4189,7 +4189,7 @@ scan_once(str, pat, start) + /* + * Always consume at least one character of the input string + */ +- if (RSTRING(str)->len < END(0)) ++ if (RSTRING(str)->len > END(0)) + *start = END(0)+mbclen2(RSTRING(str)->ptr[END(0)],pat); + else + *start = END(0)+1; diff --git a/lang/ruby18-base/patches/patch-ci b/lang/ruby18-base/patches/patch-ci new file mode 100644 index 00000000000..5501b66f305 --- /dev/null +++ b/lang/ruby18-base/patches/patch-ci @@ -0,0 +1,81 @@ +$NetBSD: patch-ci,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- time.c.orig 2005-01-20 18:34:36.000000000 +0900 ++++ time.c +@@ -109,7 +109,7 @@ time_init(time) + #define NDIV(x,y) (-(-((x)+1)/(y))-1) + #define NMOD(x,y) ((y)-(-((x)+1)%(y))-1) + +-void ++static void + time_overflow_p(secp, usecp) + time_t *secp, *usecp; + { +@@ -1031,6 +1031,7 @@ time_hash(time) + return LONG2FIX(hash); + } + ++/* :nodoc: */ + static VALUE + time_init_copy(copy, time) + VALUE copy, time; +@@ -1259,7 +1260,7 @@ typedef unsigned long unsigned_time_t; + #elif SIZEOF_TIME_T == SIZEOF_INT + typedef unsigned int unsigned_time_t; + #elif SIZEOF_TIME_T == SIZEOF_LONG_LONG +-typedef unsigned long long unsigned_time_t; ++typedef unsigned LONG_LONG unsigned_time_t; + #else + # error cannot find integer type which size is same as time_t. + #endif +@@ -1742,12 +1743,11 @@ time_to_a(time) + #define SMALLBUF 100 + static int + rb_strftime(buf, format, time) +- char ** volatile buf; +- char * volatile format; +- struct tm * volatile time; ++ char **buf; ++ const char *format; ++ struct tm *time; + { +- volatile int size; +- int len, flen; ++ int size, len, flen; + + (*buf)[0] = '\0'; + flen = strlen(format); +@@ -1819,8 +1819,8 @@ time_strftime(time, format) + VALUE time, format; + { + struct time_object *tobj; +- char buffer[SMALLBUF]; +- char *fmt, *buf = buffer; ++ char buffer[SMALLBUF], *buf = buffer; ++ const char *fmt; + long len; + VALUE str; + +@@ -1837,19 +1837,19 @@ time_strftime(time, format) + } + else if (strlen(fmt) < len) { + /* Ruby string may contain \0's. */ +- char *p = fmt, *pe = fmt + len; ++ const char *p = fmt, *pe = fmt + len; + + str = rb_str_new(0, 0); + while (p < pe) { + len = rb_strftime(&buf, p, &tobj->tm); + rb_str_cat(str, buf, len); + p += strlen(p) + 1; +- if (p <= pe) +- rb_str_cat(str, "\0", 1); + if (buf != buffer) { + free(buf); + buf = buffer; + } ++ for (fmt = p; p < pe && !*p; ++p); ++ if (p > fmt) rb_str_cat(str, fmt, p - fmt); + } + return str; + } diff --git a/lang/ruby18-base/patches/patch-cj b/lang/ruby18-base/patches/patch-cj new file mode 100644 index 00000000000..2f6c1664611 --- /dev/null +++ b/lang/ruby18-base/patches/patch-cj @@ -0,0 +1,12 @@ +$NetBSD: patch-cj,v 1.1 2005/11/02 08:56:40 taca Exp $ + +--- util.h.orig 2004-09-21 18:35:28.000000000 +0900 ++++ util.h +@@ -61,6 +61,7 @@ char *ruby_getcwd _((void)); + #define my_getcwd() ruby_getcwd() + + double ruby_strtod _((const char*, char **)); ++#undef strtod + #define strtod(s,e) ruby_strtod(s,e) + + #endif /* UTIL_H */ |