1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-11 21:13:46 -05:00

Remove set- prefix from local and default commands.

This commit is contained in:
Graham Ashton
2011-08-13 07:34:15 +01:00
parent 83ced494fa
commit 7a0cde9a4e
7 changed files with 41 additions and 33 deletions

12
libexec/rbenv-default Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash -e
RBENV_VERSION="$1"
if [ -z "$RBENV_VERSION" ]; then
echo "usage: rbenv default VERSION" >&2
exit 1
fi
# Make sure the specified version is installed
rbenv-prefix "$RBENV_VERSION" >/dev/null
echo "$RBENV_VERSION" > "${HOME}/.rbenv/default"

View File

@@ -22,23 +22,23 @@ case "$1" in
Some useful rbenv commands are:
commands List all commands
rehash Rehash rbenv shims (run this after installing binaries)
set-default Set the default Ruby version
set-local Set a local directory-specific Ruby version
default Set the default Ruby version
local Set a local directory-specific Ruby version
version Show the current Ruby version
versions List all Ruby versions known by rbenv
See 'rbenv help <command>' for more information on a specific command.
For more information, see: https://github.com/sstephenson/rbenv#readme"
;;
set-default) echo "usage: rbenv set-default <version>
default) echo "usage: rbenv default <version>
Sets the default Ruby version. You can override the default at any time
by setting a directory-specific version with \`rbenv set-local' or by
by setting a directory-specific version with \`rbenv local' or by
setting the RBENV_VERSION environment variable.
$(print_set_version)"
;;
set-local) echo "usage: rbenv set-local <version>
local) echo "usage: rbenv local <version>
Sets the local directory-specific Ruby version by writing the version
name to a file named '.rbenv-version'.
@@ -46,7 +46,7 @@ name to a file named '.rbenv-version'.
When you run a Ruby command, rbenv will look for an '.rbenv-version'
file in the current directory and each parent directory. If no such
file is found in the tree, rbenv will use the default Ruby version
specified with \`rbenv set-default', or the version specified in the
specified with \`rbenv default', or the version specified in the
RBENV_VERSION environment variable.
$(print_set_version)"

12
libexec/rbenv-local Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash -e
RBENV_VERSION="$1"
if [ -z "$RBENV_VERSION" ]; then
echo "usage: rbenv local VERSION" >&2
exit 1
fi
# Make sure the specified version is installed
rbenv-prefix "$RBENV_VERSION" >/dev/null
echo "$RBENV_VERSION" > .rbenv-version

View File

@@ -1,13 +1,5 @@
#!/usr/bin/env bash
set -e
RBENV_VERSION="$1"
if [ -z "$RBENV_VERSION" ]; then
echo "usage: rbenv set-default VERSION" >&2
exit 1
fi
# Make sure the specified version is installed
rbenv-prefix "$RBENV_VERSION" >/dev/null
echo "$RBENV_VERSION" > "${HOME}/.rbenv/default"
echo "set-default has been renamed to default" >&2
rbenv-default "$@"

View File

@@ -1,13 +1,5 @@
#!/usr/bin/env bash
set -e
RBENV_VERSION="$1"
if [ -z "$RBENV_VERSION" ]; then
echo "usage: rbenv set-local VERSION" >&2
exit 1
fi
# Make sure the specified version is installed
rbenv-prefix "$RBENV_VERSION" >/dev/null
echo "$RBENV_VERSION" > .rbenv-version
echo "set-local has been renamed to local" >&2
rbenv-local "$@"