pyenv/libexec/rbenv-versions

40 lines
859 B
Text
Raw Normal View History

#!/usr/bin/env bash
# Summary: List all Ruby versions available to rbenv
# Usage: rbenv versions [--bare]
#
# Lists all Ruby versions found in `$RBENV_ROOT/versions/*'.
set -e
[ -n "$RBENV_DEBUG" ] && set -x
2011-08-01 16:56:52 -04:00
2011-08-03 00:19:37 -04:00
if [ "$1" = "--bare" ]; then
hit_prefix=""
miss_prefix=""
current_version=""
include_system=""
else
hit_prefix="* "
miss_prefix=" "
current_version="$(rbenv-version-name || true)"
include_system="1"
2011-08-03 00:19:37 -04:00
fi
print_version() {
if [ "$1" == "$current_version" ]; then
echo "${hit_prefix}$(rbenv-version)"
else
echo "${miss_prefix}$1"
fi
}
# 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
print_version system
fi
2011-09-11 12:58:57 -04:00
for path in "${RBENV_ROOT}/versions/"*; do
2011-08-01 16:50:26 -04:00
if [ -d "$path" ]; then
print_version "${path##*/}"
2011-08-01 16:50:26 -04:00
fi
done