You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by vb...@apache.org on 2008/04/06 09:52:31 UTC

svn commit: r645205 - in /incubator/buildr/trunk: doc/pages/getting_started.textile doc/scripts/install-jruby.sh lib/buildr/java/bdd_frameworks.rb

Author: vborja
Date: Sun Apr  6 00:52:27 2008
New Revision: 645205

URL: http://svn.apache.org/viewvc?rev=645205&view=rev
Log:
Upgrade to JRuby 1.1 final.

Modified:
    incubator/buildr/trunk/doc/pages/getting_started.textile
    incubator/buildr/trunk/doc/scripts/install-jruby.sh
    incubator/buildr/trunk/lib/buildr/java/bdd_frameworks.rb

Modified: incubator/buildr/trunk/doc/pages/getting_started.textile
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/doc/pages/getting_started.textile?rev=645205&r1=645204&r2=645205&view=diff
==============================================================================
--- incubator/buildr/trunk/doc/pages/getting_started.textile (original)
+++ incubator/buildr/trunk/doc/pages/getting_started.textile Sun Apr  6 00:52:27 2008
@@ -135,7 +135,7 @@
 
 h3. JRuby
 
-If you don't already have JRuby 1.1RC3 or later installed, you can download it
+If you don't already have JRuby 1.1 or later installed, you can download it
 from the "JRuby site":http://dist.codehaus.org/jruby/.
 
 After uncompressing JRuby, update your @PATH@ to include both @java@ and @jruby@
@@ -165,7 +165,7 @@
 You can also use this script "to install Buildr on
 JRuby":scripts/install-jruby.sh.  This script will install Buildr or if already
 installed, upgrade to a more recent version.  If necessary, it will also
-install JRuby 1.1RC3 in @/opt/jruby@ and update the @PATH@ variable in
+install JRuby 1.1 in @/opt/jruby@ and update the @PATH@ variable in
 @~/.bash_profile@ or @~/.profile@.
 
 *Important: Running JRuby and Ruby side by side*

Modified: incubator/buildr/trunk/doc/scripts/install-jruby.sh
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/doc/scripts/install-jruby.sh?rev=645205&r1=645204&r2=645205&view=diff
==============================================================================
--- incubator/buildr/trunk/doc/scripts/install-jruby.sh (original)
+++ incubator/buildr/trunk/doc/scripts/install-jruby.sh Sun Apr  6 00:52:27 2008
@@ -14,7 +14,7 @@
 # License for the specific language governing permissions and limitations under
 # the License.
 if [ -z `which jruby` ] ; then
-  version=1.1RC3
+  version=1.1
   target=/opt/jruby
   echo "Installing JRuby ${version} in ${target}"
   sudo mkdir -p $(dirname ${target})

Modified: incubator/buildr/trunk/lib/buildr/java/bdd_frameworks.rb
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/lib/buildr/java/bdd_frameworks.rb?rev=645205&r1=645204&r2=645205&view=diff
==============================================================================
--- incubator/buildr/trunk/lib/buildr/java/bdd_frameworks.rb (original)
+++ incubator/buildr/trunk/lib/buildr/java/bdd_frameworks.rb Sun Apr  6 00:52:27 2008
@@ -59,7 +59,7 @@
     include TestFramework::JavaBDD
     self.lang = :ruby
 
-    REQUIRES = ['org.jruby:jruby-complete:jar:1.1RC3']
+    REQUIRES = ['org.jruby:jruby-complete:jar:1.1']
     TESTS_PATTERN = [ /_spec.rb$/ ]
     OPTIONS = [:properties, :java_args]