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
|
||||
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue