Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.rvmrc - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/.rvmrc
blob: 01466e0029a180adba42cdb8a2a9b3d478f978c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
if [ -e '.rvmrc.local' ]; then
  source .rvmrc.local;
elif [ -e '.rvmrc_custom' ] ; then
  source .rvmrc_custom;
else
  rvm --create use ruby-1.9.3-p125@diaspora
fi

if [ "$(gem --version)" != "1.8.17" ]; then
  rvm rubygems 1.8.17
fi