update .rvmrc to point to the same releases travis is currently using
This commit is contained in:
parent
97e05b62ea
commit
98c9862b19
1 changed files with 5 additions and 3 deletions
8
.rvmrc
8
.rvmrc
|
|
@ -4,9 +4,11 @@ if [ -e '.rvmrc.local' ]; then
|
||||||
elif [ -e '.rvmrc_custom' ] ; then
|
elif [ -e '.rvmrc_custom' ] ; then
|
||||||
source .rvmrc_custom;
|
source .rvmrc_custom;
|
||||||
else
|
else
|
||||||
rvm --create use ruby-1.9.3-p125@diaspora
|
rvm --create use ruby-1.9.3-p194@diaspora
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$(gem --version)" != "1.8.17" ]; then
|
rubygems_version="1.8.24"
|
||||||
rvm rubygems 1.8.17
|
|
||||||
|
if [ "$(gem --version)" != "$rubygems_version" ]; then
|
||||||
|
rvm rubygems "$rubygems_version"
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue