Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F141959765
D4668.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
26 KB
Referenced Files
None
Subscribers
None
D4668.id.diff
View Options
Index: Mk/bsd.ruby.mk
===================================================================
--- Mk/bsd.ruby.mk
+++ Mk/bsd.ruby.mk
@@ -174,14 +174,14 @@
RUBY_RELVERSION= 2.0.0
RUBY_PORTREVISION= 0
RUBY_PORTEPOCH= 1
-RUBY_PATCHLEVEL= 647
+RUBY_PATCHLEVEL= 648
RUBY20= "" # PLIST_SUB helpers
. elif ${RUBY_VER} == 2.1
#
# Ruby 2.1
#
-RUBY_RELVERSION= 2.1.7
+RUBY_RELVERSION= 2.1.8
RUBY_PORTREVISION= 0
RUBY_PORTEPOCH= 1
RUBY_PATCHLEVEL= 0
@@ -191,7 +191,7 @@
#
# Ruby 2.2
#
-RUBY_RELVERSION= 2.2.3
+RUBY_RELVERSION= 2.2.4
RUBY_PORTREVISION= 0
RUBY_PORTEPOCH= 1
RUBY_PATCHLEVEL= 0
Index: lang/ruby20/Makefile
===================================================================
--- lang/ruby20/Makefile
+++ lang/ruby20/Makefile
@@ -15,6 +15,8 @@
LICENSE= BSD2CLAUSE RUBY
LICENSE_COMB= dual
+LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL
+LICENSE_FILE_RUBY= ${WRKSRC}/COPYING
# Using LIB_DEPENDS finds the libffi from gcc which causes problems
BUILD_DEPENDS= libffi>=0:${PORTSDIR}/devel/libffi
@@ -34,20 +36,19 @@
# Keep this, else ruby will fail to load libraries dependent of libpthread.
LIBS+= -lpthread -L${LOCALBASE}/lib
MAKE_ENV= LC_ALL=C
-USE_AUTOTOOLS= autoconf
USE_LDCONFIG= yes
USE_OPENSSL= yes
-USES= cpe execinfo tar:bzip2
+USES= autoreconf cpe execinfo tar:xz
WRKSRC= ${RUBY_WRKSRC}
-NOT_FOR_ARCHS= ia64
-NOT_FOR_ARCHS_REASON_ia64= does not build
-
RUBY_VER= 2.0
USE_RUBY= yes
RUBY_NO_BUILD_DEPENDS= yes
RUBY_NO_RUN_DEPENDS= yes
+NOT_FOR_ARCHS= ia64
+NOT_FOR_ARCHS_REASON_ia64= does not build
+
OPTIONS_DEFINE= CAPIDOCS DEBUG DOCS EXAMPLES RDOC
OPTIONS_DEFAULT= RDOC LIBEDIT
OPTIONS_SINGLE= EDIT
@@ -61,9 +62,8 @@
CAPIDOCS_BUILD_DEPENDS= doxygen>0:${PORTSDIR}/devel/doxygen \
dot:${PORTSDIR}/graphics/graphviz
CAPIDOCS_CONFIGURE_ENABLE= install-capi
-LIBEDIT_BUILD_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit
LIBEDIT_CONFIGURE_ON= --enable-libedit --with-libedit-dir=${LOCALBASE}
-LIBEDIT_RUN_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit
+LIBEDIT_USES= libedit
RDOC_CONFIGURE_ENABLE= install-rdoc
READLINE_BUILD_DEPENDS= readline>=0:${PORTSDIR}/devel/readline
READLINE_CONFIGURE_ON= --disable-libedit --with-readline-dir=${LOCALBASE}
@@ -143,20 +143,20 @@
# Remove modules we don't want
#
.for d in win32ole
- ${RM} -rf ${BUILD_WRKSRC}/ext/${d}
+ @${RM} -rf ${BUILD_WRKSRC}/ext/${d}
.endfor
# We get rake from ports.
.for d in bin/rake doc/rake lib/rake test/rake man/rake.1 lib/rake.rb
- ${RM} -rf ${BUILD_WRKSRC}/${d}
+ @${RM} -rf ${BUILD_WRKSRC}/${d}
.endfor
# We get the gem executable from ports.
- ${RM} ${BUILD_WRKSRC}/bin/gem
+ @${RM} ${BUILD_WRKSRC}/bin/gem
#
# Prepare modules we are wanting to build via external ports
#
.for d in gdbm tk
- ${MV} ${BUILD_WRKSRC}/ext/${d} ${WRKDIR}/
+ @${MV} ${BUILD_WRKSRC}/ext/${d} ${WRKDIR}/
.endfor
post-build:
@@ -171,7 +171,7 @@
@${RB_SET_CONF_VAR} "INSTALL_DATA" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} -m ${SHAREMODE}' : '${INSTALL_DATA}'"
post-build-CAPIDOCS-on:
- ${FIND} ${WRKSRC}/doc -type d -empty -delete
+ @${FIND} ${WRKSRC}/doc -type d -empty -delete
pre-install:
${MKDIR} ${STAGEDIR}${RUBY_SITEARCHLIBDIR}
Index: lang/ruby20/distinfo
===================================================================
--- lang/ruby20/distinfo
+++ lang/ruby20/distinfo
@@ -1,2 +1,2 @@
-SHA256 (ruby/ruby-2.0.0-p647.tar.bz2) = 3c3782e313d1ec3ed06c104eafd133cc54ff5183b991786ece9e957fd6cf1cb9
-SIZE (ruby/ruby-2.0.0-p647.tar.bz2) = 10785285
+SHA256 (ruby/ruby-2.0.0-p648.tar.xz) = 22fe97739110ba9171b13fc4dcd1a92e767f16769de3593ee41ef1283d218402
+SIZE (ruby/ruby-2.0.0-p648.tar.xz) = 8303584
Index: lang/ruby21/Makefile
===================================================================
--- lang/ruby21/Makefile
+++ lang/ruby21/Makefile
@@ -15,6 +15,8 @@
LICENSE= BSD2CLAUSE RUBY
LICENSE_COMB= dual
+LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL
+LICENSE_FILE_RUBY= ${WRKSRC}/COPYING
# Using LIB_DEPENDS finds the libffi from gcc which causes problems
BUILD_DEPENDS= libffi>=0:${PORTSDIR}/devel/libffi
@@ -34,20 +36,19 @@
# Keep this, else ruby will fail to load libraries dependent of libpthread.
LIBS+= -lpthread -L${LOCALBASE}/lib
MAKE_ENV= LC_ALL=C
-USE_AUTOTOOLS= autoconf
USE_LDCONFIG= yes
USE_OPENSSL= yes
-USES= cpe execinfo tar:xz
+USES= autoreconf cpe execinfo tar:xz
WRKSRC= ${RUBY_WRKSRC}
-NOT_FOR_ARCHS= ia64
-NOT_FOR_ARCHS_REASON_ia64= does not build
-
RUBY_VER= 2.1
USE_RUBY= yes
RUBY_NO_BUILD_DEPENDS= yes
RUBY_NO_RUN_DEPENDS= yes
+NOT_FOR_ARCHS= ia64
+NOT_FOR_ARCHS_REASON_ia64= does not build
+
OPTIONS_DEFINE= CAPIDOCS DEBUG DOCS EXAMPLES GMP RDOC
OPTIONS_DEFAULT= RDOC LIBEDIT
OPTIONS_SINGLE= EDIT
@@ -64,9 +65,8 @@
CAPIDOCS_CONFIGURE_ENABLE= install-capi
GMP_CONFIGURE_WITH= gmp
GMP_LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp
-LIBEDIT_BUILD_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit
LIBEDIT_CONFIGURE_ON= --enable-libedit --with-libedit-dir=${LOCALBASE}
-LIBEDIT_RUN_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit
+LIBEDIT_USES= libedit
RDOC_CONFIGURE_ENABLE= install-rdoc
READLINE_BUILD_DEPENDS= readline>=0:${PORTSDIR}/devel/readline
READLINE_CONFIGURE_ON= --disable-libedit --with-readline-dir=${LOCALBASE}
@@ -142,20 +142,20 @@
# Remove modules we don't want
#
.for d in win32ole
- ${RM} -rf ${BUILD_WRKSRC}/ext/${d}
+ @${RM} -rf ${BUILD_WRKSRC}/ext/${d}
.endfor
# We get rake from ports.
.for d in bin/rake doc/rake lib/rake test/rake man/rake.1 lib/rake.rb
- ${RM} -rf ${BUILD_WRKSRC}/${d}
+ @${RM} -rf ${BUILD_WRKSRC}/${d}
.endfor
# We get the gem executable from ports.
- ${RM} ${BUILD_WRKSRC}/bin/gem
+ @${RM} ${BUILD_WRKSRC}/bin/gem
#
# Prepare modules we are wanting to build via external ports
#
.for d in gdbm tk
- ${MV} ${BUILD_WRKSRC}/ext/${d} ${WRKDIR}/
+ @${MV} ${BUILD_WRKSRC}/ext/${d} ${WRKDIR}/
.endfor
post-build:
@@ -170,7 +170,7 @@
@${RB_SET_CONF_VAR} "INSTALL_DATA" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} -m ${SHAREMODE}' : '${INSTALL_DATA}'"
post-build-CAPIDOCS-on:
- ${FIND} ${WRKSRC}/doc -type d -empty -delete
+ @${FIND} ${WRKSRC}/doc -type d -empty -delete
pre-install:
${MKDIR} ${STAGEDIR}${RUBY_SITEARCHLIBDIR}
Index: lang/ruby21/distinfo
===================================================================
--- lang/ruby21/distinfo
+++ lang/ruby21/distinfo
@@ -1,2 +1,2 @@
-SHA256 (ruby/ruby-2.1.7.tar.xz) = 225c067d9820fe52fcffbfb91d5b5243708a0b666b9929bea466e9379eb40ad7
-SIZE (ruby/ruby-2.1.7.tar.xz) = 9371208
+SHA256 (ruby/ruby-2.1.8.tar.xz) = 94eeae3b3e3ac93cfd205e1aaef4c5325227b7656cbb2fc1ee217618145dd19d
+SIZE (ruby/ruby-2.1.8.tar.xz) = 9382672
Index: lang/ruby21/files/patch-ext_openssl_extconf.rb
===================================================================
--- lang/ruby21/files/patch-ext_openssl_extconf.rb
+++ lang/ruby21/files/patch-ext_openssl_extconf.rb
@@ -10,6 +10,6 @@
+have_func("SSLv23_method")
+have_func("SSLv23_server_method")
+have_func("SSLv23_client_method")
- have_func("TLSv1_1_method")
- have_func("TLSv1_1_server_method")
- have_func("TLSv1_1_client_method")
+ have_func("SSLv3_method")
+ have_func("SSLv3_server_method")
+ have_func("SSLv3_client_method")
Index: lang/ruby21/files/patch-ext_readline_extconf.rb
===================================================================
--- lang/ruby21/files/patch-ext_readline_extconf.rb
+++ lang/ruby21/files/patch-ext_readline_extconf.rb
@@ -1,13 +1,5 @@
--- ext/readline/extconf.rb.orig 2014-05-01 11:59:37.000000000 +0000
+++ ext/readline/extconf.rb 2015-10-23 04:05:44.000000000 +0000
-@@ -37,6 +37,7 @@
- case enable_libedit
- when true
- # --enable-libedit
-+ dir_config("libedit")
- unless (readline.have_header("editline/readline.h") ||
- readline.have_header("readline/readline.h")) &&
- have_library("edit", "readline")
@@ -62,7 +63,7 @@ else
end
Index: lang/ruby22/Makefile
===================================================================
--- lang/ruby22/Makefile
+++ lang/ruby22/Makefile
@@ -15,6 +15,8 @@
LICENSE= BSD2CLAUSE RUBY
LICENSE_COMB= dual
+LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL
+LICENSE_FILE_RUBY= ${WRKSRC}/COPYING
# Using LIB_DEPENDS finds the libffi from gcc which causes problems
BUILD_DEPENDS= libffi>=0:${PORTSDIR}/devel/libffi
@@ -34,10 +36,9 @@
# Keep this, else ruby will fail to load libraries dependent of libpthread.
LIBS+= -lpthread -L${LOCALBASE}/lib
MAKE_ENV= LC_ALL=C
-USE_AUTOTOOLS= autoconf
USE_LDCONFIG= yes
USE_OPENSSL= yes
-USES= cpe execinfo tar:xz
+USES= autoreconf cpe execinfo tar:xz
WRKSRC= ${RUBY_WRKSRC}
RUBY_VER= 2.2
@@ -64,9 +65,8 @@
CAPIDOCS_CONFIGURE_ENABLE= install-capi
GMP_CONFIGURE_WITH= gmp
GMP_LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp
-LIBEDIT_BUILD_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit
LIBEDIT_CONFIGURE_ON= --enable-libedit --with-libedit-dir=${LOCALBASE}
-LIBEDIT_RUN_DEPENDS= libedit>=0:${PORTSDIR}/devel/libedit
+LIBEDIT_USES= libedit
RDOC_CONFIGURE_ENABLE= install-rdoc
READLINE_BUILD_DEPENDS= readline>=0:${PORTSDIR}/devel/readline
READLINE_CONFIGURE_ON= --disable-libedit --with-readline-dir=${LOCALBASE}
@@ -142,20 +142,20 @@
# Remove modules we don't want
#
.for d in win32ole
- ${RM} -rf ${BUILD_WRKSRC}/ext/${d}
+ @${RM} -rf ${BUILD_WRKSRC}/ext/${d}
.endfor
# We get rake from ports.
.for d in bin/rake doc/rake lib/rake test/rake man/rake.1 lib/rake.rb
- ${RM} -rf ${BUILD_WRKSRC}/${d}
+ @${RM} -rf ${BUILD_WRKSRC}/${d}
.endfor
# We get the gem executable from ports.
- ${RM} ${BUILD_WRKSRC}/bin/gem
+ @${RM} ${BUILD_WRKSRC}/bin/gem
#
# Prepare modules we are wanting to build via external ports
#
.for d in gdbm tk
- ${MV} ${BUILD_WRKSRC}/ext/${d} ${WRKDIR}/
+ @${MV} ${BUILD_WRKSRC}/ext/${d} ${WRKDIR}/
.endfor
post-build:
@@ -170,7 +170,7 @@
@${RB_SET_CONF_VAR} "INSTALL_DATA" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} -m ${SHAREMODE}' : '${INSTALL_DATA}'"
post-build-CAPIDOCS-on:
- ${FIND} ${WRKSRC}/doc -type d -empty -delete
+ @${FIND} ${WRKSRC}/doc -type d -empty -delete
pre-install:
${MKDIR} ${STAGEDIR}${RUBY_SITEARCHLIBDIR}
Index: lang/ruby22/distinfo
===================================================================
--- lang/ruby22/distinfo
+++ lang/ruby22/distinfo
@@ -1,2 +1,2 @@
-SHA256 (ruby/ruby-2.2.3.tar.xz) = c6ec90e9ed018e6d9a578fc93755d8565839908d5796809e1aecd1798c7ea8a7
-SIZE (ruby/ruby-2.2.3.tar.xz) = 10453204
+SHA256 (ruby/ruby-2.2.4.tar.xz) = d28bff4641e382681c58072ddc244d025ac47ff71dd9426a92fcfc3830d1773c
+SIZE (ruby/ruby-2.2.4.tar.xz) = 10464500
Index: lang/ruby22/files/patch-ext_openssl_extconf.rb
===================================================================
--- lang/ruby22/files/patch-ext_openssl_extconf.rb
+++ /dev/null
@@ -1,15 +0,0 @@
---- ext/openssl/extconf.rb.orig 2015-04-01 22:28:09 UTC
-+++ ext/openssl/extconf.rb
-@@ -100,9 +100,9 @@ have_func("OBJ_NAME_do_all_sorted")
- have_func("SSL_SESSION_get_id")
- have_func("SSL_SESSION_cmp")
- have_func("OPENSSL_cleanse")
--have_func("SSLv2_method")
--have_func("SSLv2_server_method")
--have_func("SSLv2_client_method")
-+have_func("SSLv23_method")
-+have_func("SSLv23_server_method")
-+have_func("SSLv23_client_method")
- have_func("TLSv1_1_method")
- have_func("TLSv1_1_server_method")
- have_func("TLSv1_1_client_method")
Index: lang/ruby22/files/patch-ext_readline_extconf.rb
===================================================================
--- lang/ruby22/files/patch-ext_readline_extconf.rb
+++ lang/ruby22/files/patch-ext_readline_extconf.rb
@@ -1,13 +1,5 @@
--- ext/readline/extconf.rb.orig 2014-05-01 11:59:37.000000000 +0000
+++ ext/readline/extconf.rb 2015-10-23 04:05:44.000000000 +0000
-@@ -37,6 +37,7 @@
- case enable_libedit
- when true
- # --enable-libedit
-+ dir_config("libedit")
- unless (readline.have_header("editline/readline.h") ||
- readline.have_header("readline/readline.h")) &&
- have_library("edit", "readline")
@@ -62,7 +63,7 @@ else
end
Index: lang/ruby22/pkg-plist
===================================================================
--- lang/ruby22/pkg-plist
+++ lang/ruby22/pkg-plist
@@ -875,6 +875,7 @@
%%DOCS%%%%RUBY_DOCDIR%%/NEWS-1.9.3
%%DOCS%%%%RUBY_DOCDIR%%/NEWS-2.0.0
%%DOCS%%%%RUBY_DOCDIR%%/NEWS-2.1.0
+%%DOCS%%%%RUBY_DOCDIR%%/README
%%DOCS%%%%RUBY_DOCDIR%%/README.EXT
%%DOCS%%%%RUBY_DOCDIR%%/README.EXT.ja
%%DOCS%%%%RUBY_DOCDIR%%/README.ja.md
@@ -4297,95 +4298,95 @@
%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/df/dfc/version_8h_source.html
%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/df/dfd/sha2init_8c.html
%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/df/dfd/sha2init_8c_source.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_0228a161d5561e83d5d8aaba27afe366.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_02be784bbaa190c6d4ef47da654d268f.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_0575755d2600c90654166739dcf95752.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_06143c11bbd6ea200a937d89377f0e4b.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_0dd75dbc8f7e48b16a69294335ded17c.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_0e12b1bc32508cedcff3897df86edb49.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_15e8070afaccd2443d0ad4d0bdc3aa3a.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_1a8fa036e7a5425baff157221e7f0678.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_1b208f2bb7de8e600dadc194b6929951.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_1eac1e9e2af023830d8bbbe7dabf7201.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_214c767474c6de9dc4ec4674154f1607.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_227ad6751e7bf28b6fdcdc1357f14b5f.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_22991fa2bb820b11ee90770041238235.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_255cf693428d31ba4404df1c8fca0a4f.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_295dcadc83b2830cd1512c9a2e78dd2e.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_2973e48ba4eac5fee8f4415e511ab1a7.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_2a4568f2aeb29b4a7a7e0abe49beb461.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_2aaf89a7b9f84c1f6330cef46da79024.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_2e569d47efce41b8d79cc41e070f4150.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_2f0764a5bbf70fa7cf868001bf008e21.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_3185d9fe9e224164d9ec8fbe8bba45d8.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_3784fde63147f87b85dee85e9765419d.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_380b7e5f3deff11483000f1294defdef.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_3902469b0c0a5977e5409675a7b46e42.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_3cd68734e62c97dcafde6697f9e81d3e.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_3d8eab95bc8c47f54989d91b2dbaba81.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_3da6b25c14d7e52169cf9a0fdf03bd38.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_3e4b1f83ed27f14f7939f30d6418d8e9.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_414d8cfff5ecd7cc65bbe9971ae6ab17.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_423e65efd39f89698314b741ba8cd081.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_4708ae3813a79332db5319bf3ccef2ed.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_48ae81336cd5a47ae61588b15840cc5a.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_49612868f1c65001bef4c152db0130b5.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_49add4049f8d5b5693c8982a925e6aff.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_4fcb93338823e70acdf4e13815571e52.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_50cb3291388ed3ed6b92e47e6c1c15dc.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_5150ba00f20109e728455e52d59b306d.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_520343561da6e31078660825676fc1cf.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_540ed8970eb158d8334ad01683be1139.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_5593970dab2d5958f5cb3e4223435ff6.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_55f151fd7b7ebc3052362ee4d99f9865.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_568c9ee9c9b7e20bc5977486a7b6c6a3.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_5a1c0fd7c2e6612942d6073162e79784.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_5ba5b7337863f2ecf06377013918e727.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_5cbfff1a56101fff967cb724eddb6e34.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_5d995522455ec2e7534db7486d088fb0.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_60694245fae93046ca34ae1703681d22.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_6339b80ff15e17ba9af23124dc270147.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_64609cd0a2da8a333f46474c706802d6.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_66ec047cb0c5878d4f8503e4bfcf82f0.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_67106c78e920c87d8ed68901cd6e41ca.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_774031fa5903e11e3bf2ceae70b9753d.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_7d5d9a4539915219cd84df55dc000e16.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_86d0ecb3cc61b37c66e19fef1ae447e1.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_87387afe317c728977040d25562a2992.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_890784373f725fc7513c11d452b7b150.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_8b4bf035e47954dfdaada3b8736aa08e.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_8cc3b80094a6fc535700ce329e2f48ce.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_8ead0d7253c5a7a18b923f9558a85fed.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_8f8b3c78421c4b80296948b02c2a871d.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_9341d76f03f82494d515aac019b51e86.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_9365ed6e0512368a3cf1189de4111ae8.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_94a754f1c4c97184e1a662697e2287a2.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_94d22519b57479ff9f8ec128f55c2e40.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_976ee99d51150a755f6eefc679dc58d5.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_9e5d82689fecb6b56694674b211693a0.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_9f0ca0a686c46955c48f11b374e0fffa.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_a18d3bf3d53aee83e293e7e5e30b4e2b.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_aaa8603bc084c4348f70a6bce368e607.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_ac8502ae8f22ab181e39b0bc01ba32d3.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_ad04c1613f5b2c6ffa49b3fc16616fd5.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_ae7d780f3834948e382f39d02f467955.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_b8a7f24dddf40ac61858cd432d8962b5.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_b9c2eca5726936eba9c818655c328e36.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_bf43a9aa4c6547425a546fe1ea898ef5.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_cac21c976ed64d56f2ae7cb15c09d473.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_d01654d6102c9c707d7f7b5e8c5d437d.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_d6721c3d1cd16ef88b207d8d9fdcaa8f.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_dbe7221aa8b4bdfc0b5ddc088d85de56.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_df7cd552b401de3351ad25ca0b44db34.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_e1512c490188098ac84ba3284ec45017.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_e67372c36735cded5cd31eb9b145afad.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_e6fa28fee3b2a0683adb4f6264ffa8f0.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_e9bf0b28c4e282467e9eef7805388825.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_ea29fb8de748d71965d87c89af0fe469.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_f50a1309da1981e72cb8a2158d5b3ae0.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_f7cc488eb898fac402feb17f2034e6f0.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_fb14eed875f476092a93be83bab08d19.html
-%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_fb363f8914ca5b8524de94bc8c4ea1f7.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_00734e4acbca60e82eac962c08453a82.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_02ae6d781fec5faa885a88e1baefc2ad.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_033ef75ca8ad6fe5e1dd2206da85938e.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_05bb8e47872dde2b82daffd506c06530.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_09cedcf13477ddbf319bbfd3d17af536.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_0e3c3982eea36061b325a007422329e4.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_0fb2ca1e1f84b4e491a14cc3d8a68037.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_124a7b29f070a805b64501b842129b41.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_18a4b443e90d71a04280e2a5f56589e7.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_1ac76cef68fa200f03979e445c377cf1.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_1b97ccf6e78cc6cf13439ed45457a032.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_1dcbbbc7ef9eb896cac6f110c934b3dc.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_1e1320cec6793205d5f0aaafb473d1c8.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_1ec104b61b0fc75e5f14b4eeeb0859b1.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_2016aa8f2bd965b9c3c0ef722a9006b6.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_22a3374d806d23e7a4f15d246354400f.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_23551e45a6b90ab6a2d429c6df114fef.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_2465014b29f9edde8125bc434b5d75a5.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_25c8641c04b2cfa467bf3f9e9d4da8ae.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_2664ddbe8175b067a5e4f1da5f4af8fd.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_2a4b7042d289bc00813e50aa18f7ad46.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_2a6be4eaeb59f55f0f4f7ab4272db286.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_2c5a8139a546eff6f0079df1fff1c130.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_35a7b504912026a44b1e7a00bcbfd7ad.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_38a746f16e3873582bbf6e064b184c3b.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_441e90253180d11108edddc4505c0c74.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_4434c68caf698fc5cbbc22a6664e8550.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_49d43ecfeda5bfdd0ab9f8ff8ba16e2d.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_4a5542b64ded7822573acd20971aa43f.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_4db3edf314cffd9e10f2559ea6f25ce8.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_52951e692579ea7c0db03f52b8bf98bb.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_560a02cd7955ab0dfb59aeb5afe2172a.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_5d05ef0c9724c3cfa5a75f89ec31e1f3.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_5f32ef40ab26acef118edd60c4e97cf6.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_61506306f4ffe53f42de69809ea4f090.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_6205fc662bd3a5786c5572a80bc7cc7c.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_640f14f96f0c8d27b859244f4d9077c6.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_666e0b301b59c3c10cd1a75cffad0c58.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_69b208734e4a4d8339f214d128987750.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_6b783f85bb875cd02563eca397b56ce9.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_762fb40d91069cb40afd649401d9bf91.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_7760e84176f2852f0149744177f1e4eb.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_7ac3fd7b0c3fdf4ab26292897dbbbda4.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_7c5817905ee01adb6cd095eac98cdd26.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_7c7691b420d2c79e91306d69a33ca144.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_7caca146255934c6ec1fcf4b8e0d6334.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_7ce729f57625947993a16604d23a0a1b.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_7f18759feddea78518ff86c7a095417c.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_87897644a75ea500b4a4eae08be0fd2a.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_89ad7be81cde8a38f4e1106131325d0b.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_8a2afcd954a475cba8e38a6910c8050e.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_8b719092fbef54f5da6e1f7de20bc521.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_8cab0ed746a3aa2ec343fafe9ce35754.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_8f7689a9073de0a9b12ac61b14c89bd9.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_91239d706855f18f575e596a55838b41.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_9179423ed9f8ea4b1e7daf116c99fcca.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_96bd04a40ccc1256cf36401237ce49a8.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_96f4bab03e3921e08929dace10868e7b.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_9ac85b7a98e77fe9b515ac5cee55c386.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_9bc72580c95af4f0242cd96747978365.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_a0fc336bcbc199281c1cab8168b97208.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_a3b0aa81b2929d9b3cc7b1f4ff875c12.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_a4186047682e7f353bb7317ff4bff430.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_b286853ba083b88b75036aa9d44a9432.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_b5e649ee77b175d3295bb05678682a15.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_bae33bda057b0d11adc95f3cb42a05a4.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_bb91a3788bc89a23feca91f24f51b9b8.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_bc6f117b8259f4861caae0ce3ae146e0.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_bd1ac024f93108061b1fd2de3bf88b35.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_bf4e8e74624c9c1059a54a2ab5e11519.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_bf84d971d0daf95049bd8f739cf348bf.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_c961dd6e0372e6397bd9da5cc447063d.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_caf4f341c378207c9991f180096334a7.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_cbb3ab811da3a915363208446f00a882.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_cc10aa965f2eb96eace964da9d5f6795.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_ce18e2897c516711c94e18aed75d5641.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_cf561fcb6a1e32f3fd005a5fab5c60e3.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_d042f9759304fdfa74b4b07e60210ff7.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_d2504d39a3fc51d378f02b568291278b.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_d9b90f1acdd14bb44b10d82ae889d162.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_da1458a9e72b6a574d5b5c4f03dc5559.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_dc8c6d44f32931a398739e129be4e365.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_e43e80309ab78b24c048a563ca1958cc.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_e5ca44a5cc223e0dd63d3486eb798063.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_e604649e8255304d9318a47653abad44.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_ea49662283bd391444af4efb122ed353.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_ef6cb7ae520fe2f820bf73262c0bc442.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_f7e138256ddfc8adb3fe06aca0e30e47.html
+%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/dir_fdb0a32de512dee23d2402ef0787285f.html
%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/doc.png
%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/doxygen.css
%%CAPIDOCS%%%%RUBY_DOCDIR%%/capi/html/doxygen.png
@@ -17882,6 +17883,7 @@
%%RDOC%%%%RUBY_RIDIR%%/page-NEWS-2_0_0.ri
%%RDOC%%%%RUBY_RIDIR%%/page-NEWS-2_1_0.ri
%%RDOC%%%%RUBY_RIDIR%%/page-NEWS.ri
+%%RDOC%%%%RUBY_RIDIR%%/page-README.ri
%%RDOC%%%%RUBY_RIDIR%%/page-README_EXT.ri
%%RDOC%%%%RUBY_RIDIR%%/page-contributing_rdoc.ri
%%RDOC%%%%RUBY_RIDIR%%/page-contributors_rdoc.ri
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Jan 15, 4:44 AM (5 h, 19 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27644321
Default Alt Text
D4668.id.diff (26 KB)
Attached To
Mode
D4668: Update Ruby to latest version
Attached
Detach File
Event Timeline
Log In to Comment