add a .rvmrc_custom if you want to overide the one in the repo

This commit is contained in:
MrZYX 2011-05-21 00:25:11 +02:00
parent 286f1b876d
commit 6ee85bb626
2 changed files with 7 additions and 1 deletions

1
.gitignore vendored
View file

@ -14,6 +14,7 @@ config/deploy_config.yml
.bundle
vendor/bundle/*
config/database.yml
.rvmrc_custom
# Generated files
log/*

7
.rvmrc
View file

@ -1 +1,6 @@
rvm ree-1.8.7-2011.03
#!/bin/bash
if [ -e '.rvmrc_custom' ]; then
source .rvmrc_custom;
else
rvm --create use ree@diaspora;
fi