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-02 19:01:46 -04:00
|
|
|
|
2011-08-16 17:26:57 -04:00
|
|
|
resolve_link() {
|
|
|
|
$(type -p greadlink readlink | head -1) $1
|
|
|
|
}
|
|
|
|
|
2011-08-02 19:01:46 -04:00
|
|
|
abs_dirname() {
|
2011-08-03 00:05:24 -04:00
|
|
|
local cwd="$(pwd)"
|
|
|
|
local path="$1"
|
|
|
|
|
2011-08-02 19:01:46 -04:00
|
|
|
while [ -n "$path" ]; do
|
2011-08-03 20:04:42 -04:00
|
|
|
cd "${path%/*}"
|
|
|
|
local name="${path##*/}"
|
2011-08-16 17:26:57 -04:00
|
|
|
path="$(resolve_link "$name" || true)"
|
2011-08-02 19:01:46 -04:00
|
|
|
done
|
|
|
|
|
|
|
|
pwd
|
2011-08-03 00:05:24 -04:00
|
|
|
cd "$cwd"
|
2011-08-02 19:01:46 -04:00
|
|
|
}
|
|
|
|
|
2011-09-11 13:05:56 -04:00
|
|
|
if [ -z "${RBENV_ROOT}" ]; then
|
|
|
|
RBENV_ROOT="${HOME}/.rbenv"
|
2011-09-14 13:45:44 -04:00
|
|
|
else
|
|
|
|
RBENV_ROOT="${RBENV_ROOT%/}"
|
2011-09-11 13:05:56 -04:00
|
|
|
fi
|
|
|
|
export RBENV_ROOT
|
2011-08-25 03:24:44 -04:00
|
|
|
|
2011-09-27 16:50:39 -04:00
|
|
|
if [ -z "${RBENV_DIR}" ]; then
|
|
|
|
RBENV_DIR="$(pwd)"
|
|
|
|
fi
|
|
|
|
export RBENV_DIR
|
|
|
|
|
2011-09-21 14:00:23 -04:00
|
|
|
|
2011-09-23 11:44:00 -04:00
|
|
|
shopt -s nullglob
|
2011-09-23 11:47:45 -04:00
|
|
|
|
|
|
|
bin_path="$(abs_dirname "$0")"
|
2011-09-23 11:44:00 -04:00
|
|
|
for plugin_bin in "${RBENV_ROOT}/plugins/"*/bin; do
|
2011-09-23 11:47:45 -04:00
|
|
|
bin_path="${bin_path}:${plugin_bin}"
|
2011-09-23 11:44:00 -04:00
|
|
|
done
|
2011-09-23 11:47:45 -04:00
|
|
|
export PATH="${bin_path}:${PATH}"
|
2011-09-23 11:44:00 -04:00
|
|
|
|
2011-09-23 11:47:45 -04:00
|
|
|
hook_path="${RBENV_HOOK_PATH}:${RBENV_ROOT}/rbenv.d:/usr/local/etc/rbenv.d:/etc/rbenv.d"
|
|
|
|
for plugin_hook in "${RBENV_ROOT}/plugins/"*/etc/rbenv.d; do
|
|
|
|
hook_path="${hook_path}:${plugin_hook}"
|
|
|
|
done
|
|
|
|
export RBENV_HOOK_PATH="$hook_path"
|
|
|
|
|
|
|
|
shopt -u nullglob
|
2011-09-23 11:44:00 -04:00
|
|
|
|
2011-08-02 19:01:46 -04:00
|
|
|
|
|
|
|
command="$1"
|
2011-08-14 14:51:51 -04:00
|
|
|
case "$command" in
|
|
|
|
"" | "-h" | "--help" )
|
2011-08-17 18:35:04 -04:00
|
|
|
echo -e "rbenv 0.2.0-pre\n$(rbenv-help)" >&2
|
2011-08-14 09:30:13 -04:00
|
|
|
;;
|
2011-08-14 14:51:51 -04:00
|
|
|
* )
|
2011-08-02 19:01:46 -04:00
|
|
|
command_path="$(command -v "rbenv-$command" || true)"
|
|
|
|
if [ -z "$command_path" ]; then
|
|
|
|
echo "rbenv: no such command \`$command'" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
shift 1
|
|
|
|
exec "$command_path" "$@"
|
2011-08-14 09:30:13 -04:00
|
|
|
;;
|
|
|
|
esac
|