2011-08-12 05:33:45 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
2011-09-12 11:11:59 -04:00
|
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
2011-08-04 00:16:28 -04:00
|
|
|
|
2011-08-04 01:45:40 -04:00
|
|
|
print=""
|
|
|
|
if [ "$1" = "-" ]; then
|
|
|
|
print=1
|
|
|
|
shift
|
|
|
|
fi
|
2011-08-04 00:16:28 -04:00
|
|
|
|
2011-12-25 20:59:24 -05:00
|
|
|
no_rehash=""
|
|
|
|
if [ "$1" = "--no-rehash" ]; then
|
|
|
|
no_rehash=1
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
2011-08-04 01:45:40 -04:00
|
|
|
shell="$1"
|
2011-08-04 00:16:28 -04:00
|
|
|
if [ -z "$shell" ]; then
|
2011-08-04 01:45:40 -04:00
|
|
|
shell="$(basename "$SHELL")"
|
2011-08-04 00:16:28 -04:00
|
|
|
fi
|
|
|
|
|
2011-08-16 17:26:57 -04:00
|
|
|
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##*/}"
|
2011-08-16 17:26:57 -04:00
|
|
|
path="$(resolve_link "$name" || true)"
|
2011-08-04 00:16:28 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
pwd
|
|
|
|
cd "$cwd"
|
|
|
|
}
|
2011-08-04 01:45:40 -04:00
|
|
|
|
2011-08-04 00:16:28 -04:00
|
|
|
root="$(abs_dirname "$0")/.."
|
|
|
|
|
2011-08-04 01:45:40 -04:00
|
|
|
if [ -z "$print" ]; then
|
|
|
|
case "$shell" in
|
|
|
|
bash )
|
|
|
|
profile='~/.bash_profile'
|
|
|
|
;;
|
|
|
|
zsh )
|
|
|
|
profile='~/.zshrc'
|
|
|
|
;;
|
2011-12-15 15:54:38 -05:00
|
|
|
ksh )
|
|
|
|
profile='~/.profile'
|
|
|
|
;;
|
2011-08-04 01:45:40 -04:00
|
|
|
* )
|
|
|
|
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-08-04 01:48:37 -04:00
|
|
|
|
2011-09-11 12:58:57 -04:00
|
|
|
echo 'export PATH="'${RBENV_ROOT}'/shims:${PATH}"'
|
2011-08-04 00:16:28 -04:00
|
|
|
|
2011-08-16 01:13:12 -04:00
|
|
|
case "$shell" in
|
|
|
|
bash | zsh )
|
|
|
|
echo "source \"$root/completions/rbenv.${shell}\""
|
|
|
|
;;
|
|
|
|
esac
|
2011-08-15 02:18:04 -04:00
|
|
|
|
2011-12-25 20:59:24 -05:00
|
|
|
if [ -z "$no_rehash" ]; then
|
|
|
|
echo 'rbenv rehash 2>/dev/null'
|
|
|
|
fi
|
2011-08-23 12:34:42 -04:00
|
|
|
|
|
|
|
commands=(`rbenv commands --sh`)
|
|
|
|
IFS="|"
|
|
|
|
cat <<EOS
|
2011-12-24 17:49:22 -05:00
|
|
|
rbenv() {
|
2011-09-10 20:50:12 -04:00
|
|
|
command="\$1"
|
|
|
|
if [ "\$#" -gt 0 ]; then
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
2011-09-10 20:45:36 -04:00
|
|
|
case "\$command" in
|
2011-08-23 12:34:42 -04:00
|
|
|
${commands[*]})
|
2011-09-10 20:45:36 -04:00
|
|
|
eval \`rbenv "sh-\$command" "\$@"\`;;
|
2011-08-23 12:34:42 -04:00
|
|
|
*)
|
2011-09-10 20:45:36 -04:00
|
|
|
command rbenv "\$command" "\$@";;
|
2011-09-10 20:50:12 -04:00
|
|
|
esac
|
|
|
|
}
|
2011-08-23 12:34:42 -04:00
|
|
|
EOS
|