From 98c9862b1987a627cfa48b1de89be92d34388bbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonne=20Ha=C3=9F?= Date: Wed, 12 Sep 2012 16:51:57 +0200 Subject: [PATCH] update .rvmrc to point to the same releases travis is currently using --- .rvmrc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.rvmrc b/.rvmrc index 01466e002..09435bc44 100644 --- a/.rvmrc +++ b/.rvmrc @@ -4,9 +4,11 @@ if [ -e '.rvmrc.local' ]; then elif [ -e '.rvmrc_custom' ] ; then source .rvmrc_custom; else - rvm --create use ruby-1.9.3-p125@diaspora + rvm --create use ruby-1.9.3-p194@diaspora fi -if [ "$(gem --version)" != "1.8.17" ]; then - rvm rubygems 1.8.17 +rubygems_version="1.8.24" + +if [ "$(gem --version)" != "$rubygems_version" ]; then + rvm rubygems "$rubygems_version" fi