On 10/09 06:26, Jeremy Evans wrote:
> There were many changes in this update, more than you would expect in a
> tiny release, including:
> 
> 243 issues fixed
> Many many encoding/M17n issues resolved.
> Improved transcoding support
> Fiber fixes
> Ripper support
> Faster pathname implementation
> Faster date/time implementations
> Improved call performance for magic globals ($~ and $_)
> Block/proc creation and dispatch performance improvements
> Moved build to Maven from Ant. See BUILDING.md.
> Updated RubyGems to version 2.1.5
> Moved several standard libraries out as default gems
> 
> Portswise, the main change is the change from the ant to maven based
> build system.  Unfortunately, with this new build system, maven
> downloads almost 200 separate .jar files totalling over 30M during build.
> The only way to get it to build with systrace is to run it first without
> systrace, and then tar up the maven repository with the cached .jar
> files, use that tarball as a separate distfile, and run maven in offline
> mode.
> 
> I actually had a diff that did that, but after talking to upstream, it
> turns out that there is a much easier way.  There's actually no reason
> to use a src tarball, since that just involves compiling java source
> files to java bytecode files.  We can just use the java bytecode files
> directly via the bin tarball.  So this diff switches the port to use
> the bin tarball.
> 
> The bin tarball doesn't include jruby-launcher, so that is used as a
> separate distfile.  jffi still needs to be recompiled with ant, since
> that uses native code, so that part hasn't changed.  Our patched
> jnr-posix library is included by overriding the jnr/posix directory inside
> the lib/jruby.jar file.
> 
> The bin tarball doesn't include the tests, so remove the test code and
> set NO_TEST.

Here's a new diff file.  This uses both the -src and -bin distfiles,
with the -src distfile being used for just the tests (which it doesn't
pass cleanly and has never passed cleanly).  Personally, I don't think
it's a good idea, but I'm not strongly opposed to it.

Only other change from previous diff is this includes a new patch that
fixes a bug in rubygems where it wouldn't install ruby gem ports that
had files starting with '.'.  This is necessary in order for it to
install the gems needed to run the regress tests.

Still planning on committing this in a couple days if I don't hear
objections.

Thanks,
Jeremy

Index: Makefile
===================================================================
RCS file: /cvs/ports/lang/jruby/Makefile,v
retrieving revision 1.38
diff -u -p -r1.38 Makefile
--- Makefile    22 Aug 2013 21:35:57 -0000      1.38
+++ Makefile    10 Oct 2013 16:34:08 -0000
@@ -4,25 +4,27 @@ SHARED_ONLY = Yes
 
 COMMENT =      pure-Java implementation of the Ruby language
 
-V =            1.7.4
-REVISION =     0
-DISTNAME =     jruby-src-${V}
+V =            1.7.5
+DISTNAME =     jruby-bin-${V}
 PKGNAME =      jruby-${V}
 CATEGORIES =   lang lang/ruby
 DISTFILES =    ${DISTNAME}.tar.gz \
+               jruby-src-${V}.tar.gz \
                jnr-jffi-1.2.2-0-g4c196bb.tar.gz:0 \
-               jnr-posix.20130822.tar.gz:1
+               jnr-posix.20130822.tar.gz:1 \
+               ${JRUBY_LAUNCHER_GEM}:2
 
 HOMEPAGE =     http://www.jruby.org/
 
 MAINTAINER =   Jeremy Evans <[email protected]>
 
-# CPL/GPLv2/LGPLv2.1/GPLv3/LGPLv3
+# EPLv1/GPLv2/LGPLv2.1/Ruby/MIT/BSD/Apache/CPL
 PERMIT_PACKAGE_CDROM = Yes
 
 MASTER_SITES = http://jruby.org.s3.amazonaws.com/downloads/${V}/
 MASTER_SITES0 =        http://www.distfiles.nl/
 MASTER_SITES1 =        http://spacehopper.org/mirrors/
+MASTER_SITES2 =        ${MASTER_SITE_RUBYGEMS}
 
 MODULES =      java
 MODJAVA_VER =  1.7+
@@ -31,7 +33,9 @@ USE_GMAKE =   Yes
 
 WANTLIB =      c m pthread stdc++
 
-BUILD_DEPENDS =        devel/apache-ant \
+BUILD_DEPENDS =        archivers/unzip \
+               archivers/zip \
+               devel/apache-ant \
                shells/bash \
                ${RUN_DEPENDS}
 RUN_DEPENDS =  java/javaPathHelper
