forked from ryanb/cancan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
2 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1 @@ | ||
#!/usr/bin/env bash | ||
|
||
# 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 | ||
rvm use 1.8.7@cancan --create |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters