2011-08-12 09:33:45 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
2011-09-12 15:11:59 +00:00
|
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
2011-08-01 20:56:52 +00:00
|
|
|
|
2011-08-03 04:19:37 +00:00
|
|
|
if [ "$1" = "--bare" ]; then
|
|
|
|
hit_prefix=""
|
|
|
|
miss_prefix=""
|
2012-10-08 12:48:31 +00:00
|
|
|
current_version=""
|
2012-12-13 03:38:57 +00:00
|
|
|
include_system=""
|
2011-08-09 20:41:35 +00:00
|
|
|
else
|
|
|
|
hit_prefix="* "
|
|
|
|
miss_prefix=" "
|
2012-10-08 12:48:31 +00:00
|
|
|
current_version="$(rbenv-version-name || true)"
|
2012-12-13 03:38:57 +00:00
|
|
|
include_system="1"
|
2011-08-03 04:19:37 +00:00
|
|
|
fi
|
|
|
|
|
2012-12-13 00:52:13 +00:00
|
|
|
print_version() {
|
|
|
|
if [ "$1" == "$current_version" ]; then
|
|
|
|
echo "${hit_prefix}$(rbenv-version)"
|
|
|
|
else
|
|
|
|
echo "${miss_prefix}$1"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2012-12-13 03:38:57 +00:00
|
|
|
# Include "system" in the non-bare output, if it exists
|
|
|
|
if [ -n "$include_system" ] && RBENV_VERSION=system rbenv-which ruby >/dev/null 2>&1; then
|
2012-12-13 00:52:13 +00:00
|
|
|
print_version system
|
|
|
|
fi
|
|
|
|
|
2011-09-11 16:58:57 +00:00
|
|
|
for path in "${RBENV_ROOT}/versions/"*; do
|
2011-08-01 20:50:26 +00:00
|
|
|
if [ -d "$path" ]; then
|
2012-12-13 00:52:13 +00:00
|
|
|
print_version "${path##*/}"
|
2011-08-01 20:50:26 +00:00
|
|
|
fi
|
|
|
|
done
|