Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
simplifying .rvmrc
  • Loading branch information
ryanb committed Mar 26, 2011
1 parent 323c5c0 commit 9f67fdd
Showing 1 changed file with 1 addition and 23 deletions.
24 changes: 1 addition & 23 deletions .rvmrc
@@ -1,23 +1 @@
#!/usr/bin/env bash

# adapted from: http://rvm.beginrescueend.com/workflow/rvmrc/

ruby_string="1.9.2"
gemset_name="nifty-generators"

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.9.2@nifty-generators --create

0 comments on commit 9f67fdd

Please sign in to comment.