pyenv/libexec/rbenv-exec

48 lines
1.1 KiB
Text
Raw Normal View History

#!/usr/bin/env bash
#
2012-12-29 23:05:04 -05:00
# Summary: Run an executable with the selected Ruby version
#
# Usage: rbenv exec <command> [arg1 arg2...]
#
# Runs an executable by first preparing PATH so that the selected Ruby
# version's `bin' directory is at the front.
#
# For example, if the currently selected Ruby version is 1.9.3-p327:
# rbenv exec bundle install
#
# is equivalent to:
# PATH="$RBENV_ROOT/versions/1.9.3-p327/bin:$PATH" bundle install
set -e
[ -n "$RBENV_DEBUG" ] && set -x
2011-08-01 16:50:26 -04:00
2011-09-13 13:46:06 -04:00
# Provide rbenv completions
if [ "$1" = "--complete" ]; then
exec rbenv shims --short
fi
2011-09-13 13:46:06 -04:00
2013-03-31 21:01:37 -04:00
RBENV_VERSION="$(rbenv-version-name)"
2011-08-01 16:50:26 -04:00
RBENV_COMMAND="$1"
2011-08-01 16:50:26 -04:00
if [ -z "$RBENV_COMMAND" ]; then
rbenv-help --usage exec >&2
2011-08-01 16:50:26 -04:00
exit 1
fi
2013-03-31 21:01:37 -04:00
export RBENV_VERSION
2011-08-01 16:50:26 -04:00
RBENV_COMMAND_PATH="$(rbenv-which "$RBENV_COMMAND")"
RBENV_BIN_PATH="${RBENV_COMMAND_PATH%/*}"
2011-08-01 16:50:26 -04:00
2013-04-15 12:10:56 -04:00
OLDIFS="$IFS"
IFS=$'\n' scripts=(`rbenv-hooks exec`)
2013-04-15 12:10:56 -04:00
IFS="$OLDIFS"
for script in "${scripts[@]}"; do
source "$script"
done
2011-08-01 16:50:26 -04:00
shift 1
if [ "$RBENV_VERSION" != "system" ]; then
export PATH="${RBENV_BIN_PATH}:${PATH}"
fi
2011-08-02 10:38:36 -04:00
exec -a "$RBENV_COMMAND" "$RBENV_COMMAND_PATH" "$@"