mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
b8715bfee6
Docs are comprised from "Usage", "Summary" and "Help" sections, where "Help" can span multiple commented lines. If it is missing, "Summary" is shown in its place. References #204, references #206
36 lines
791 B
Bash
Executable file
36 lines
791 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Usage: rbenv versions [--bare]
|
|
# Summary: List all Ruby versions known by rbenv
|
|
set -e
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
|
|
|
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"
|
|
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
|
|
|
|
for path in "${RBENV_ROOT}/versions/"*; do
|
|
if [ -d "$path" ]; then
|
|
print_version "${path##*/}"
|
|
fi
|
|
done
|