2011-08-18 15:11:40 -04:00
|
|
|
#!/usr/bin/env bash
|
2012-12-29 13:06:20 -05:00
|
|
|
#
|
2013-01-03 11:00:10 -05:00
|
|
|
# Summary: Set or show the local application-specific Ruby version
|
2012-12-29 13:06:20 -05:00
|
|
|
#
|
|
|
|
# Usage: rbenv local <version>
|
|
|
|
# rbenv local --unset
|
|
|
|
#
|
2013-01-03 11:00:10 -05:00
|
|
|
# Sets the local application-specific Ruby version by writing the
|
|
|
|
# version name to a file named `.ruby-version'.
|
2012-12-29 13:06:20 -05:00
|
|
|
#
|
2012-12-30 22:14:04 -05:00
|
|
|
# When you run a Ruby command, rbenv will look for a `.ruby-version'
|
2012-12-29 13:06:20 -05:00
|
|
|
# file in the current directory and each parent directory. If no such
|
|
|
|
# file is found in the tree, rbenv will use the global Ruby version
|
2013-01-03 11:00:10 -05:00
|
|
|
# specified with `rbenv global'. A version specified with the
|
|
|
|
# `RBENV_VERSION' environment variable takes precedence over local
|
|
|
|
# and global versions.
|
2012-12-29 13:06:20 -05:00
|
|
|
#
|
2012-12-30 22:14:04 -05:00
|
|
|
# For backwards compatibility, rbenv will also read version
|
|
|
|
# specifications from `.rbenv-version' files, but a `.ruby-version'
|
|
|
|
# file in the same directory takes precedence.
|
|
|
|
#
|
2012-12-29 13:06:20 -05:00
|
|
|
# <version> should be a string matching a Ruby version known to rbenv.
|
|
|
|
# The special version string `system' will use your default system Ruby.
|
|
|
|
# Run `rbenv versions' for a list of available Ruby versions.
|
|
|
|
|
2011-08-18 15:11:40 -04:00
|
|
|
set -e
|
2011-09-12 11:11:59 -04:00
|
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
2011-08-13 02:34:15 -04:00
|
|
|
|
2011-09-13 11:13:27 -04:00
|
|
|
# Provide rbenv completions
|
|
|
|
if [ "$1" = "--complete" ]; then
|
2011-09-13 14:12:04 -04:00
|
|
|
echo --unset
|
|
|
|
echo system
|
2011-09-13 11:13:27 -04:00
|
|
|
exec rbenv-versions --bare
|
|
|
|
fi
|
|
|
|
|
2011-08-13 02:34:15 -04:00
|
|
|
RBENV_VERSION="$1"
|
|
|
|
|
2011-09-11 11:16:22 -04:00
|
|
|
if [ "$RBENV_VERSION" = "--unset" ]; then
|
2012-12-30 22:14:04 -05:00
|
|
|
rm -f .ruby-version .rbenv-version
|
2011-09-11 11:16:22 -04:00
|
|
|
elif [ -n "$RBENV_VERSION" ]; then
|
2013-04-08 15:35:22 -04:00
|
|
|
previous_file="$(RBENV_VERSION= rbenv-version-origin || true)"
|
|
|
|
rbenv-version-file-write .ruby-version "$RBENV_VERSION"
|
|
|
|
if [ "$previous_file" -ef .rbenv-version ]; then
|
2012-12-30 22:14:04 -05:00
|
|
|
rm -f .rbenv-version
|
2013-01-02 13:51:47 -05:00
|
|
|
{ echo "rbenv: removed existing \`.rbenv-version' file and migrated"
|
|
|
|
echo " local version specification to \`.ruby-version' file"
|
|
|
|
} >&2
|
2012-12-30 22:14:04 -05:00
|
|
|
fi
|
2011-08-18 15:11:40 -04:00
|
|
|
else
|
2012-12-30 22:14:04 -05:00
|
|
|
rbenv-version-file-read .ruby-version ||
|
|
|
|
rbenv-version-file-read .rbenv-version ||
|
2011-08-18 15:11:40 -04:00
|
|
|
{ echo "rbenv: no local version configured for this directory"
|
|
|
|
exit 1
|
|
|
|
} >&2
|
2011-08-13 02:50:23 -04:00
|
|
|
fi
|