pyenv/libexec/rbenv-exec

84 lines
1.9 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> [args...]
#
# Runs an executable contained by the currently selected Ruby's bin
# directory. Rough equivalent of:
#
# exec "$(rbenv prefix)/bin/$command" args...
set -e
[ -n "$RBENV_DEBUG" ] && set -x
2011-08-01 16:50:26 -04:00
rubypath=""
2011-09-13 13:46:06 -04:00
# Provide rbenv completions
while true; do
case "$1" in
"--complete" )
exec rbenv shims --short
;;
"--rubypath" )
rubypath=1
shift 1
;;
* )
break
;;
esac
done
# Replace any "RBENV_ROOT/shims" or "RBENV_ROOT/versions/*/bin" paths in the
# list with the given path. If no replacements were made, prepend the path onto
# the list.
replace_shims_path() {
local path="$1"
local dir="$2"
# fake directory that serves as a placeholder for shims location in RUBYPATH:
local placeholder="/rbenv_shims_were_here"
local found=""
local result=""
local -a paths
IFS=: paths=($path)
for path in "${paths[@]}"; do
if [[ $path = "${RBENV_ROOT}/shims" || $path == "${RBENV_ROOT}/versions/"*/bin || $path = $placeholder ]]; then
found=1
result="${result}${dir:-$placeholder}:"
else
result="${result}${path}:"
fi
done
# if no rbenv paths were replaced, simply prepend the path
[ -n "$found" -o -z "$dir" ] || result="${dir}:${path}"
echo "${result%:}"
}
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")"
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 [ -n "$rubypath" ]; then
bindir=""
[ "$RBENV_VERSION" != "system" ] && bindir="${RBENV_COMMAND_PATH%/*}"
export RUBYPATH="$(replace_shims_path "${RUBYPATH:-$PATH}" "$bindir")"
fi
2011-08-02 10:38:36 -04:00
exec -a "$RBENV_COMMAND" "$RBENV_COMMAND_PATH" "$@"