2011-08-18 21:11:40 +02:00
|
|
|
#!/usr/bin/env bash
|
2012-12-29 19:06:20 +01:00
|
|
|
#
|
2013-01-03 17:00:10 +01:00
|
|
|
# Summary: Set or show the local application-specific Ruby version
|
2012-12-29 19:06:20 +01:00
|
|
|
#
|
|
|
|
# Usage: rbenv local <version>
|
|
|
|
# rbenv local --unset
|
|
|
|
#
|
2013-01-03 17:00:10 +01:00
|
|
|
# Sets the local application-specific Ruby version by writing the
|
|
|
|
# version name to a file named `.ruby-version'.
|
2012-12-29 19:06:20 +01:00
|
|
|
#
|
2012-12-31 04:14:04 +01:00
|
|
|
# When you run a Ruby command, rbenv will look for a `.ruby-version'
|
2012-12-29 19:06:20 +01: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 17:00:10 +01:00
|
|
|
# specified with `rbenv global'. A version specified with the
|
|
|
|
# `RBENV_VERSION' environment variable takes precedence over local
|
|
|
|
# and global versions.
|
2012-12-29 19:06:20 +01: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 21:11:40 +02:00
|
|
|
set -e
|
2011-09-12 17:11:59 +02:00
|
|
|
[ -n "$RBENV_DEBUG" ] && set -x
|
2011-08-13 08:34:15 +02:00
|
|
|
|
2011-09-13 17:13:27 +02:00
|
|
|
# Provide rbenv completions
|
|
|
|
if [ "$1" = "--complete" ]; then
|
2011-09-13 20:12:04 +02:00
|
|
|
echo --unset
|
|
|
|
echo system
|
2011-09-13 17:13:27 +02:00
|
|
|
exec rbenv-versions --bare
|
|
|
|
fi
|
|
|
|
|
2011-08-13 08:34:15 +02:00
|
|
|
RBENV_VERSION="$1"
|
|
|
|
|
2011-09-11 17:16:22 +02:00
|
|
|
if [ "$RBENV_VERSION" = "--unset" ]; then
|
2015-12-29 03:34:05 +01:00
|
|
|
rm -f .ruby-version
|
2011-09-11 17:16:22 +02:00
|
|
|
elif [ -n "$RBENV_VERSION" ]; then
|
2013-04-08 21:35:22 +02:00
|
|
|
rbenv-version-file-write .ruby-version "$RBENV_VERSION"
|
2011-08-18 21:11:40 +02:00
|
|
|
else
|
2015-12-23 15:21:24 +01:00
|
|
|
if version_file="$(rbenv-version-file "$PWD")"; then
|
|
|
|
rbenv-version-file-read "$version_file"
|
|
|
|
else
|
|
|
|
echo "rbenv: no local version configured for this directory" >&2
|
2011-08-18 21:11:40 +02:00
|
|
|
exit 1
|
2015-12-23 15:21:24 +01:00
|
|
|
fi
|
2011-08-13 08:50:23 +02:00
|
|
|
fi
|