2012-12-12 18:40:29 -05:00
|
|
|
#!/usr/bin/env bash
|
2012-12-29 17:34:53 -05:00
|
|
|
# Summary: Display the version of rbenv
|
|
|
|
#
|
2012-12-29 22:50:38 -05:00
|
|
|
# Displays the current revision info of rbenv from git if available,
|
|
|
|
# or falls back to the version of the last release.
|
2012-12-29 17:34:53 -05:00
|
|
|
#
|
|
|
|
# The format of the git revision is:
|
|
|
|
# ${version}-${num_commits}-g${git_sha}
|
2012-12-29 22:50:38 -05:00
|
|
|
# where `num_commits` is the number of commits since `version` was
|
|
|
|
# tagged.
|
2012-12-29 17:34:53 -05:00
|
|
|
|
2012-12-12 18:40:29 -05:00
|
|
|
set -e
|
|
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
|
|
|
|
2012-12-13 12:22:06 -05:00
|
|
|
version=0.3.0
|
2012-12-12 18:40:29 -05:00
|
|
|
|
|
|
|
cd "$RBENV_ROOT"
|
|
|
|
git_revision="$(git describe --tags HEAD 2>/dev/null || true)"
|
2012-12-13 12:22:06 -05:00
|
|
|
git_revision="${git_revision#v}"
|
2012-12-12 18:40:29 -05:00
|
|
|
|
2012-12-13 12:22:06 -05:00
|
|
|
echo "rbenv ${git_revision:-$version}"
|