mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
Add rbenv shell
to help
This commit is contained in:
parent
a3d3005859
commit
058e2cb7a6
1 changed files with 11 additions and 0 deletions
|
@ -25,6 +25,7 @@ Some useful rbenv commands are:
|
|||
rehash Rehash rbenv shims (run this after installing binaries)
|
||||
global Set or show the global Ruby version
|
||||
local Set or show the local directory-specific Ruby version
|
||||
shell Set or show the shell-specific Ruby version
|
||||
version Show the current Ruby version
|
||||
versions List all Ruby versions known by rbenv
|
||||
|
||||
|
@ -40,6 +41,7 @@ or by setting the RBENV_VERSION environment variable.
|
|||
$(print_set_version)"
|
||||
;;
|
||||
local) echo "usage: rbenv local <version>
|
||||
rbenv local --unset
|
||||
|
||||
Sets the local directory-specific Ruby version by writing the version
|
||||
name to a file named '.rbenv-version'.
|
||||
|
@ -50,6 +52,15 @@ file is found in the tree, rbenv will use the global Ruby version
|
|||
specified with \`rbenv global', or the version specified in the
|
||||
RBENV_VERSION environment variable.
|
||||
|
||||
$(print_set_version)"
|
||||
;;
|
||||
shell) echo "usage: rbenv shell <version>
|
||||
rbenv shell --unset
|
||||
|
||||
Sets a shell-specific Ruby version by setting the 'RBENV_VERSION'
|
||||
environment variable in your shell. This version overrides both
|
||||
project-specific versions and the global version.
|
||||
|
||||
$(print_set_version)"
|
||||
;;
|
||||
*) echo "No command arguments needed or invalid/undocumented command."
|
||||
|
|
Loading…
Reference in a new issue