Last active
December 14, 2015 00:08
-
-
Save tjl2/4996294 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
export PATH ; PATH="/usr/local/rvm/gems/ree-1.8.7-2012.02@core_batches/bin:/usr/local/rvm/gems/ree-1.8.7-2012.02@global/bin:/usr/local/rvm/rubies/ree-1.8.7-2012.02/bin:/usr/local/rvm/bin:$PATH" | |
export rvm_env_string ; rvm_env_string='ree-1.8.7-2012.02@core_batches' | |
export rvm_path ; rvm_path='/usr/local/rvm' | |
export rvm_ruby_string ; rvm_ruby_string='ree-1.8.7-2012.02' | |
export rvm_gemset_name ; rvm_gemset_name='core_batches' | |
export RUBY_VERSION ; RUBY_VERSION='ree-1.8.7-2012.02' | |
export GEM_HOME ; GEM_HOME='/usr/local/rvm/gems/ree-1.8.7-2012.02@core_batches' | |
export GEM_PATH ; GEM_PATH='/usr/local/rvm/gems/ree-1.8.7-2012.02@core_batches:/usr/local/rvm/gems/ree-1.8.7-2012.02@global' | |
export MY_RUBY_HOME ; MY_RUBY_HOME='/usr/local/rvm/rubies/ree-1.8.7-2012.02' | |
export IRBRC ; IRBRC='/usr/local/rvm/rubies/ree-1.8.7-2012.02/.irbrc' | |
unset MAGLEV_HOME | |
unset RBXOPT |
This file contains hidden or 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
#!/usr/bin/env bash | |
if [[ -s "/usr/local/rvm/environments/ree-1.8.7-2012.02@core_batches" ]] | |
then | |
source "/usr/local/rvm/environments/ree-1.8.7-2012.02@core_batches" | |
exec bundle "$@" | |
else | |
echo "ERROR: Missing RVM environment file: '/usr/local/rvm/environments/ree-1.8.7-2012.02@core_batches'" >&2 | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment