2011-08-18 19:11:40 +00:00
|
|
|
#!/usr/bin/env bash
|
2012-12-29 22:34:53 +00:00
|
|
|
# Summary: Detect the file that sets the current rbenv version
|
2011-08-18 19:11:40 +00:00
|
|
|
set -e
|
2011-09-12 15:11:59 +00:00
|
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
2011-08-18 19:11:40 +00:00
|
|
|
|
2012-12-27 19:39:36 +00:00
|
|
|
find_local_version_file() {
|
|
|
|
local root="$1"
|
|
|
|
while [ -n "$root" ]; do
|
2012-12-31 00:35:08 +00:00
|
|
|
if [ -e "${root}/.ruby-version" ]; then
|
|
|
|
echo "${root}/.ruby-version"
|
|
|
|
exit
|
|
|
|
elif [ -e "${root}/.rbenv-version" ]; then
|
2012-12-27 19:39:36 +00:00
|
|
|
echo "${root}/.rbenv-version"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
root="${root%/*}"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
find_local_version_file "$RBENV_DIR"
|
|
|
|
[ "$RBENV_DIR" = "$PWD" ] || find_local_version_file "$PWD"
|
2011-08-18 19:11:40 +00:00
|
|
|
|
2011-09-28 14:45:58 +00:00
|
|
|
global_version_file="${RBENV_ROOT}/version"
|
2011-08-18 19:32:33 +00:00
|
|
|
|
2011-09-28 14:45:58 +00:00
|
|
|
if [ -e "$global_version_file" ]; then
|
|
|
|
echo "$global_version_file"
|
|
|
|
elif [ -e "${RBENV_ROOT}/global" ]; then
|
|
|
|
echo "${RBENV_ROOT}/global"
|
|
|
|
elif [ -e "${RBENV_ROOT}/default" ]; then
|
|
|
|
echo "${RBENV_ROOT}/default"
|
2011-08-18 19:32:33 +00:00
|
|
|
else
|
2011-09-28 14:45:58 +00:00
|
|
|
echo "$global_version_file"
|
2011-08-18 19:32:33 +00:00
|
|
|
fi
|