Skip to content

Instantly share code, notes, and snippets.

@joemsak
Created February 22, 2012 01:37
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save joemsak/1880495 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
ruby_string="ruby-1.9.3-p125-perf"
gemset_name="projectname"
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
(
# Ensure that Bundler is installed, install it if it is not.
if ! command -v bundle ; then
gem install bundler
fi
# Bundle while redcing excess noise.
bundle | grep -v 'Using' | grep -v 'complete' | sed '/^$/d'
)&
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment