simplifying .rvmrc
This commit is contained in:
parent
52435e97d9
commit
bcf2756ad2
24
.rvmrc
24
.rvmrc
|
@ -1,23 +1 @@
|
||||||
#!/usr/bin/env bash
|
rvm use 1.8.7@cancan --create
|
||||||
|
|
||||||
# adapted from: http://rvm.beginrescueend.com/workflow/rvmrc/
|
|
||||||
|
|
||||||
ruby_string="1.8.7"
|
|
||||||
gemset_name="cancan"
|
|
||||||
|
|
||||||
if rvm list strings | grep -q "${ruby_string}" ; then
|
|
||||||
|
|
||||||
# Load or create the specified environment
|
|
||||||
if [[ -d "${rvm_path:-$HOME/.rvm}/environments" \
|
|
||||||
&& -s "${rvm_path:-$HOME/.rvm}/environments/${ruby_string}@${gemset_name}" ]] ; then
|
|
||||||
\. "${rvm_path:-$HOME/.rvm}/environments/${ruby_string}@${gemset_name}"
|
|
||||||
else
|
|
||||||
rvm --create "${ruby_string}@${gemset_name}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
else
|
|
||||||
|
|
||||||
# Notify the user to install the desired interpreter before proceeding.
|
|
||||||
echo "${ruby_string} was not found, please run 'rvm install ${ruby_string}' and then cd back into the project directory."
|
|
||||||
|
|
||||||
fi
|
|
||||||
|
|
2
Gemfile
2
Gemfile
|
@ -2,7 +2,7 @@ source "http://rubygems.org"
|
||||||
|
|
||||||
case ENV["MODEL_ADAPTER"]
|
case ENV["MODEL_ADAPTER"]
|
||||||
when nil, "active_record"
|
when nil, "active_record"
|
||||||
gem "sqlite3-ruby", :require => "sqlite3"
|
gem "sqlite3"
|
||||||
gem "activerecord", :require => "active_record"
|
gem "activerecord", :require => "active_record"
|
||||||
gem "with_model"
|
gem "with_model"
|
||||||
gem "meta_where"
|
gem "meta_where"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user