2011-08-12 05:33:45 -04:00
|
|
|
#!/usr/bin/env bash
|
2012-12-29 17:34:53 -05:00
|
|
|
# Summary: List all Ruby versions available to rbenv
|
2012-12-29 13:06:20 -05:00
|
|
|
# Usage: rbenv versions [--bare]
|
2012-12-29 17:34:53 -05:00
|
|
|
#
|
|
|
|
# Lists all Ruby versions found in `$RBENV_ROOT/versions/*'.
|
2012-12-29 13:06:20 -05:00
|
|
|
|
2011-08-12 05:33:45 -04:00
|
|
|
set -e
|
2011-09-12 11:11:59 -04:00
|
|
|
[ -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=""
|
2012-10-08 08:48:31 -04:00
|
|
|
current_version=""
|
2012-12-12 22:38:57 -05:00
|
|
|
include_system=""
|
2011-08-09 16:41:35 -04:00
|
|
|
else
|
|
|
|
hit_prefix="* "
|
|
|
|
miss_prefix=" "
|
2012-10-08 08:48:31 -04:00
|
|
|
current_version="$(rbenv-version-name || true)"
|
2012-12-12 22:38:57 -05:00
|
|
|
include_system="1"
|
2011-08-03 00:19:37 -04:00
|
|
|
fi
|
|
|
|
|
2014-10-12 22:02:04 -04:00
|
|
|
num_versions=0
|
|
|
|
|
2012-12-12 19:52:13 -05:00
|
|
|
print_version() {
|
|
|
|
if [ "$1" == "$current_version" ]; then
|
2012-12-30 20:01:30 -05:00
|
|
|
echo "${hit_prefix}$(rbenv-version 2>/dev/null)"
|
2012-12-12 19:52:13 -05:00
|
|
|
else
|
|
|
|
echo "${miss_prefix}$1"
|
|
|
|
fi
|
2014-10-12 22:02:04 -04:00
|
|
|
num_versions=$((num_versions + 1))
|
2012-12-12 19:52:13 -05:00
|
|
|
}
|
|
|
|
|
2012-12-12 22:38:57 -05: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-12 19:52:13 -05:00
|
|
|
print_version system
|
|
|
|
fi
|
|
|
|
|
2014-10-12 22:02:04 -04:00
|
|
|
shopt -s nullglob
|
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
|
2012-12-12 19:52:13 -05:00
|
|
|
print_version "${path##*/}"
|
2011-08-01 16:50:26 -04:00
|
|
|
fi
|
|
|
|
done
|
2014-10-12 22:02:04 -04:00
|
|
|
shopt -u nullglob
|
|
|
|
|
|
|
|
if [ "$num_versions" -eq 0 ] && [ -n "$include_system" ]; then
|
|
|
|
echo "Warning: no Ruby detected on the system" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|