pyenv/libexec/rbenv-init

91 lines
1.3 KiB
Text
Raw Normal View History

#!/usr/bin/env bash
set -e
[ -n "$RBENV_DEBUG" ] && set -x
2011-08-04 00:16:28 -04:00
print=""
if [ "$1" = "-" ]; then
print=1
shift
fi
2011-08-04 00:16:28 -04:00
shell="$1"
2011-08-04 00:16:28 -04:00
if [ -z "$shell" ]; then
shell="$(basename "$SHELL")"
2011-08-04 00:16:28 -04:00
fi
resolve_link() {
$(type -p greadlink readlink | head -1) $1
}
2011-08-04 00:16:28 -04:00
abs_dirname() {
local cwd="$(pwd)"
local path="$1"
while [ -n "$path" ]; do
cd "${path%/*}"
local name="${path##*/}"
path="$(resolve_link "$name" || true)"
2011-08-04 00:16:28 -04:00
done
pwd
cd "$cwd"
}
2011-08-04 00:16:28 -04:00
root="$(abs_dirname "$0")/.."
if [ -z "$print" ]; then
case "$shell" in
bash )
profile='~/.bash_profile'
;;
zsh )
profile='~/.zshrc'
;;
ksh )
profile='~/.profile'
;;
* )
profile='your profile'
;;
esac
{ echo "# Load rbenv automatically by adding"
echo "# the following to ${profile}:"
echo
echo 'eval "$(rbenv init -)"'
echo
} >&2
exit 1
fi
2011-09-11 12:58:57 -04:00
mkdir -p "${RBENV_ROOT}/"{shims,versions}
2011-09-11 12:58:57 -04:00
echo 'export PATH="'${RBENV_ROOT}'/shims:${PATH}"'
2011-08-04 00:16:28 -04:00
case "$shell" in
bash | zsh )
echo "source \"$root/completions/rbenv.${shell}\""
;;
esac
2011-08-15 02:18:04 -04:00
echo 'rbenv rehash 2>/dev/null'
commands=(`rbenv commands --sh`)
IFS="|"
cat <<EOS
rbenv() {
command="\$1"
if [ "\$#" -gt 0 ]; then
shift
fi
2011-09-10 20:45:36 -04:00
case "\$command" in
${commands[*]})
2011-09-10 20:45:36 -04:00
eval \`rbenv "sh-\$command" "\$@"\`;;
*)
2011-09-10 20:45:36 -04:00
command rbenv "\$command" "\$@";;
esac
}
EOS