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: 7e7da08d41d8d45c73f9a212b9be3f9f5bae57dc (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.2-p290@diaspora
fi

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