- grab maintainership - Release log: * Ruby on Rails support. We have been working hard on getting Rails own unit tests running and over 98% of them now run successfully. We feel things are running well enough to invite Ruby users to kick the tires and help root out any final issues. * Ruby classes can extend concrete/abstract Java classes and override methods * New Java primitive array syntax * Reimplementation of String, Numeric classes, and Array to be more correct and performant * Significant bottlenecks have been identified. In some cases IO is 6.5x faster than previous releases. Java included classes are significantly faster than in the past. * 225 Jira issues resolved since last release PR: ports/111316 Submitted by: maintainer (Nemo Liu)
19 lines
503 B
Plaintext
19 lines
503 B
Plaintext
--- bin/jruby.orig Fri Apr 6 13:57:54 2007
|
|
+++ bin/jruby Fri Apr 6 14:00:13 2007
|
|
@@ -1,4 +1,4 @@
|
|
-#!/bin/bash
|
|
+#!/bin/sh
|
|
# -----------------------------------------------------------------------------
|
|
# jruby.sh - Start Script for the JRuby interpreter
|
|
#
|
|
@@ -26,6 +26,9 @@
|
|
esac
|
|
|
|
# ----- Verify and Set Required Environment Variables -------------------------
|
|
+JAVA_HOME=%%JAVA_HOME%%
|
|
+JRUBY_HOME=%%JRUBY_HOME%%
|
|
+
|
|
|
|
if [ -z "$JRUBY_HOME" ] ; then
|
|
## resolve links - $0 may be a link to home
|