2011-08-12 05:33:45 -04:00
|
|
|
#!/usr/bin/env bash
|
2012-12-29 17:34:53 -05:00
|
|
|
#
|
2012-12-29 23:05:04 -05:00
|
|
|
# Summary: Run an executable with the selected Ruby version
|
2012-12-29 17:34:53 -05:00
|
|
|
#
|
2013-06-20 11:22:15 -04:00
|
|
|
# Usage: rbenv exec <command> [args...]
|
2012-12-29 17:34:53 -05:00
|
|
|
#
|
2013-06-20 11:22:15 -04:00
|
|
|
# Runs an executable contained by the currently selected Ruby's bin
|
|
|
|
# directory. Rough equivalent of:
|
2012-12-29 17:34:53 -05:00
|
|
|
#
|
2013-06-20 11:22:15 -04:00
|
|
|
# exec "$(rbenv prefix)/bin/$command" args...
|
2012-12-29 17:34:53 -05:00
|
|
|
|
2011-08-12 05:33:45 -04:00
|
|
|
set -e
|
2011-09-12 11:11:59 -04:00
|
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
2011-08-01 16:50:26 -04:00
|
|
|
|
2013-06-20 11:22:15 -04:00
|
|
|
rubypath=""
|
2011-09-13 13:46:06 -04:00
|
|
|
# Provide rbenv completions
|
2013-06-20 11:22:15 -04:00
|
|
|
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"
|
2012-12-28 18:17:01 -05:00
|
|
|
|
2011-08-01 16:50:26 -04:00
|
|
|
if [ -z "$RBENV_COMMAND" ]; then
|
2012-12-29 17:34:53 -05:00
|
|
|
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"
|
2013-02-24 08:52:50 -05:00
|
|
|
IFS=$'\n' scripts=(`rbenv-hooks exec`)
|
2013-04-15 12:10:56 -04:00
|
|
|
IFS="$OLDIFS"
|
2013-02-24 08:52:50 -05:00
|
|
|
for script in "${scripts[@]}"; do
|
2011-09-21 14:05:08 -04:00
|
|
|
source "$script"
|
2011-08-03 09:28:50 -04:00
|
|
|
done
|
|
|
|
|
2011-08-01 16:50:26 -04:00
|
|
|
shift 1
|
2013-06-20 11:22:15 -04:00
|
|
|
if [ -n "$rubypath" ]; then
|
|
|
|
bindir=""
|
|
|
|
[ "$RBENV_VERSION" != "system" ] && bindir="${RBENV_COMMAND_PATH%/*}"
|
|
|
|
export RUBYPATH="$(replace_shims_path "${RUBYPATH:-$PATH}" "$bindir")"
|
2012-12-28 18:17:01 -05:00
|
|
|
fi
|
2011-08-02 10:38:36 -04:00
|
|
|
exec -a "$RBENV_COMMAND" "$RBENV_COMMAND_PATH" "$@"
|