You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2012/05/19 04:07:04 UTC

svn commit: r1340333 - /buildr/trunk/.rvmrc

Author: donaldp
Date: Sat May 19 02:07:03 2012
New Revision: 1340333

URL: http://svn.apache.org/viewvc?rev=1340333&view=rev
Log:
Update .rvmrc to list all the versions of ruby that we support

Modified:
    buildr/trunk/.rvmrc

Modified: buildr/trunk/.rvmrc
URL: http://svn.apache.org/viewvc/buildr/trunk/.rvmrc?rev=1340333&r1=1340332&r2=1340333&view=diff
==============================================================================
--- buildr/trunk/.rvmrc (original)
+++ buildr/trunk/.rvmrc Sat May 19 02:07:03 2012
@@ -2,14 +2,16 @@
 cat <<EOF
 ********************************************************************
 *  RVM will install the environment for Buildr development now.
-*  By default it will use ruby-1.9.2.
+*  By default it will use ruby-1.9.2-p320.
 *  To force use an other version of ruby, set BUILDR_RUBY_VERSION.
-*  Example:
-*     export BUILDR_RUBY_VERSION=jruby-1.6.5
+*  Examples:
+*     export BUILDR_RUBY_VERSION=ruby-1.9.2-p320
+*     export BUILDR_RUBY_VERSION=jruby-1.6.7
+*     export BUILDR_RUBY_VERSION=ruby-1.8.7-p358
 ********************************************************************
 EOF
 
-ruby_string="${BUILDR_RUBY_VERSION:-ruby-1.9.2}" 
+ruby_string="${BUILDR_RUBY_VERSION:-ruby-1.9.2-p320}"
 bundler_gem_home="vendor/bundle" 
 
 if rvm list strings | grep -q "${ruby_string}" ; then