pyenv/libexec/rbenv-init

69 lines
1,015 B
Text
Raw Normal View History

#!/usr/bin/env bash
set -e
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'
;;
* )
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-08-04 02:16:16 -04:00
mkdir -p "${HOME}/.rbenv/"{shims,versions}
echo 'export PATH="${HOME}/.rbenv/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'