@@ -46,56 +50,46 @@ ANT_CMD =   ${SETENV} ${MAKE_ENV} PATH=${J
 JFFI_HOME =    ${WRKDIST}/jffi
 JFFI_ARCH =    ${MACHINE_ARCH:S/amd64/x86_64/}-OpenBSD
 FFI_ARCH =     ${JFFI_ARCH:L}
-RAKE_V =       10.0.3
-JRUBY_LAUNCHER_V =     1.0.15
-SUBST_VARS =   JRUBY_HOME JFFI_ARCH FFI_ARCH RAKE_V JRUBY_LAUNCHER_V
+RAKE_V =               10.1.0
+JRUBY_LAUNCHER_GEM = jruby-launcher-1.0.19-java.gem
+SUBST_VARS =   JRUBY_HOME JFFI_ARCH FFI_ARCH RAKE_V
 
 post-extract:
        mv ${WRKDIR}/jnr-jffi* ${JFFI_HOME}
-       mv ${WRKDIR}/jnr-posix.jar ${WRKSRC}/build_lib/
+       cd ${WRKSRC} && unzip ${WRKDIR}/jnr-posix.jar
        # Unpack the jruby-launcher gem, since it needs to be patched
-       cp 
${WRKSRC}/build_lib/jruby-launcher-${JRUBY_LAUNCHER_V}-java{,-orig}.gem
-       cd ${WRKSRC} && mkdir jruby-launcher && tar xf \
-               build_lib/jruby-launcher-${JRUBY_LAUNCHER_V}-java.gem \
-               && cd jruby-launcher && tar zxf ../data.tar.gz
+       cd ${WRKSRC} && mkdir jruby-launcher \
+               && cd jruby-launcher && tar zxf ../../data.tar.gz \
+               && rm -f ../../data.tar.gz
 
-pre-configure:
+do-configure:
        ${SUBST_CMD} ${WRKSRC}/jruby-launcher/jrubyexe.cpp \
                ${WRKSRC}/jruby-launcher/unixlauncher.cpp
-       # Rebuild the jruby-launcher gem
-       cd ${WRKSRC}/jruby-launcher && find . -type f \! -name '*.orig'  -print 
| \
-               pax -wz -s '/^\.\///' -f ../data.tar.gz
-       cd ${WRKSRC} && tar cf \
-               build_lib/jruby-launcher-${JRUBY_LAUNCHER_V}-java.gem \
-               data.tar.gz metadata.gz
+       cd ${WRKSRC}/jruby-launcher/ && ${SET_ENV} ${MAKE_ENV} \
+               ../bin/jruby extconf.rb
 
 do-build:
-       cd ${JFFI_HOME} && ${ANT_CMD} jar test && \
-               cp dist/jffi-*-OpenBSD.jar ${WRKDIST}/build_lib
-       cd ${WRKSRC} && ${ANT_CMD}
-
-post-build:
-       ${SUBST_CMD} ${WRKSRC}/bin/jruby
-       cd ${WRKSRC}/lib/native && rm -r !(${JFFI_ARCH}*)
+       cd ${WRKSRC} && ${LOCALBASE}/bin/zip -r lib/jruby.jar jnr/posix/
+       cd ${JFFI_HOME} && ${ANT_CMD} jar
+       rm -rf ${WRKSRC}/lib/jni
+       mkdir -p ${WRKSRC}/lib/jni/${JFFI_ARCH}
+       cp ${JFFI_HOME}/build/jni/libjffi-1.2.so \
+               ${WRKSRC}/lib/jni/${JFFI_ARCH}
        cd ${WRKSRC}/lib/ruby/shared/ffi/platform && \
-         rm -r !(${FFI_ARCH}|*.ffi)
+               rm -r !(${FFI_ARCH}|*.ffi)
+       cd ${WRKSRC}/jruby-launcher/ && gmake && mv jruby ../bin
 
 do-install:
        ln -s ${TRUEPREFIX}/jruby/bin/jruby ${PREFIX}/bin/jruby
        ${INSTALL_DATA_DIR} ${JRUBY_HOME}
        ${INSTALL_DATA_DIR} ${JRUBY_HOME}/bin
-       for file in ast gem jgem jirb jirb_swing jruby jrubyc rdoc ri testrb; \
+       for file in ast gem jgem jirb jirb_swing jruby rake rdoc ri testrb; \
          do ${INSTALL_SCRIPT} ${WRKBUILD}/bin/$$file ${JRUBY_HOME}/bin/$$file; 
\
        done
        ${INSTALL_DATA_DIR} ${JRUBY_HOME}/lib
        cd ${WRKBUILD}/lib && tar -cf - * | \
                tar -C ${JRUBY_HOME}/lib -xf -
        mkdir -p ${JRUBY_HOME}/lib/ruby/{1.8,1.9,2.0}/site_ruby
-       ${SET_ENV} ${MAKE_ENV} PATH=${JRUBY_HOME}/bin:$$PATH HOME=${WRKBUILD} \
-               make=${LOCALBASE}/bin/gmake ${PREFIX}/jruby/bin/jruby \
-               ${PREFIX}/jruby/bin/gem install --local --no-rdoc --no-ri \
-               ${WRKBUILD}/build_lib/rake-${RAKE_V}.gem \
-               
${WRKBUILD}/build_lib/jruby-launcher-${JRUBY_LAUNCHER_V}-java.gem 
        find ${JRUBY_HOME}/lib -name '*.orig' -print0 | xargs -0r rm
        find ${JRUBY_HOME}/lib -name '*.beforesubst' -print0 | xargs -0r rm
        mv ${JRUBY_HOME}/lib/ruby/gems/{shared,1.8}
@@ -103,17 +97,12 @@ do-install:
        chown -R ${SHAREOWN}:${SHAREGRP} ${JRUBY_HOME}/lib
 
 ANT_TEST_CMD = ${SETENV} ${MAKE_ENV} HOME=${WRKBUILD} \
-                               PATH=${JAVA_HOME}/bin:${PATH} \
-                               ANT_OPTS="-Xms512m -Xmx512m" \
-                               ${LOCALBASE}/bin/ant
-# Expected test failures:
-#   4 Failures in JRubyTestSuite
-#   1 Failure in MainTestSuite
-#   1 Failure in MRITestSuite
-# spec task disabled by default as it needs network access to download
-# the latest specs.
+                       PATH=${JAVA_HOME}/bin:${PATH} \
+                       ANT_OPTS="-Xms512m -Xmx512m" \
+                       ${LOCALBASE}/bin/ant
+TEST_DEPENDS = devel/ruby-rspec/rspec,jruby
+# Tests run: 363, Failures: 7, Errors: 11, Skipped: 0
 do-test:
        -cd ${WRKSRC} && ${ANT_TEST_CMD} test
-       #cd ${WRKSRC} && ${ANT_TEST_CMD} spec
 
 .include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /cvs/ports/lang/jruby/distinfo,v
retrieving revision 1.20
diff -u -p -r1.20 distinfo
--- distinfo    22 Aug 2013 21:35:57 -0000      1.20
+++ distinfo    10 Oct 2013 15:34:54 -0000
@@ -1,6 +1,10 @@
 SHA256 (jnr-jffi-1.2.2-0-g4c196bb.tar.gz) = 
xK/m48Z/YA+fg4yFJqcRxceFnT0F98y255Ju9eSE7b0=
 SHA256 (jnr-posix.20130822.tar.gz) = 
kXV0idWCYw/iRsDSwJdvAL3IjU9L/gEvuD9b9Rt2UYk=
-SHA256 (jruby-src-1.7.4.tar.gz) = iNvRAwNpHd5kM/FLSXR1i53ggj+kNpAbSsuqibbhDSc=
+SHA256 (jruby-bin-1.7.5.tar.gz) = nr0ILPnylpfHblA+ALedMOPpuHBxr7iCPDuLAz9fVyM=
+SHA256 (jruby-launcher-1.0.19-java.gem) = 
Hgd9U6dYh1HV85FrIy5WUoy0nehO8sQD74QRhhJuqWI=
+SHA256 (jruby-src-1.7.5.tar.gz) = Gy+IFyovumWbBczP/yyvb9zVtKpWKZIhnpkk6M0xRFk=
 SIZE (jnr-jffi-1.2.2-0-g4c196bb.tar.gz) = 1759433
 SIZE (jnr-posix.20130822.tar.gz) = 141316
-SIZE (jruby-src-1.7.4.tar.gz) = 26544216
+SIZE (jruby-bin-1.7.5.tar.gz) = 19778892
+SIZE (jruby-launcher-1.0.19-java.gem) = 55296
+SIZE (jruby-src-1.7.5.tar.gz) = 12326503
Index: patches/patch-build_xml
===================================================================
RCS file: patches/patch-build_xml
diff -N patches/patch-build_xml
--- patches/patch-build_xml     17 May 2013 20:14:49 -0000      1.7
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,17 +0,0 @@
-$OpenBSD: patch-build_xml,v 1.7 2013/05/17 20:14:49 jeremy Exp $
-
-Don't install the jruby launcher when running the regress specs,
-as it fails due to a make error and it isn't necessary for the
-regress tests.
-
---- build.xml.orig     Thu May 16 11:51:15 2013
-+++ build.xml  Thu May 16 13:21:37 2013
-@@ -718,7 +718,7 @@ other than ASM, which is rewritten to avoid conflicts.
-         </emma>
-     </target>
- 
--    <target name="install-gems" 
depends="install-dev-gems,install-jruby-launcher-gem"/>
-+    <target name="install-gems" depends="install-dev-gems"/>
- 
-     <condition property="dev.gems.installed">
-         <uptodate>
Index: patches/patch-default_build_properties
===================================================================
RCS file: patches/patch-default_build_properties
diff -N patches/patch-default_build_properties
--- patches/patch-default_build_properties      17 May 2013 20:14:49 -0000      
1.3
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,19 +0,0 @@
-$OpenBSD: patch-default_build_properties,v 1.3 2013/05/17 20:14:49 jeremy Exp $
-
-Reduce amount of memory used when launching jruby.  It doesn't
-require 1G, and without this patch you can't build JRuby on a
-system with only 1G of memory.
-
---- default.build.properties.orig      Thu May 16 11:51:15 2013
-+++ default.build.properties   Thu May 16 13:22:26 2013
-@@ -61,8 +61,8 @@ html.test.results.dir=${test.results.dir}/html
- test.coverage.results.dir=${test.results.dir}/coverage
- javac.version=1.6
- jruby.compile.memory=512M
--jruby.launch.memory=1024M
--jruby.test.memory=1024M
-+jruby.launch.memory=512M
-+jruby.test.memory=512M
- jruby.test.memory.permgen=512M
- jruby.test.jvm=java
- rake.args=
Index: patches/patch-jffi_build_xml
===================================================================
RCS file: patches/patch-jffi_build_xml
diff -N patches/patch-jffi_build_xml
--- patches/patch-jffi_build_xml        19 Mar 2013 23:43:06 -0000      1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,23 +0,0 @@
-$OpenBSD: patch-jffi_build_xml,v 1.1 2013/03/19 23:43:06 jeremy Exp $
---- jffi/build.xml.orig        Tue May 22 09:31:41 2012
-+++ jffi/build.xml     Tue May 22 09:32:18 2012
-@@ -54,8 +54,8 @@
-     <property name="complete.jar" value="${dist.dir}/jffi-complete.jar"/>
-     <property name="build.native.dir" location="${build.dir}/jni"/>
-     <property name="src.native.dir" location="jni"/>
--    <property name="ant.build.javac.target" value="1.5"/>
--    <property name="ant.build.javac.source" value="1.5"/>
-+    <property name="ant.build.javac.target" value="1.7"/>
-+    <property name="ant.build.javac.source" value="1.7"/>
-     <property name="ant.build.javac.includeantruntime" value="false"/>
- 
-     <mkdir dir="${build.native.dir}"/>
-@@ -245,7 +245,7 @@
- 
- 
-   <target name="-generate-version" 
depends="-init,-init-vars,-generate-version-source">
--    <javac target="1.5" destdir="${build.classes.dir}" 
srcdir="${build.dir}/java" includeantruntime="false"/>
-+    <javac target="1.7" destdir="${build.classes.dir}" 
srcdir="${build.dir}/java" includeantruntime="false"/>
-   </target>
- 
-   <target name="-generate-native-headers" 
depends="-init-vars,-generate-version,-compile-java">
Index: patches/patch-lib_ruby_shared_rubygems_package_rb
===================================================================
RCS file: patches/patch-lib_ruby_shared_rubygems_package_rb
diff -N patches/patch-lib_ruby_shared_rubygems_package_rb
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-lib_ruby_shared_rubygems_package_rb   10 Oct 2013 17:42:38 
-0000
@@ -0,0 +1,23 @@
+$OpenBSD$
+
+Fix for rubygems not installing gem files starting with ".". rubygems
+bug #680.
+
+--- lib/ruby/shared/rubygems/package.rb.orig   Sat Oct  5 13:58:22 2013
++++ lib/ruby/shared/rubygems/package.rb        Thu Oct 10 10:42:10 2013
+@@ -339,13 +339,9 @@ EOM
+   def extract_tar_gz io, destination_dir, pattern = "*" # :nodoc:
+     open_tar_gz io do |tar|
+       tar.each do |entry|
+-        # Some entries start with "./" which fnmatch does not like, see github
+-        # issue #644
+-        full_name = entry.full_name.sub %r%\A\./%, ''
++        next unless File.fnmatch pattern, entry.full_name, File::FNM_DOTMATCH
+ 
+-        next unless File.fnmatch pattern, full_name
+-
+-        destination = install_location full_name, destination_dir
++        destination = install_location entry.full_name, destination_dir
+ 
+         FileUtils.rm_rf destination
+ 
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/lang/jruby/pkg/PLIST,v
retrieving revision 1.18
diff -u -p -r1.18 PLIST
--- pkg/PLIST   17 May 2013 20:14:49 -0000      1.18
+++ pkg/PLIST   9 Oct 2013 23:29:27 -0000
@@ -1,4 +1,4 @@
-@comment $OpenBSD: PLIST,v 1.18 2013/05/17 20:14:49 jeremy Exp $
+@comment $OpenBSD$
 bin/jruby
 jruby/
 jruby/bin/
@@ -8,19 +8,17 @@ jruby/bin/jgem
 jruby/bin/jirb
 jruby/bin/jirb_swing
 @bin jruby/bin/jruby
-jruby/bin/jrubyc
 jruby/bin/rake
 jruby/bin/rdoc
 jruby/bin/ri
 jruby/bin/testrb
 jruby/lib/
+jruby/lib/jni/
+jruby/lib/jni/${JFFI_ARCH}/
+jruby/lib/jni/${JFFI_ARCH}/libjffi-1.2.so
 jruby/lib/jruby.jar
-jruby/lib/native/
-jruby/lib/native/${JFFI_ARCH}/
-jruby/lib/native/${JFFI_ARCH}/libjffi-1.2.so
 jruby/lib/ruby/
 jruby/lib/ruby/1.8/
-jruby/lib/ruby/1.8/.document
 jruby/lib/ruby/1.8/English.rb
 jruby/lib/ruby/1.8/Env.rb
 jruby/lib/ruby/1.8/README
@@ -36,7 +34,6 @@ jruby/lib/ruby/1.8/bigdecimal/util.rb
 jruby/lib/ruby/1.8/cgi/
 jruby/lib/ruby/1.8/cgi-lib.rb
 jruby/lib/ruby/1.8/cgi.rb
-jruby/lib/ruby/1.8/cgi/.document
 jruby/lib/ruby/1.8/cgi/session/
 jruby/lib/ruby/1.8/cgi/session.rb
 jruby/lib/ruby/1.8/cgi/session/pstore.rb
@@ -151,17 +148,6 @@ jruby/lib/ruby/1.8/net/telnet.rb
 jruby/lib/ruby/1.8/observer.rb
 jruby/lib/ruby/1.8/open-uri.rb
 jruby/lib/ruby/1.8/open3.rb
-jruby/lib/ruby/1.8/openssl/
-jruby/lib/ruby/1.8/openssl/bn.rb
-jruby/lib/ruby/1.8/openssl/buffering.rb
-jruby/lib/ruby/1.8/openssl/cipher.rb
-jruby/lib/ruby/1.8/openssl/config.rb
-jruby/lib/ruby/1.8/openssl/digest.rb
-jruby/lib/ruby/1.8/openssl/pkcs7.rb
-jruby/lib/ruby/1.8/openssl/ssl-internal.rb
-jruby/lib/ruby/1.8/openssl/ssl.rb
-jruby/lib/ruby/1.8/openssl/x509-internal.rb
-jruby/lib/ruby/1.8/openssl/x509.rb
 jruby/lib/ruby/1.8/optparse/
 jruby/lib/ruby/1.8/optparse.rb
 jruby/lib/ruby/1.8/optparse/date.rb
@@ -206,7 +192,6 @@ jruby/lib/ruby/1.8/rdoc/generators/templ
 jruby/lib/ruby/1.8/rdoc/generators/template/xml/xml.rb
 jruby/lib/ruby/1.8/rdoc/generators/xml_generator.rb
 jruby/lib/ruby/1.8/rdoc/markup/
-jruby/lib/ruby/1.8/rdoc/markup/.document
 jruby/lib/ruby/1.8/rdoc/markup/sample/
 jruby/lib/ruby/1.8/rdoc/markup/sample/rdoc2latex.rb
 jruby/lib/ruby/1.8/rdoc/markup/sample/sample.rb
@@ -591,7 +576,6 @@ jruby/lib/ruby/1.8/wsdl/xmlSchema/simple
 jruby/lib/ruby/1.8/wsdl/xmlSchema/unique.rb
 jruby/lib/ruby/1.8/wsdl/xmlSchema/xsd2ruby.rb
 jruby/lib/ruby/1.8/xmlrpc/
-jruby/lib/ruby/1.8/xmlrpc/.document
 jruby/lib/ruby/1.8/xmlrpc/README.txt
 jruby/lib/ruby/1.8/xmlrpc/base64.rb
 jruby/lib/ruby/1.8/xmlrpc/client.rb
@@ -711,6 +695,7 @@ jruby/lib/ruby/1.9/expect.rb
 jruby/lib/ruby/1.9/fileutils.rb
 jruby/lib/ruby/1.9/find.rb
 jruby/lib/ruby/1.9/forwardable.rb
+jruby/lib/ruby/1.9/gauntlet_rdoc.rb
 jruby/lib/ruby/1.9/getoptlong.rb
 jruby/lib/ruby/1.9/gserver.rb
 jruby/lib/ruby/1.9/io/
@@ -810,7 +795,6 @@ jruby/lib/ruby/1.9/minitest/unit.rb
 jruby/lib/ruby/1.9/monitor.rb
 jruby/lib/ruby/1.9/mutex_m.rb
 jruby/lib/ruby/1.9/net/
-jruby/lib/ruby/1.9/net/.document
 jruby/lib/ruby/1.9/net/ftp.rb
 jruby/lib/ruby/1.9/net/http.rb
 jruby/lib/ruby/1.9/net/https.rb
@@ -822,16 +806,6 @@ jruby/lib/ruby/1.9/net/telnet.rb
 jruby/lib/ruby/1.9/observer.rb
 jruby/lib/ruby/1.9/open-uri.rb
 jruby/lib/ruby/1.9/open3.rb
-jruby/lib/ruby/1.9/openssl/
-jruby/lib/ruby/1.9/openssl/bn.rb
-jruby/lib/ruby/1.9/openssl/buffering.rb
-jruby/lib/ruby/1.9/openssl/cipher.rb
-jruby/lib/ruby/1.9/openssl/config.rb
-jruby/lib/ruby/1.9/openssl/digest.rb
-jruby/lib/ruby/1.9/openssl/ssl-internal.rb
-jruby/lib/ruby/1.9/openssl/ssl.rb
-jruby/lib/ruby/1.9/openssl/x509-internal.rb
-jruby/lib/ruby/1.9/openssl/x509.rb
 jruby/lib/ruby/1.9/optparse/
 jruby/lib/ruby/1.9/optparse.rb
 jruby/lib/ruby/1.9/optparse/date.rb
@@ -853,7 +827,7 @@ jruby/lib/ruby/1.9/rake/
 jruby/lib/ruby/1.9/rake.rb
 jruby/lib/ruby/1.9/rake/alt_system.rb
 jruby/lib/ruby/1.9/rake/application.rb
-jruby/lib/ruby/1.9/rake/classic_namespace.rb
+jruby/lib/ruby/1.9/rake/backtrace.rb
 jruby/lib/ruby/1.9/rake/clean.rb
 jruby/lib/ruby/1.9/rake/cloneable.rb
 jruby/lib/ruby/1.9/rake/contrib/
@@ -879,14 +853,16 @@ jruby/lib/ruby/1.9/rake/file_utils_ext.r
 jruby/lib/ruby/1.9/rake/gempackagetask.rb
 jruby/lib/ruby/1.9/rake/invocation_chain.rb
 jruby/lib/ruby/1.9/rake/invocation_exception_mixin.rb
-jruby/lib/ruby/1.9/rake/lib/
-jruby/lib/ruby/1.9/rake/lib/project.rake
+jruby/lib/ruby/1.9/rake/linked_list.rb
 jruby/lib/ruby/1.9/rake/loaders/
 jruby/lib/ruby/1.9/rake/loaders/makefile.rb
 jruby/lib/ruby/1.9/rake/multi_task.rb
 jruby/lib/ruby/1.9/rake/name_space.rb
 jruby/lib/ruby/1.9/rake/packagetask.rb
 jruby/lib/ruby/1.9/rake/pathmap.rb
+jruby/lib/ruby/1.9/rake/phony.rb
+jruby/lib/ruby/1.9/rake/private_reader.rb
+jruby/lib/ruby/1.9/rake/promise.rb
 jruby/lib/ruby/1.9/rake/pseudo_status.rb
 jruby/lib/ruby/1.9/rake/rake_module.rb
 jruby/lib/ruby/1.9/rake/rake_test_loader.rb
@@ -894,17 +870,20 @@ jruby/lib/ruby/1.9/rake/rdoctask.rb
 jruby/lib/ruby/1.9/rake/ruby182_test_unit_fix.rb
 jruby/lib/ruby/1.9/rake/rule_recursion_overflow_error.rb
 jruby/lib/ruby/1.9/rake/runtest.rb
+jruby/lib/ruby/1.9/rake/scope.rb
 jruby/lib/ruby/1.9/rake/task.rb
 jruby/lib/ruby/1.9/rake/task_argument_error.rb
 jruby/lib/ruby/1.9/rake/task_arguments.rb
 jruby/lib/ruby/1.9/rake/task_manager.rb
 jruby/lib/ruby/1.9/rake/tasklib.rb
 jruby/lib/ruby/1.9/rake/testtask.rb
+jruby/lib/ruby/1.9/rake/thread_history_display.rb
+jruby/lib/ruby/1.9/rake/thread_pool.rb
+jruby/lib/ruby/1.9/rake/trace_output.rb
 jruby/lib/ruby/1.9/rake/version.rb
 jruby/lib/ruby/1.9/rake/win32.rb
 jruby/lib/ruby/1.9/rational.rb
 jruby/lib/ruby/1.9/rbconfig/
-jruby/lib/ruby/1.9/rbconfig/.document
 jruby/lib/ruby/1.9/rbconfig/datadir.rb
 jruby/lib/ruby/1.9/rbconfig/obsolete.rb
 jruby/lib/ruby/1.9/rdoc/
@@ -916,22 +895,43 @@ jruby/lib/ruby/1.9/rdoc/attr.rb
 jruby/lib/ruby/1.9/rdoc/class_module.rb
 jruby/lib/ruby/1.9/rdoc/code_object.rb
 jruby/lib/ruby/1.9/rdoc/code_objects.rb
+jruby/lib/ruby/1.9/rdoc/comment.rb
 jruby/lib/ruby/1.9/rdoc/constant.rb
+jruby/lib/ruby/1.9/rdoc/context/
 jruby/lib/ruby/1.9/rdoc/context.rb
+jruby/lib/ruby/1.9/rdoc/context/section.rb
 jruby/lib/ruby/1.9/rdoc/cross_reference.rb
 jruby/lib/ruby/1.9/rdoc/encoding.rb
+jruby/lib/ruby/1.9/rdoc/erb_partial.rb
 jruby/lib/ruby/1.9/rdoc/erbio.rb
+jruby/lib/ruby/1.9/rdoc/extend.rb
 jruby/lib/ruby/1.9/rdoc/generator/
 jruby/lib/ruby/1.9/rdoc/generator.rb
 jruby/lib/ruby/1.9/rdoc/generator/darkfish.rb
+jruby/lib/ruby/1.9/rdoc/generator/json_index.rb
 jruby/lib/ruby/1.9/rdoc/generator/markup.rb
 jruby/lib/ruby/1.9/rdoc/generator/ri.rb
 jruby/lib/ruby/1.9/rdoc/generator/template/
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/
-jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/.document
-jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/classpage.rhtml
-jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/filepage.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_footer.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_head.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_sidebar_classes.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_sidebar_extends.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_sidebar_in_files.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_sidebar_includes.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_sidebar_installed.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_sidebar_methods.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_sidebar_navigation.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_sidebar_pages.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_sidebar_parent.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_sidebar_search.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_sidebar_sections.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/_sidebar_table_of_contents.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/class.rhtml
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/add.png
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/arrow_up.png
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/brick.png
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/brick_link.png
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/bug.png
@@ -939,6 +939,7 @@ jruby/lib/ruby/1.9/rdoc/generator/templa
 
jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/bullet_toggle_minus.png
 
jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/bullet_toggle_plus.png
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/date.png
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/delete.png
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/find.png
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/loadingAnimation.gif
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/macFFBgHack.png
@@ -948,7 +949,9 @@ jruby/lib/ruby/1.9/rdoc/generator/templa
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/page_white_width.png
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/plugin.png
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/ruby.png
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/tag_blue.png
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/tag_green.png
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/transparent.png
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/wrench.png
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/wrench_orange.png
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/images/zoom.png
@@ -956,20 +959,41 @@ jruby/lib/ruby/1.9/rdoc/generator/templa
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/js/
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/js/darkfish.js
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/js/jquery.js
-jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/js/quicksearch.js
-jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/js/thickbox-compressed.js
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/js/search.js
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/page.rhtml
 jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/rdoc.css
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/servlet_not_found.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/servlet_root.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/darkfish/table_of_contents.rhtml
+jruby/lib/ruby/1.9/rdoc/generator/template/json_index/
+jruby/lib/ruby/1.9/rdoc/generator/template/json_index/js/
+jruby/lib/ruby/1.9/rdoc/generator/template/json_index/js/navigation.js
+jruby/lib/ruby/1.9/rdoc/generator/template/json_index/js/searcher.js
 jruby/lib/ruby/1.9/rdoc/ghost_method.rb
 jruby/lib/ruby/1.9/rdoc/include.rb
 jruby/lib/ruby/1.9/rdoc/known_classes.rb
+jruby/lib/ruby/1.9/rdoc/markdown/
+jruby/lib/ruby/1.9/rdoc/markdown.kpeg
+jruby/lib/ruby/1.9/rdoc/markdown.rb
+jruby/lib/ruby/1.9/rdoc/markdown/entities.rb
+jruby/lib/ruby/1.9/rdoc/markdown/literals_1_8.kpeg
+jruby/lib/ruby/1.9/rdoc/markdown/literals_1_8.rb
+jruby/lib/ruby/1.9/rdoc/markdown/literals_1_9.kpeg
+jruby/lib/ruby/1.9/rdoc/markdown/literals_1_9.rb
 jruby/lib/ruby/1.9/rdoc/markup/
 jruby/lib/ruby/1.9/rdoc/markup.rb
+jruby/lib/ruby/1.9/rdoc/markup/attr_changer.rb
+jruby/lib/ruby/1.9/rdoc/markup/attr_span.rb
 jruby/lib/ruby/1.9/rdoc/markup/attribute_manager.rb
+jruby/lib/ruby/1.9/rdoc/markup/attributes.rb
 jruby/lib/ruby/1.9/rdoc/markup/blank_line.rb
+jruby/lib/ruby/1.9/rdoc/markup/block_quote.rb
 jruby/lib/ruby/1.9/rdoc/markup/document.rb
 jruby/lib/ruby/1.9/rdoc/markup/formatter.rb
 jruby/lib/ruby/1.9/rdoc/markup/formatter_test_case.rb
+jruby/lib/ruby/1.9/rdoc/markup/hard_break.rb
 jruby/lib/ruby/1.9/rdoc/markup/heading.rb
+jruby/lib/ruby/1.9/rdoc/markup/include.rb
 jruby/lib/ruby/1.9/rdoc/markup/indented_paragraph.rb
 jruby/lib/ruby/1.9/rdoc/markup/inline.rb
 jruby/lib/ruby/1.9/rdoc/markup/list.rb
@@ -979,12 +1003,18 @@ jruby/lib/ruby/1.9/rdoc/markup/parser.rb
 jruby/lib/ruby/1.9/rdoc/markup/pre_process.rb
 jruby/lib/ruby/1.9/rdoc/markup/raw.rb
 jruby/lib/ruby/1.9/rdoc/markup/rule.rb
+jruby/lib/ruby/1.9/rdoc/markup/special.rb
 jruby/lib/ruby/1.9/rdoc/markup/text_formatter_test_case.rb
 jruby/lib/ruby/1.9/rdoc/markup/to_ansi.rb
 jruby/lib/ruby/1.9/rdoc/markup/to_bs.rb
 jruby/lib/ruby/1.9/rdoc/markup/to_html.rb
 jruby/lib/ruby/1.9/rdoc/markup/to_html_crossref.rb
+jruby/lib/ruby/1.9/rdoc/markup/to_html_snippet.rb
+jruby/lib/ruby/1.9/rdoc/markup/to_joined_paragraph.rb
+jruby/lib/ruby/1.9/rdoc/markup/to_label.rb
+jruby/lib/ruby/1.9/rdoc/markup/to_markdown.rb
 jruby/lib/ruby/1.9/rdoc/markup/to_rdoc.rb
+jruby/lib/ruby/1.9/rdoc/markup/to_table_of_contents.rb
 jruby/lib/ruby/1.9/rdoc/markup/to_test.rb
 jruby/lib/ruby/1.9/rdoc/markup/to_tt_only.rb
 jruby/lib/ruby/1.9/rdoc/markup/verbatim.rb
@@ -996,9 +1026,20 @@ jruby/lib/ruby/1.9/rdoc/options.rb
 jruby/lib/ruby/1.9/rdoc/parser/
 jruby/lib/ruby/1.9/rdoc/parser.rb
 jruby/lib/ruby/1.9/rdoc/parser/c.rb
+jruby/lib/ruby/1.9/rdoc/parser/changelog.rb
+jruby/lib/ruby/1.9/rdoc/parser/markdown.rb
+jruby/lib/ruby/1.9/rdoc/parser/rd.rb
 jruby/lib/ruby/1.9/rdoc/parser/ruby.rb
 jruby/lib/ruby/1.9/rdoc/parser/ruby_tools.rb
 jruby/lib/ruby/1.9/rdoc/parser/simple.rb
+jruby/lib/ruby/1.9/rdoc/parser/text.rb
+jruby/lib/ruby/1.9/rdoc/rd/
+jruby/lib/ruby/1.9/rdoc/rd.rb
+jruby/lib/ruby/1.9/rdoc/rd/block_parser.rb
+jruby/lib/ruby/1.9/rdoc/rd/block_parser.ry
+jruby/lib/ruby/1.9/rdoc/rd/inline.rb
+jruby/lib/ruby/1.9/rdoc/rd/inline_parser.rb
+jruby/lib/ruby/1.9/rdoc/rd/inline_parser.ry
 jruby/lib/ruby/1.9/rdoc/rdoc.rb
 jruby/lib/ruby/1.9/rdoc/require.rb
 jruby/lib/ruby/1.9/rdoc/ri/
@@ -1010,15 +1051,19 @@ jruby/lib/ruby/1.9/rdoc/ri/store.rb
 jruby/lib/ruby/1.9/rdoc/ruby_lex.rb
 jruby/lib/ruby/1.9/rdoc/ruby_token.rb
 jruby/lib/ruby/1.9/rdoc/rubygems_hook.rb
+jruby/lib/ruby/1.9/rdoc/servlet.rb
 jruby/lib/ruby/1.9/rdoc/single_class.rb
 jruby/lib/ruby/1.9/rdoc/stats/
 jruby/lib/ruby/1.9/rdoc/stats.rb
 jruby/lib/ruby/1.9/rdoc/stats/normal.rb
 jruby/lib/ruby/1.9/rdoc/stats/quiet.rb
 jruby/lib/ruby/1.9/rdoc/stats/verbose.rb
+jruby/lib/ruby/1.9/rdoc/store.rb
 jruby/lib/ruby/1.9/rdoc/task.rb
+jruby/lib/ruby/1.9/rdoc/test_case.rb
 jruby/lib/ruby/1.9/rdoc/text.rb
 jruby/lib/ruby/1.9/rdoc/token_stream.rb
+jruby/lib/ruby/1.9/rdoc/tom_doc.rb
 jruby/lib/ruby/1.9/rdoc/top_level.rb
 jruby/lib/ruby/1.9/resolv-replace.rb
 jruby/lib/ruby/1.9/resolv.rb
@@ -1286,7 +1331,6 @@ jruby/lib/ruby/2.0/irb/init.rb
 jruby/lib/ruby/2.0/irb/input-method.rb
 jruby/lib/ruby/2.0/irb/inspector.rb
 jruby/lib/ruby/2.0/irb/lc/
-jruby/lib/ruby/2.0/irb/lc/.document
 jruby/lib/ruby/2.0/irb/lc/error.rb
 jruby/lib/ruby/2.0/irb/lc/help-message
 jruby/lib/ruby/2.0/irb/lc/ja/
@@ -1310,7 +1354,6 @@ jruby/lib/ruby/2.0/matrix.rb
 jruby/lib/ruby/2.0/matrix/eigenvalue_decomposition.rb
 jruby/lib/ruby/2.0/matrix/lup_decomposition.rb
 jruby/lib/ruby/2.0/minitest/
-jruby/lib/ruby/2.0/minitest/.document
 jruby/lib/ruby/2.0/minitest/README.txt
 jruby/lib/ruby/2.0/minitest/autorun.rb
 jruby/lib/ruby/2.0/minitest/benchmark.rb
@@ -1403,7 +1446,6 @@ jruby/lib/ruby/2.0/rake/gempackagetask.r
 jruby/lib/ruby/2.0/rake/invocation_chain.rb
 jruby/lib/ruby/2.0/rake/invocation_exception_mixin.rb
 jruby/lib/ruby/2.0/rake/lib/
-jruby/lib/ruby/2.0/rake/lib/.document
 jruby/lib/ruby/2.0/rake/lib/project.rake
 jruby/lib/ruby/2.0/rake/loaders/
 jruby/lib/ruby/2.0/rake/loaders/makefile.rb
@@ -1433,7 +1475,6 @@ jruby/lib/ruby/2.0/rake/trace_output.rb
 jruby/lib/ruby/2.0/rake/version.rb
 jruby/lib/ruby/2.0/rake/win32.rb
 jruby/lib/ruby/2.0/rbconfig/
-jruby/lib/ruby/2.0/rbconfig/.document
 jruby/lib/ruby/2.0/rbconfig/datadir.rb
 jruby/lib/ruby/2.0/rbconfig/obsolete.rb
 jruby/lib/ruby/2.0/rdoc/
@@ -1463,7 +1504,6 @@ jruby/lib/ruby/2.0/rdoc/generator/markup
 jruby/lib/ruby/2.0/rdoc/generator/ri.rb
 jruby/lib/ruby/2.0/rdoc/generator/template/
 jruby/lib/ruby/2.0/rdoc/generator/template/darkfish/
-jruby/lib/ruby/2.0/rdoc/generator/template/darkfish/.document
 jruby/lib/ruby/2.0/rdoc/generator/template/darkfish/_footer.rhtml
 jruby/lib/ruby/2.0/rdoc/generator/template/darkfish/_head.rhtml
 jruby/lib/ruby/2.0/rdoc/generator/template/darkfish/_sidebar_VCS_info.rhtml
@@ -1517,7 +1557,6 @@ jruby/lib/ruby/2.0/rdoc/generator/templa
 jruby/lib/ruby/2.0/rdoc/generator/template/darkfish/servlet_root.rhtml
 jruby/lib/ruby/2.0/rdoc/generator/template/darkfish/table_of_contents.rhtml
 jruby/lib/ruby/2.0/rdoc/generator/template/json_index/
-jruby/lib/ruby/2.0/rdoc/generator/template/json_index/.document
 jruby/lib/ruby/2.0/rdoc/generator/template/json_index/js/
 jruby/lib/ruby/2.0/rdoc/generator/template/json_index/js/navigation.js
 jruby/lib/ruby/2.0/rdoc/generator/template/json_index/js/searcher.js
@@ -1798,81 +1837,10 @@ jruby/lib/ruby/2.0/yaml/store.rb
 jruby/lib/ruby/gems/
 jruby/lib/ruby/gems/1.8/
 jruby/lib/ruby/gems/1.8/cache/
-jruby/lib/ruby/gems/1.8/cache/jruby-launcher-${JRUBY_LAUNCHER_V}-java.gem
 jruby/lib/ruby/gems/1.8/cache/rake-${RAKE_V}.gem
 jruby/lib/ruby/gems/1.8/doc/
 jruby/lib/ruby/gems/1.8/gems/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/.dep.inc
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/COPYING
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/Makefile
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/README.txt
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/Rakefile
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/argnames.h
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/argparser.cpp
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/argparser.h
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/argparser.o
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/argparser.o.d
-@bin 
jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/jruby-launcher
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/jrubyexe.o
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/jrubyexe.o.d
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/ng.o
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/ng.o.d
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/strlcpy.o
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/strlcpy.o.d
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/unixlauncher.o
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/unixlauncher.o.d
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/utilsfuncs.o
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/build/unix/OpenBSD/utilsfuncs.o.d
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/extconf.rb
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/inc/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/inc/Makefile-conf.mk
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/inc/Makefile-impl.mk
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/inc/Makefile-rules.mk
-@bin jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/jruby
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/jruby.cpp
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/jrubyexe.cpp
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/jvmlauncher.cpp
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/jvmlauncher.h
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/lib/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/lib/jruby-launcher.rb
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/lib/rubygems/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/lib/rubygems/defaults/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/lib/rubygems/defaults/jruby_native.rb
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/nbexecloader.h
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/ng.c
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/pkg/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/pkg/jruby-launcher-${JRUBY_LAUNCHER_V}-java/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/pkg/jruby-launcher-${JRUBY_LAUNCHER_V}-java/extconf.rb
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/pkg/jruby-launcher-${JRUBY_LAUNCHER_V}-java/lib/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/pkg/jruby-launcher-${JRUBY_LAUNCHER_V}-java/lib/jruby-launcher.rb
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/pkg/jruby-launcher-${JRUBY_LAUNCHER_V}-java/lib/rubygems/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/pkg/jruby-launcher-${JRUBY_LAUNCHER_V}-java/lib/rubygems/defaults/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/pkg/jruby-launcher-${JRUBY_LAUNCHER_V}-java/lib/rubygems/defaults/jruby_native.rb
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/pkg/jruby-launcher-${JRUBY_LAUNCHER_V}-java/spec/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/pkg/jruby-launcher-${JRUBY_LAUNCHER_V}-java/spec/launcher_spec.rb
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/pkg/jruby-launcher-${JRUBY_LAUNCHER_V}-java/spec/spec_helper.rb
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/platformlauncher.cpp
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/platformlauncher.h
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/rb_w32_cmdvector.h
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/resources/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/resources/jruby.ico
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/resources/jruby.rc
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/spec/
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/spec/launcher_spec.rb
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/spec/spec_helper.rb
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/strlcpy.c
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/unixlauncher.cpp
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/unixlauncher.h
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/utilsfuncs.cpp
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/utilsfuncs.h
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/utilsfuncswin.cpp
-jruby/lib/ruby/gems/1.8/gems/jruby-launcher-${JRUBY_LAUNCHER_V}-java/version.h
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/
-jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/.gemtest
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/CHANGES
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/MIT-LICENSE
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/README.rdoc
@@ -1923,6 +1891,7 @@ jruby/lib/ruby/gems/1.8/gems/rake-${RAKE
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/doc/release_notes/rake-10.0.0.rdoc
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/doc/release_notes/rake-10.0.1.rdoc
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/doc/release_notes/rake-10.0.2.rdoc
+jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/doc/release_notes/rake-10.0.3.rdoc
 
jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/doc/release_notes/rake-${RAKE_V}.rdoc
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/install.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/
@@ -1956,6 +1925,7 @@ jruby/lib/ruby/gems/1.8/gems/rake-${RAKE
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/gempackagetask.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/invocation_chain.rb
 
jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/invocation_exception_mixin.rb
+jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/linked_list.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/loaders/
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/loaders/makefile.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/multi_task.rb
@@ -1972,6 +1942,7 @@ jruby/lib/ruby/gems/1.8/gems/rake-${RAKE
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/ruby182_test_unit_fix.rb
 
jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/rule_recursion_overflow_error.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/runtest.rb
+jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/scope.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/task.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/task_argument_error.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/lib/rake/task_arguments.rb
@@ -1986,6 +1957,9 @@ jruby/lib/ruby/gems/1.8/gems/rake-${RAKE
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/file_creation.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/helper.rb
+jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/support/
+jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/support/rakefile_definitions.rb
+jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/support/ruby_runner.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_private_reader.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_application.rb
@@ -2005,6 +1979,7 @@ jruby/lib/ruby/gems/1.8/gems/rake-${RAKE
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_ftp_file.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_functional.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_invocation_chain.rb
+jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_linked_list.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_makefile_loader.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_multi_task.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_name_space.rb
@@ -2017,6 +1992,7 @@ jruby/lib/ruby/gems/1.8/gems/rake-${RAKE
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_reduce_compat.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_require.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_rules.rb
+jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_scope.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_task.rb
 
jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_task_argument_parsing.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_rake_task_arguments.rb
@@ -2031,7 +2007,6 @@ jruby/lib/ruby/gems/1.8/gems/rake-${RAKE
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_thread_history_display.rb
 jruby/lib/ruby/gems/1.8/gems/rake-${RAKE_V}/test/test_trace_output.rb
 jruby/lib/ruby/gems/1.8/specifications/
-jruby/lib/ruby/gems/1.8/specifications/jruby-launcher-${JRUBY_LAUNCHER_V}-java.gemspec
 jruby/lib/ruby/gems/1.8/specifications/rake-${RAKE_V}.gemspec
 jruby/lib/ruby/gems/shared
 jruby/lib/ruby/shared/
@@ -2045,8 +2020,8 @@ jruby/lib/ruby/shared/ant/rake.rb
 jruby/lib/ruby/shared/ant/target.rb
 jruby/lib/ruby/shared/ant/tasks/
 jruby/lib/ruby/shared/ant/tasks/raketasks.rb
-jruby/lib/ruby/shared/bcpkix-jdk15on-147.jar
-jruby/lib/ruby/shared/bcprov-jdk15on-147.jar
+jruby/lib/ruby/shared/bcpkix-jdk15on-1.47.jar
+jruby/lib/ruby/shared/bcprov-jdk15on-1.47.jar
 jruby/lib/ruby/shared/bouncy-castle-java.rb
 jruby/lib/ruby/shared/ffi/
 jruby/lib/ruby/shared/ffi.rb
@@ -2064,6 +2039,10 @@ jruby/lib/ruby/shared/ffi/platform.rb
 jruby/lib/ruby/shared/ffi/platform/errno.rb.ffi
 jruby/lib/ruby/shared/ffi/platform/etc.rb.ffi
 jruby/lib/ruby/shared/ffi/platform/fcntl.rb.ffi
+jruby/lib/ruby/shared/ffi/platform/socket.rb.ffi
+jruby/lib/ruby/shared/ffi/platform/stat.rb.ffi
+jruby/lib/ruby/shared/ffi/platform/sysconf.rb.ffi
+jruby/lib/ruby/shared/ffi/platform/syslog.rb.ffi
 jruby/lib/ruby/shared/ffi/platform/${FFI_ARCH}/
 jruby/lib/ruby/shared/ffi/platform/${FFI_ARCH}/errno.rb
 jruby/lib/ruby/shared/ffi/platform/${FFI_ARCH}/etc.rb
@@ -2075,10 +2054,6 @@ jruby/lib/ruby/shared/ffi/platform/${FFI
 jruby/lib/ruby/shared/ffi/platform/${FFI_ARCH}/syslog.rb
 jruby/lib/ruby/shared/ffi/platform/${FFI_ARCH}/types.conf
 jruby/lib/ruby/shared/ffi/platform/${FFI_ARCH}/zlib.rb
-jruby/lib/ruby/shared/ffi/platform/socket.rb.ffi
-jruby/lib/ruby/shared/ffi/platform/stat.rb.ffi
-jruby/lib/ruby/shared/ffi/platform/sysconf.rb.ffi
-jruby/lib/ruby/shared/ffi/platform/syslog.rb.ffi
 jruby/lib/ruby/shared/ffi/platform/zlib.rb.ffi
 jruby/lib/ruby/shared/ffi/pointer.rb
 jruby/lib/ruby/shared/ffi/rbx.rb
@@ -2095,6 +2070,7 @@ jruby/lib/ruby/shared/ffi/tools/types_ge
 jruby/lib/ruby/shared/ffi/types.rb
 jruby/lib/ruby/shared/ffi/union.rb
 jruby/lib/ruby/shared/ffi/variadic.rb
+jruby/lib/ruby/shared/fiber.rb
 jruby/lib/ruby/shared/fiddle/
 jruby/lib/ruby/shared/fiddle.rb
 jruby/lib/ruby/shared/fiddle/closure.rb
@@ -2106,6 +2082,31 @@ jruby/lib/ruby/shared/java/inspect.rb
 jruby/lib/ruby/shared/jopenssl/
 jruby/lib/ruby/shared/jopenssl.jar
 jruby/lib/ruby/shared/jopenssl/version.rb
+jruby/lib/ruby/shared/jopenssl18/
+jruby/lib/ruby/shared/jopenssl18/openssl/
+jruby/lib/ruby/shared/jopenssl18/openssl.rb
+jruby/lib/ruby/shared/jopenssl18/openssl/bn.rb
+jruby/lib/ruby/shared/jopenssl18/openssl/buffering.rb
+jruby/lib/ruby/shared/jopenssl18/openssl/cipher.rb
+jruby/lib/ruby/shared/jopenssl18/openssl/config.rb
+jruby/lib/ruby/shared/jopenssl18/openssl/digest.rb
+jruby/lib/ruby/shared/jopenssl18/openssl/pkcs7.rb
+jruby/lib/ruby/shared/jopenssl18/openssl/ssl-internal.rb
+jruby/lib/ruby/shared/jopenssl18/openssl/ssl.rb
+jruby/lib/ruby/shared/jopenssl18/openssl/x509-internal.rb
+jruby/lib/ruby/shared/jopenssl18/openssl/x509.rb
+jruby/lib/ruby/shared/jopenssl19/
+jruby/lib/ruby/shared/jopenssl19/openssl/
+jruby/lib/ruby/shared/jopenssl19/openssl.rb
+jruby/lib/ruby/shared/jopenssl19/openssl/bn.rb
+jruby/lib/ruby/shared/jopenssl19/openssl/buffering.rb
+jruby/lib/ruby/shared/jopenssl19/openssl/cipher.rb
+jruby/lib/ruby/shared/jopenssl19/openssl/config.rb
+jruby/lib/ruby/shared/jopenssl19/openssl/digest.rb
+jruby/lib/ruby/shared/jopenssl19/openssl/ssl-internal.rb
+jruby/lib/ruby/shared/jopenssl19/openssl/ssl.rb
+jruby/lib/ruby/shared/jopenssl19/openssl/x509-internal.rb
+jruby/lib/ruby/shared/jopenssl19/openssl/x509.rb
 jruby/lib/ruby/shared/jruby/
 jruby/lib/ruby/shared/jruby/compiler/
 jruby/lib/ruby/shared/jruby/compiler.rb
@@ -2163,7 +2164,17 @@ jruby/lib/ruby/shared/kryptproviderjdk.j
 jruby/lib/ruby/shared/mkmf.rb
 jruby/lib/ruby/shared/openssl/
 jruby/lib/ruby/shared/openssl.rb
+jruby/lib/ruby/shared/openssl/bn.rb
+jruby/lib/ruby/shared/openssl/buffering.rb
+jruby/lib/ruby/shared/openssl/cipher.rb
+jruby/lib/ruby/shared/openssl/config.rb
+jruby/lib/ruby/shared/openssl/digest.rb
 jruby/lib/ruby/shared/openssl/pkcs12.rb
+jruby/lib/ruby/shared/openssl/pkcs7.rb
+jruby/lib/ruby/shared/openssl/ssl-internal.rb
+jruby/lib/ruby/shared/openssl/ssl.rb
+jruby/lib/ruby/shared/openssl/x509-internal.rb
+jruby/lib/ruby/shared/openssl/x509.rb
 jruby/lib/ruby/shared/psych/
 jruby/lib/ruby/shared/psych.rb
 jruby/lib/ruby/shared/psych/coder.rb
@@ -2206,11 +2217,76 @@ jruby/lib/ruby/shared/psych/visitors/vis
 jruby/lib/ruby/shared/psych/visitors/yaml_tree.rb
 jruby/lib/ruby/shared/psych/y.rb
 jruby/lib/ruby/shared/pty.rb
+jruby/lib/ruby/shared/rake/
+jruby/lib/ruby/shared/rake.rb
+jruby/lib/ruby/shared/rake/alt_system.rb
+jruby/lib/ruby/shared/rake/application.rb
+jruby/lib/ruby/shared/rake/backtrace.rb
+jruby/lib/ruby/shared/rake/clean.rb
+jruby/lib/ruby/shared/rake/cloneable.rb
+jruby/lib/ruby/shared/rake/contrib/
+jruby/lib/ruby/shared/rake/contrib/compositepublisher.rb
+jruby/lib/ruby/shared/rake/contrib/ftptools.rb
+jruby/lib/ruby/shared/rake/contrib/publisher.rb
+jruby/lib/ruby/shared/rake/contrib/rubyforgepublisher.rb
+jruby/lib/ruby/shared/rake/contrib/sshpublisher.rb
+jruby/lib/ruby/shared/rake/contrib/sys.rb
+jruby/lib/ruby/shared/rake/default_loader.rb
+jruby/lib/ruby/shared/rake/dsl_definition.rb
+jruby/lib/ruby/shared/rake/early_time.rb
+jruby/lib/ruby/shared/rake/ext/
+jruby/lib/ruby/shared/rake/ext/core.rb
+jruby/lib/ruby/shared/rake/ext/module.rb
+jruby/lib/ruby/shared/rake/ext/string.rb
+jruby/lib/ruby/shared/rake/ext/time.rb
+jruby/lib/ruby/shared/rake/file_creation_task.rb
+jruby/lib/ruby/shared/rake/file_list.rb
+jruby/lib/ruby/shared/rake/file_task.rb
+jruby/lib/ruby/shared/rake/file_utils.rb
+jruby/lib/ruby/shared/rake/file_utils_ext.rb
+jruby/lib/ruby/shared/rake/gempackagetask.rb
+jruby/lib/ruby/shared/rake/invocation_chain.rb
+jruby/lib/ruby/shared/rake/invocation_exception_mixin.rb
+jruby/lib/ruby/shared/rake/linked_list.rb
+jruby/lib/ruby/shared/rake/loaders/
+jruby/lib/ruby/shared/rake/loaders/makefile.rb
+jruby/lib/ruby/shared/rake/multi_task.rb
+jruby/lib/ruby/shared/rake/name_space.rb
+jruby/lib/ruby/shared/rake/packagetask.rb
+jruby/lib/ruby/shared/rake/pathmap.rb
+jruby/lib/ruby/shared/rake/phony.rb
+jruby/lib/ruby/shared/rake/private_reader.rb
+jruby/lib/ruby/shared/rake/promise.rb
+jruby/lib/ruby/shared/rake/pseudo_status.rb
+jruby/lib/ruby/shared/rake/rake_module.rb
+jruby/lib/ruby/shared/rake/rake_test_loader.rb
+jruby/lib/ruby/shared/rake/rdoctask.rb
+jruby/lib/ruby/shared/rake/ruby182_test_unit_fix.rb
+jruby/lib/ruby/shared/rake/rule_recursion_overflow_error.rb
+jruby/lib/ruby/shared/rake/runtest.rb
+jruby/lib/ruby/shared/rake/scope.rb
+jruby/lib/ruby/shared/rake/task.rb
+jruby/lib/ruby/shared/rake/task_argument_error.rb
+jruby/lib/ruby/shared/rake/task_arguments.rb
+jruby/lib/ruby/shared/rake/task_manager.rb
+jruby/lib/ruby/shared/rake/tasklib.rb
+jruby/lib/ruby/shared/rake/testtask.rb
+jruby/lib/ruby/shared/rake/thread_history_display.rb
+jruby/lib/ruby/shared/rake/thread_pool.rb
+jruby/lib/ruby/shared/rake/trace_output.rb
+jruby/lib/ruby/shared/rake/version.rb
+jruby/lib/ruby/shared/rake/win32.rb
 jruby/lib/ruby/shared/rbconfig/
 jruby/lib/ruby/shared/rbconfig/datadir.rb
+jruby/lib/ruby/shared/readline/
+jruby/lib/ruby/shared/readline.rb
+jruby/lib/ruby/shared/readline/jline-2.11.jar
+jruby/lib/ruby/shared/readline/readline.jar
+jruby/lib/ruby/shared/ripper.jar
 jruby/lib/ruby/shared/rubygems/
 jruby/lib/ruby/shared/rubygems.rb
-jruby/lib/ruby/shared/rubygems/builder.rb
+jruby/lib/ruby/shared/rubygems/available_set.rb
+jruby/lib/ruby/shared/rubygems/basic_specification.rb
 jruby/lib/ruby/shared/rubygems/command.rb
 jruby/lib/ruby/shared/rubygems/command_manager.rb
 jruby/lib/ruby/shared/rubygems/commands/
@@ -2244,45 +2320,58 @@ jruby/lib/ruby/shared/rubygems/commands/
 jruby/lib/ruby/shared/rubygems/commands/unpack_command.rb
 jruby/lib/ruby/shared/rubygems/commands/update_command.rb
 jruby/lib/ruby/shared/rubygems/commands/which_command.rb
+jruby/lib/ruby/shared/rubygems/commands/yank_command.rb
+jruby/lib/ruby/shared/rubygems/compatibility.rb
 jruby/lib/ruby/shared/rubygems/config_file.rb
-jruby/lib/ruby/shared/rubygems/custom_require.rb
+jruby/lib/ruby/shared/rubygems/core_ext/
+jruby/lib/ruby/shared/rubygems/core_ext/kernel_gem.rb
+jruby/lib/ruby/shared/rubygems/core_ext/kernel_require.rb
 jruby/lib/ruby/shared/rubygems/defaults/
 jruby/lib/ruby/shared/rubygems/defaults.rb
 jruby/lib/ruby/shared/rubygems/defaults/jruby.rb
-jruby/lib/ruby/shared/rubygems/defaults/jruby_native.rb
 jruby/lib/ruby/shared/rubygems/dependency.rb
 jruby/lib/ruby/shared/rubygems/dependency_installer.rb
 jruby/lib/ruby/shared/rubygems/dependency_list.rb
+jruby/lib/ruby/shared/rubygems/dependency_resolver/
 jruby/lib/ruby/shared/rubygems/dependency_resolver.rb
+jruby/lib/ruby/shared/rubygems/dependency_resolver/activation_request.rb
+jruby/lib/ruby/shared/rubygems/dependency_resolver/api_set.rb
+jruby/lib/ruby/shared/rubygems/dependency_resolver/api_specification.rb
+jruby/lib/ruby/shared/rubygems/dependency_resolver/composed_set.rb
+jruby/lib/ruby/shared/rubygems/dependency_resolver/current_set.rb
+jruby/lib/ruby/shared/rubygems/dependency_resolver/dependency_conflict.rb
+jruby/lib/ruby/shared/rubygems/dependency_resolver/dependency_request.rb
+jruby/lib/ruby/shared/rubygems/dependency_resolver/index_set.rb
+jruby/lib/ruby/shared/rubygems/dependency_resolver/index_specification.rb
+jruby/lib/ruby/shared/rubygems/dependency_resolver/installed_specification.rb
+jruby/lib/ruby/shared/rubygems/dependency_resolver/installer_set.rb
 jruby/lib/ruby/shared/rubygems/deprecate.rb
-jruby/lib/ruby/shared/rubygems/doc_manager.rb
+jruby/lib/ruby/shared/rubygems/doctor.rb
 jruby/lib/ruby/shared/rubygems/errors.rb
 jruby/lib/ruby/shared/rubygems/exceptions.rb
 jruby/lib/ruby/shared/rubygems/ext/
 jruby/lib/ruby/shared/rubygems/ext.rb
 jruby/lib/ruby/shared/rubygems/ext/builder.rb
+jruby/lib/ruby/shared/rubygems/ext/cmake_builder.rb
 jruby/lib/ruby/shared/rubygems/ext/configure_builder.rb
 jruby/lib/ruby/shared/rubygems/ext/ext_conf_builder.rb
 jruby/lib/ruby/shared/rubygems/ext/rake_builder.rb
-jruby/lib/ruby/shared/rubygems/format.rb
-jruby/lib/ruby/shared/rubygems/gem_openssl.rb
-jruby/lib/ruby/shared/rubygems/gem_path_searcher.rb
 jruby/lib/ruby/shared/rubygems/gem_runner.rb
 jruby/lib/ruby/shared/rubygems/gemcutter_utilities.rb
 jruby/lib/ruby/shared/rubygems/indexer.rb
+jruby/lib/ruby/shared/rubygems/install_default_message.rb
 jruby/lib/ruby/shared/rubygems/install_message.rb
 jruby/lib/ruby/shared/rubygems/install_update_options.rb
 jruby/lib/ruby/shared/rubygems/installer.rb
 jruby/lib/ruby/shared/rubygems/installer_test_case.rb
 jruby/lib/ruby/shared/rubygems/local_remote_options.rb
 jruby/lib/ruby/shared/rubygems/mock_gem_ui.rb
-jruby/lib/ruby/shared/rubygems/old_format.rb
+jruby/lib/ruby/shared/rubygems/name_tuple.rb
 jruby/lib/ruby/shared/rubygems/package/
 jruby/lib/ruby/shared/rubygems/package.rb
-jruby/lib/ruby/shared/rubygems/package/f_sync_dir.rb
+jruby/lib/ruby/shared/rubygems/package/digest_io.rb
+jruby/lib/ruby/shared/rubygems/package/old.rb
 jruby/lib/ruby/shared/rubygems/package/tar_header.rb
-jruby/lib/ruby/shared/rubygems/package/tar_input.rb
-jruby/lib/ruby/shared/rubygems/package/tar_output.rb
 jruby/lib/ruby/shared/rubygems/package/tar_reader/
 jruby/lib/ruby/shared/rubygems/package/tar_reader.rb
 jruby/lib/ruby/shared/rubygems/package/tar_reader/entry.rb
@@ -2295,22 +2384,43 @@ jruby/lib/ruby/shared/rubygems/psych_add
 jruby/lib/ruby/shared/rubygems/psych_tree.rb
 jruby/lib/ruby/shared/rubygems/rdoc.rb
 jruby/lib/ruby/shared/rubygems/remote_fetcher.rb
+jruby/lib/ruby/shared/rubygems/request.rb
+jruby/lib/ruby/shared/rubygems/request_set/
 jruby/lib/ruby/shared/rubygems/request_set.rb
-jruby/lib/ruby/shared/rubygems/require_paths_builder.rb
+jruby/lib/ruby/shared/rubygems/request_set/gem_dependency_api.rb
 jruby/lib/ruby/shared/rubygems/requirement.rb
+jruby/lib/ruby/shared/rubygems/security/
 jruby/lib/ruby/shared/rubygems/security.rb
+jruby/lib/ruby/shared/rubygems/security/policies.rb
+jruby/lib/ruby/shared/rubygems/security/policy.rb
+jruby/lib/ruby/shared/rubygems/security/signer.rb
+jruby/lib/ruby/shared/rubygems/security/trust_dir.rb
 jruby/lib/ruby/shared/rubygems/server.rb
-jruby/lib/ruby/shared/rubygems/source_index.rb
+jruby/lib/ruby/shared/rubygems/source/
+jruby/lib/ruby/shared/rubygems/source.rb
+jruby/lib/ruby/shared/rubygems/source/installed.rb
+jruby/lib/ruby/shared/rubygems/source/local.rb
+jruby/lib/ruby/shared/rubygems/source/specific_file.rb
+jruby/lib/ruby/shared/rubygems/source_list.rb
+jruby/lib/ruby/shared/rubygems/source_local.rb
+jruby/lib/ruby/shared/rubygems/source_specific_file.rb
 jruby/lib/ruby/shared/rubygems/spec_fetcher.rb
 jruby/lib/ruby/shared/rubygems/specification.rb
 jruby/lib/ruby/shared/rubygems/ssl_certs/
-jruby/lib/ruby/shared/rubygems/ssl_certs/ca-bundle.pem
+jruby/lib/ruby/shared/rubygems/ssl_certs/AddTrustExternalCARoot.pem
+jruby/lib/ruby/shared/rubygems/ssl_certs/Entrust_net-Secure-Server-Certification-Authority.pem
+jruby/lib/ruby/shared/rubygems/ssl_certs/GeoTrust_Global_CA.pem
+jruby/lib/ruby/shared/rubygems/ssl_certs/VerisignClass3PublicPrimaryCertificationAuthority-G2.pem
+jruby/lib/ruby/shared/rubygems/stub_specification.rb
 jruby/lib/ruby/shared/rubygems/syck_hack.rb
 jruby/lib/ruby/shared/rubygems/test_case.rb
 jruby/lib/ruby/shared/rubygems/test_utilities.rb
 jruby/lib/ruby/shared/rubygems/text.rb
 jruby/lib/ruby/shared/rubygems/uninstaller.rb
+jruby/lib/ruby/shared/rubygems/uri_formatter.rb
 jruby/lib/ruby/shared/rubygems/user_interaction.rb
+jruby/lib/ruby/shared/rubygems/util/
+jruby/lib/ruby/shared/rubygems/util/list.rb
 jruby/lib/ruby/shared/rubygems/validator.rb
 jruby/lib/ruby/shared/rubygems/version.rb
 jruby/lib/ruby/shared/rubygems/version_option.rb

Reply via email to