Fairly simple update to latest ruby 1.9, 2.0, and 2.1 releases. No security issues in these updates, which is nice.
Tested on i386 and amd64. Will be committing in a couple days unless I hear objections. Thanks, Jeremy Index: 1.9/Makefile =================================================================== RCS file: /cvs/ports/lang/ruby/1.9/Makefile,v retrieving revision 1.43 diff -u -p -r1.43 Makefile --- 1.9/Makefile 12 Feb 2014 22:41:43 -0000 1.43 +++ 1.9/Makefile 26 Feb 2014 20:10:35 -0000 @@ -9,7 +9,7 @@ COMMENT-tk = tk interface for ruby COMMENT-ri_docs = ri documentation files for ruby VERSION = 1.9.3 -PATCHLEVEL = 484 +PATCHLEVEL = 545 RUBYLIBREV = 1.9.1 SHARED_LIBS = ruby19 1.1 @@ -22,8 +22,6 @@ PKGNAME-ri_docs = ruby-ri_docs-${VERSION PKG_ARCH-ri_docs = * WANTLIB-ri_docs = # empty -REVISION-main = 0 - PKGSPEC-main = ruby->=1.9,<1.10 CONFIGURE_ARGS = --program-suffix=19 \ @@ -72,6 +70,8 @@ RUN_DEPENDS-dbm = MULTI_PACKAGES+= -tk CONFIGURE_ARGS+= --with-tcl-include=${PREFIX}/include/tcl8.5 \ --with-tk-include=${PREFIX}/include/tk8.5 \ + --with-tcllib=tcl85 \ + --with-tklib=tk85 \ --with-X11-dir=${X11BASE} WANTLIB-tk = X11 c m pthread ruby19 tcl85 tk85 LIB_DEPENDS-tk = tk->=8.5,<8.6:x11/tk/8.5 \ Index: 1.9/distinfo =================================================================== RCS file: /cvs/ports/lang/ruby/1.9/distinfo,v retrieving revision 1.15 diff -u -p -r1.15 distinfo --- 1.9/distinfo 24 Nov 2013 02:24:35 -0000 1.15 +++ 1.9/distinfo 26 Feb 2014 19:49:15 -0000 @@ -1,2 +1,2 @@ -SHA256 (ruby-1.9.3-p484.tar.gz) = 1oS8OlunLNqe8wA594PA+M3DJbrlyHOMe/BVd8vo8x0= -SIZE (ruby-1.9.3-p484.tar.gz) = 12576996 +SHA256 (ruby-1.9.3-p545.tar.gz) = BfsA69N074AEdetAtx68QswYwfYfSIXBFzfzENPSMRE= +SIZE (ruby-1.9.3-p545.tar.gz) = 12582277 Index: 1.9/patches/patch-lib_rubygems_version_rb =================================================================== RCS file: 1.9/patches/patch-lib_rubygems_version_rb diff -N 1.9/patches/patch-lib_rubygems_version_rb --- 1.9/patches/patch-lib_rubygems_version_rb 6 Jan 2014 02:25:33 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,17 +0,0 @@ -$OpenBSD: patch-lib_rubygems_version_rb,v 1.1 2014/01/06 02:25:33 jeremy Exp $ - -Backport fix for CVE-2013-4287 and CVE-2013-4363. - ---- lib/rubygems/version.rb.orig Sun Dec 1 15:40:49 2013 -+++ lib/rubygems/version.rb Sun Dec 1 15:40:51 2013 -@@ -145,8 +145,8 @@ class Gem::Version - - include Comparable - -- VERSION_PATTERN = '[0-9]+(\.[0-9a-zA-Z]+)*' # :nodoc: -- ANCHORED_VERSION_PATTERN = /\A\s*(#{VERSION_PATTERN})*\s*\z/ # :nodoc: -+ VERSION_PATTERN = '[0-9]+(?>\.[0-9a-zA-Z]+)*' # :nodoc: -+ ANCHORED_VERSION_PATTERN = /\A\s*(#{VERSION_PATTERN})?\s*\z/ # :nodoc: - - ## - # A string representation of this Version. Index: 1.9/pkg/PLIST-ri_docs =================================================================== RCS file: /cvs/ports/lang/ruby/1.9/pkg/PLIST-ri_docs,v retrieving revision 1.9 diff -u -p -r1.9 PLIST-ri_docs --- 1.9/pkg/PLIST-ri_docs 17 Jul 2013 15:51:11 -0000 1.9 +++ 1.9/pkg/PLIST-ri_docs 26 Feb 2014 20:03:32 -0000 @@ -12718,6 +12718,7 @@ share/ri/${RUBYLIBREV}/system/Singleton/ share/ri/${RUBYLIBREV}/system/SizedQueue/ share/ri/${RUBYLIBREV}/system/SizedQueue/%3c%3c-i.ri share/ri/${RUBYLIBREV}/system/SizedQueue/cdesc-SizedQueue.ri +share/ri/${RUBYLIBREV}/system/SizedQueue/clear-i.ri share/ri/${RUBYLIBREV}/system/SizedQueue/deq-i.ri share/ri/${RUBYLIBREV}/system/SizedQueue/enq-i.ri share/ri/${RUBYLIBREV}/system/SizedQueue/max%3d-i.ri Index: 2.0/Makefile =================================================================== RCS file: /cvs/ports/lang/ruby/2.0/Makefile,v retrieving revision 1.10 diff -u -p -r1.10 Makefile --- 2.0/Makefile 12 Feb 2014 22:41:43 -0000 1.10 +++ 2.0/Makefile 26 Feb 2014 20:20:55 -0000 @@ -9,7 +9,7 @@ COMMENT-tk = tk interface for ruby COMMENT-ri_docs = ri documentation files for ruby VERSION = 2.0.0 -PATCHLEVEL = 353 +PATCHLEVEL = 451 RUBYLIBREV = 2.0 DISTNAME = ruby-${VERSION}-p${PATCHLEVEL} @@ -68,6 +68,8 @@ RUN_DEPENDS-gdbm = MULTI_PACKAGES+= -tk CONFIGURE_ARGS+= --with-tcl-include=${PREFIX}/include/tcl8.5 \ --with-tk-include=${PREFIX}/include/tk8.5 \ + --with-tcllib=tcl85 \ + --with-tklib=tk85 \ --with-X11-dir=${X11BASE} WANTLIB-tk = X11 c m pthread ruby20 tcl85 tk85 LIB_DEPENDS-tk = tk->=8.5,<8.6:x11/tk/8.5 \ Index: 2.0/distinfo =================================================================== RCS file: /cvs/ports/lang/ruby/2.0/distinfo,v retrieving revision 1.4 diff -u -p -r1.4 distinfo --- 2.0/distinfo 24 Nov 2013 02:25:26 -0000 1.4 +++ 2.0/distinfo 26 Feb 2014 20:21:11 -0000 @@ -1,2 +1,2 @@ -SHA256 (ruby-2.0.0-p353.tar.gz) = Rlr8d9IBtYFbt842YKH1oTH0Qpo/pIPBJs5mkj5HJsw= -SIZE (ruby-2.0.0-p353.tar.gz) = 13572794 +SHA256 (ruby-2.0.0-p451.tar.gz) = 5taQDrQIQFMFg0nP2/Y60UFLao111YtH7YEBCplH5zs= +SIZE (ruby-2.0.0-p451.tar.gz) = 13587580 Index: 2.0/pkg/PLIST-ri_docs =================================================================== RCS file: /cvs/ports/lang/ruby/2.0/pkg/PLIST-ri_docs,v retrieving revision 1.4 diff -u -p -r1.4 PLIST-ri_docs --- 2.0/pkg/PLIST-ri_docs 24 Nov 2013 02:25:26 -0000 1.4 +++ 2.0/pkg/PLIST-ri_docs 26 Feb 2014 20:38:24 -0000 @@ -13478,6 +13478,7 @@ share/ri/${RUBYLIBREV}/system/Singleton/ share/ri/${RUBYLIBREV}/system/SizedQueue/ share/ri/${RUBYLIBREV}/system/SizedQueue/%3c%3c-i.ri share/ri/${RUBYLIBREV}/system/SizedQueue/cdesc-SizedQueue.ri +share/ri/${RUBYLIBREV}/system/SizedQueue/clear-i.ri share/ri/${RUBYLIBREV}/system/SizedQueue/deq-i.ri share/ri/${RUBYLIBREV}/system/SizedQueue/enq-i.ri share/ri/${RUBYLIBREV}/system/SizedQueue/max%3d-i.ri @@ -14009,6 +14010,27 @@ share/ri/${RUBYLIBREV}/system/Syslog/Fac share/ri/${RUBYLIBREV}/system/Syslog/Facility/cdesc-Facility.ri share/ri/${RUBYLIBREV}/system/Syslog/Level/ share/ri/${RUBYLIBREV}/system/Syslog/Level/cdesc-Level.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/ +share/ri/${RUBYLIBREV}/system/Syslog/Logger/Formatter/ +share/ri/${RUBYLIBREV}/system/Syslog/Logger/Formatter/call-i.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/Formatter/cdesc-Formatter.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/Formatter/clean-i.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/Severity/ +share/ri/${RUBYLIBREV}/system/Syslog/Logger/Severity/cdesc-Severity.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/add-i.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/cdesc-Logger.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/debug-i.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/error-i.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/fatal-i.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/formatter-i.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/info-i.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/level-i.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/make_methods-c.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/new-c.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/syslog%3d-c.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/syslog-c.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/unknown-i.ri +share/ri/${RUBYLIBREV}/system/Syslog/Logger/warn-i.ri share/ri/${RUBYLIBREV}/system/Syslog/Macros/ share/ri/${RUBYLIBREV}/system/Syslog/Macros/LOG_MASK-i.ri share/ri/${RUBYLIBREV}/system/Syslog/Macros/LOG_UPTO-i.ri Index: 2.1/Makefile =================================================================== RCS file: /cvs/ports/lang/ruby/2.1/Makefile,v retrieving revision 1.4 diff -u -p -r1.4 Makefile --- 2.1/Makefile 12 Feb 2014 22:41:43 -0000 1.4 +++ 2.1/Makefile 26 Feb 2014 20:39:48 -0000 @@ -8,7 +8,7 @@ COMMENT-gdbm = gdbm interface for ruby COMMENT-tk = tk interface for ruby COMMENT-ri_docs = ri documentation files for ruby -VERSION = 2.1.0 +VERSION = 2.1.1 RUBYLIBREV = 2.1 DISTNAME = ruby-${VERSION} @@ -17,8 +17,6 @@ PKGNAME-main = ruby-${VERSION} PKGNAME-gdbm = ruby21-gdbm-${VERSION} PKGNAME-tk = ruby21-tk-${VERSION} PKGNAME-ri_docs = ruby21-ri_docs-${VERSION} - -REVISION-main = 0 PKG_ARCH-ri_docs = * WANTLIB-ri_docs = # empty Index: 2.1/distinfo =================================================================== RCS file: /cvs/ports/lang/ruby/2.1/distinfo,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 distinfo --- 2.1/distinfo 3 Jan 2014 17:51:52 -0000 1.1.1.1 +++ 2.1/distinfo 26 Feb 2014 20:39:56 -0000 @@ -1,2 +1,2 @@ -SHA256 (ruby-2.1.0.tar.gz) = NTjsH2r5btnesE4JZSdFKBYnJsybo2JdzyNkjfhy0J0= -SIZE (ruby-2.1.0.tar.gz) = 15076389 +SHA256 (ruby-2.1.1.tar.gz) = yEPfMa6I7Un1OTFCsCuan1plV0U4Bf1Imnb7r+roiUE= +SIZE (ruby-2.1.1.tar.gz) = 15092388 Index: 2.1/patches/patch-ext_socket_option_c =================================================================== RCS file: 2.1/patches/patch-ext_socket_option_c diff -N 2.1/patches/patch-ext_socket_option_c --- 2.1/patches/patch-ext_socket_option_c 3 Jan 2014 17:51:52 -0000 1.1.1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,69 +0,0 @@ -$OpenBSD: patch-ext_socket_option_c,v 1.1.1.1 2014/01/03 17:51:52 jeremy Exp $ - -Fix handling of IP_MULTICAST_TTL and IP_MULTICAST_LOOP socket options. - ---- ext/socket/option.c.orig Sun Jun 2 07:24:34 2013 -+++ ext/socket/option.c Thu Jan 2 18:41:30 2014 -@@ -357,7 +357,7 @@ static VALUE - sockopt_s_ipv4_multicast_loop(VALUE klass, VALUE value) - { - #if defined(IPPROTO_IP) && defined(IP_MULTICAST_LOOP) --# ifdef __NetBSD__ -+# if defined(__NetBSD__) || defined(__OpenBSD__) - unsigned char i = NUM2CHR(rb_to_int(value)); - # else - int i = NUM2INT(rb_to_int(value)); -@@ -387,7 +387,7 @@ sockopt_ipv4_multicast_loop(VALUE self) - - #if defined(IPPROTO_IP) && defined(IP_MULTICAST_LOOP) - if (family == AF_INET && level == IPPROTO_IP && optname == IP_MULTICAST_LOOP) { --# ifdef __NetBSD__ -+# if defined(__NetBSD__) || defined(__OpenBSD__) - return sockopt_byte(self); - # else - return sockopt_int(self); -@@ -398,7 +398,7 @@ sockopt_ipv4_multicast_loop(VALUE self) - UNREACHABLE; - } - --#ifdef __NetBSD__ -+#if defined(__NetBSD__) || defined(__OpenBSD__) - # define inspect_ipv4_multicast_loop(a,b,c,d) inspect_byte(a,b,c,d) - #else - # define inspect_ipv4_multicast_loop(a,b,c,d) inspect_int(a,b,c,d) -@@ -420,7 +420,7 @@ static VALUE - sockopt_s_ipv4_multicast_ttl(VALUE klass, VALUE value) - { - #if defined(IPPROTO_IP) && defined(IP_MULTICAST_TTL) --# ifdef __NetBSD__ -+# if defined(__NetBSD__) || defined(__OpenBSD__) - unsigned char i = NUM2CHR(rb_to_int(value)); - # else - int i = NUM2INT(rb_to_int(value)); -@@ -450,7 +450,7 @@ sockopt_ipv4_multicast_ttl(VALUE self) - - #if defined(IPPROTO_IP) && defined(IP_MULTICAST_TTL) - if (family == AF_INET && level == IPPROTO_IP && optname == IP_MULTICAST_TTL) { --# ifdef __NetBSD__ -+# if defined(__NetBSD__) || defined(__OpenBSD__) - return sockopt_byte(self); - # else - return sockopt_int(self); -@@ -461,7 +461,7 @@ sockopt_ipv4_multicast_ttl(VALUE self) - UNREACHABLE; - } - --#ifdef __NetBSD__ -+#if defined(__NetBSD__) || defined(__OpenBSD__) - # define inspect_ipv4_multicast_ttl(a,b,c,d) inspect_byte(a,b,c,d) - #else - # define inspect_ipv4_multicast_ttl(a,b,c,d) inspect_int(a,b,c,d) -@@ -481,7 +481,7 @@ inspect_int(int level, int optname, VALUE data, VALUE - } - } - --#ifdef __NetBSD__ -+#if defined(__NetBSD__) || defined(__OpenBSD__) - static int - inspect_byte(int level, int optname, VALUE data, VALUE ret) - { Index: 2.1/patches/patch-lib_rinda_ring_rb =================================================================== RCS file: 2.1/patches/patch-lib_rinda_ring_rb diff -N 2.1/patches/patch-lib_rinda_ring_rb --- 2.1/patches/patch-lib_rinda_ring_rb 3 Jan 2014 17:51:52 -0000 1.1.1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,16 +0,0 @@ -$OpenBSD: patch-lib_rinda_ring_rb,v 1.1.1.1 2014/01/03 17:51:52 jeremy Exp $ - -Fix Rinda::RingFinger to work on OpenBSD, where IP_MULTICAST_LOOP -socket option takes unsigned char instead of int. - ---- lib/rinda/ring.rb.orig Thu Jan 2 20:09:44 2014 -+++ lib/rinda/ring.rb Thu Jan 2 20:09:52 2014 -@@ -413,7 +413,7 @@ module Rinda - soc = Socket.new(addrinfo.pfamily, addrinfo.socktype, addrinfo.protocol) - - if addrinfo.ipv4_multicast? then -- soc.setsockopt(:IPPROTO_IP, :IP_MULTICAST_LOOP, true) -+ soc.setsockopt(Socket::Option.ipv4_multicast_loop(1)) - soc.setsockopt(:IPPROTO_IP, :IP_MULTICAST_TTL, - [@multicast_hops].pack('c')) - elsif addrinfo.ipv6_multicast? then Index: 2.1/patches/patch-lib_rubygems_rb =================================================================== RCS file: 2.1/patches/patch-lib_rubygems_rb diff -N 2.1/patches/patch-lib_rubygems_rb --- 2.1/patches/patch-lib_rubygems_rb 11 Jan 2014 22:29:31 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,17 +0,0 @@ -$OpenBSD: patch-lib_rubygems_rb,v 1.1 2014/01/11 22:29:31 jeremy Exp $ - -Backport rubygems commit b1bf2e63b69 to make gem extensions directory -not include ruby tiny version. - ---- lib/rubygems.rb.orig Thu Jan 9 19:53:35 2014 -+++ lib/rubygems.rb Thu Jan 9 19:53:44 2014 -@@ -785,8 +785,7 @@ module Gem - # Returns a String containing the API compatibility version of Ruby - - def self.ruby_api_version -- @ruby_api_version ||= -- "#{ConfigMap[:MAJOR]}.#{ConfigMap[:MINOR]}.#{ConfigMap[:TEENY]}" -+ @ruby_api_version ||= RbConfig::CONFIG['ruby_version'].dup - end - - ## Index: 2.1/pkg/PLIST-main =================================================================== RCS file: /cvs/ports/lang/ruby/2.1/pkg/PLIST-main,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 PLIST-main --- 2.1/pkg/PLIST-main 3 Jan 2014 17:51:52 -0000 1.1.1.1 +++ 2.1/pkg/PLIST-main 26 Feb 2014 21:00:15 -0000 @@ -1039,19 +1039,19 @@ lib/ruby/gems/${RUBYLIBREV}/gems/rdoc-4. lib/ruby/gems/${RUBYLIBREV}/gems/rdoc-4.1.0/bin/ lib/ruby/gems/${RUBYLIBREV}/gems/rdoc-4.1.0/bin/rdoc lib/ruby/gems/${RUBYLIBREV}/gems/rdoc-4.1.0/bin/ri -lib/ruby/gems/${RUBYLIBREV}/gems/test-unit-${RUBYLIBREV}.0.0/ -lib/ruby/gems/${RUBYLIBREV}/gems/test-unit-${RUBYLIBREV}.0.0/bin/ -lib/ruby/gems/${RUBYLIBREV}/gems/test-unit-${RUBYLIBREV}.0.0/bin/testrb +lib/ruby/gems/${RUBYLIBREV}/gems/test-unit-${RUBYLIBREV}.1.0/ +lib/ruby/gems/${RUBYLIBREV}/gems/test-unit-${RUBYLIBREV}.1.0/bin/ +lib/ruby/gems/${RUBYLIBREV}/gems/test-unit-${RUBYLIBREV}.1.0/bin/testrb lib/ruby/gems/${RUBYLIBREV}/specifications/ lib/ruby/gems/${RUBYLIBREV}/specifications/default/ -lib/ruby/gems/${RUBYLIBREV}/specifications/default/bigdecimal-1.2.3.gemspec +lib/ruby/gems/${RUBYLIBREV}/specifications/default/bigdecimal-1.2.4.gemspec lib/ruby/gems/${RUBYLIBREV}/specifications/default/io-console-0.4.2.gemspec lib/ruby/gems/${RUBYLIBREV}/specifications/default/json-1.8.1.gemspec lib/ruby/gems/${RUBYLIBREV}/specifications/default/minitest-4.7.5.gemspec -lib/ruby/gems/${RUBYLIBREV}/specifications/default/psych-2.0.2.gemspec +lib/ruby/gems/${RUBYLIBREV}/specifications/default/psych-2.0.3.gemspec lib/ruby/gems/${RUBYLIBREV}/specifications/default/rake-10.1.0.gemspec lib/ruby/gems/${RUBYLIBREV}/specifications/default/rdoc-4.1.0.gemspec -lib/ruby/gems/${RUBYLIBREV}/specifications/default/test-unit-${RUBYLIBREV}.0.0.gemspec +lib/ruby/gems/${RUBYLIBREV}/specifications/default/test-unit-${RUBYLIBREV}.1.0.gemspec lib/ruby/site_ruby/ lib/ruby/site_ruby/${RUBYLIBREV}/ lib/ruby/site_ruby/${RUBYLIBREV}/${SUB}/ Index: 2.1/pkg/PLIST-ri_docs =================================================================== RCS file: /cvs/ports/lang/ruby/2.1/pkg/PLIST-ri_docs,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 PLIST-ri_docs --- 2.1/pkg/PLIST-ri_docs 3 Jan 2014 17:52:17 -0000 1.1.1.1 +++ 2.1/pkg/PLIST-ri_docs 26 Feb 2014 20:59:19 -0000 @@ -2444,6 +2444,7 @@ share/ri/${RUBYLIBREV}/system/Gem/BasicS share/ri/${RUBYLIBREV}/system/Gem/BasicSpecification/name-i.ri share/ri/${RUBYLIBREV}/system/Gem/BasicSpecification/platform-i.ri share/ri/${RUBYLIBREV}/system/Gem/BasicSpecification/require_paths-i.ri +share/ri/${RUBYLIBREV}/system/Gem/BasicSpecification/source_paths-i.ri share/ri/${RUBYLIBREV}/system/Gem/BasicSpecification/stubbed%3f-i.ri share/ri/${RUBYLIBREV}/system/Gem/BasicSpecification/to_spec-i.ri share/ri/${RUBYLIBREV}/system/Gem/BasicSpecification/version-i.ri @@ -3301,6 +3302,7 @@ share/ri/${RUBYLIBREV}/system/Gem/Reques share/ri/${RUBYLIBREV}/system/Gem/RequestSet/install_into-i.ri share/ri/${RUBYLIBREV}/system/Gem/RequestSet/load_gemdeps-i.ri share/ri/${RUBYLIBREV}/system/Gem/RequestSet/new-c.ri +share/ri/${RUBYLIBREV}/system/Gem/RequestSet/remote-i.ri share/ri/${RUBYLIBREV}/system/Gem/RequestSet/resolve-i.ri share/ri/${RUBYLIBREV}/system/Gem/RequestSet/resolve_current-i.ri share/ri/${RUBYLIBREV}/system/Gem/RequestSet/soft_missing-i.ri @@ -3355,6 +3357,7 @@ share/ri/${RUBYLIBREV}/system/Gem/Resolv share/ri/${RUBYLIBREV}/system/Gem/Resolver/ComposedSet/find_all-i.ri share/ri/${RUBYLIBREV}/system/Gem/Resolver/ComposedSet/new-c.ri share/ri/${RUBYLIBREV}/system/Gem/Resolver/ComposedSet/prefetch-i.ri +share/ri/${RUBYLIBREV}/system/Gem/Resolver/ComposedSet/remote%3d-i.ri share/ri/${RUBYLIBREV}/system/Gem/Resolver/Conflict/ share/ri/${RUBYLIBREV}/system/Gem/Resolver/Conflict/activated-i.ri share/ri/${RUBYLIBREV}/system/Gem/Resolver/Conflict/cdesc-Conflict.ri @@ -3428,6 +3431,7 @@ share/ri/${RUBYLIBREV}/system/Gem/Resolv share/ri/${RUBYLIBREV}/system/Gem/Resolver/Set/cdesc-Set.ri share/ri/${RUBYLIBREV}/system/Gem/Resolver/Set/find_all-i.ri share/ri/${RUBYLIBREV}/system/Gem/Resolver/Set/prefetch-i.ri +share/ri/${RUBYLIBREV}/system/Gem/Resolver/Set/remote-i.ri share/ri/${RUBYLIBREV}/system/Gem/Resolver/SpecSpecification/ share/ri/${RUBYLIBREV}/system/Gem/Resolver/SpecSpecification/cdesc-SpecSpecification.ri share/ri/${RUBYLIBREV}/system/Gem/Resolver/SpecSpecification/dependencies-i.ri @@ -3558,6 +3562,7 @@ share/ri/${RUBYLIBREV}/system/Gem/Source share/ri/${RUBYLIBREV}/system/Gem/Source/Git/need_submodules-i.ri share/ri/${RUBYLIBREV}/system/Gem/Source/Git/new-c.ri share/ri/${RUBYLIBREV}/system/Gem/Source/Git/reference-i.ri +share/ri/${RUBYLIBREV}/system/Gem/Source/Git/remote-i.ri share/ri/${RUBYLIBREV}/system/Gem/Source/Git/repository-i.ri share/ri/${RUBYLIBREV}/system/Gem/Source/Git/root_dir-i.ri share/ri/${RUBYLIBREV}/system/Gem/Source/Git/specs-i.ri @@ -3860,6 +3865,7 @@ share/ri/${RUBYLIBREV}/system/Gem/TestCa share/ri/${RUBYLIBREV}/system/Gem/TestCase/StaticSet/find_spec-i.ri share/ri/${RUBYLIBREV}/system/Gem/TestCase/StaticSet/load_spec-i.ri share/ri/${RUBYLIBREV}/system/Gem/TestCase/StaticSet/new-c.ri +share/ri/${RUBYLIBREV}/system/Gem/TestCase/StaticSet/remote-i.ri share/ri/${RUBYLIBREV}/system/Gem/TestCase/add_to_fetcher-i.ri share/ri/${RUBYLIBREV}/system/Gem/TestCase/all_spec_names-i.ri share/ri/${RUBYLIBREV}/system/Gem/TestCase/assert_activate-i.ri @@ -3873,6 +3879,7 @@ share/ri/${RUBYLIBREV}/system/Gem/TestCa share/ri/${RUBYLIBREV}/system/Gem/TestCase/create_tmpdir-i.ri share/ri/${RUBYLIBREV}/system/Gem/TestCase/dep-i.ri share/ri/${RUBYLIBREV}/system/Gem/TestCase/dependency_request-i.ri +share/ri/${RUBYLIBREV}/system/Gem/TestCase/enable_shared-i.ri share/ri/${RUBYLIBREV}/system/Gem/TestCase/git_gem-i.ri share/ri/${RUBYLIBREV}/system/Gem/TestCase/have_git%3f-i.ri share/ri/${RUBYLIBREV}/system/Gem/TestCase/install_default_gems-i.ri @@ -13335,6 +13342,7 @@ share/ri/${RUBYLIBREV}/system/Singleton/ share/ri/${RUBYLIBREV}/system/SizedQueue/ share/ri/${RUBYLIBREV}/system/SizedQueue/%3c%3c-i.ri share/ri/${RUBYLIBREV}/system/SizedQueue/cdesc-SizedQueue.ri +share/ri/${RUBYLIBREV}/system/SizedQueue/clear-i.ri share/ri/${RUBYLIBREV}/system/SizedQueue/deq-i.ri share/ri/${RUBYLIBREV}/system/SizedQueue/enq-i.ri share/ri/${RUBYLIBREV}/system/SizedQueue/max%3d-i.ri