#!/usr/bin/env bash
# modify the ruby string below
ruby_string="ruby-1.8.7-p374@daemon"
true ${rvm_path:="/usr/local/rvm"}
if [[ -s "$rvm_path/scripts/rvm" ]] ; then
source "$rvm_path/scripts/rvm"
else
printf "ERROR: An RVM installation was not found.\n"
exit 1
fi
rvm "$ruby_string" && exec "$@"
# modify the ruby string below
ruby_string="ruby-1.8.7-p374@daemon"
true ${rvm_path:="/usr/local/rvm"}
if [[ -s "$rvm_path/scripts/rvm" ]] ; then
source "$rvm_path/scripts/rvm"
else
printf "ERROR: An RVM installation was not found.\n"
exit 1
fi
rvm "$ruby_string" && exec "$@"