Forrest logo
back to context overview

rbenv

List of commands for rbenv:

  • rbenv:tldr:0c51c rbenv: Display a list of installed Ruby versions.
    $ rbenv versions
    try on your machine
    explain this command
  • rbenv:tldr:546c1 rbenv: Display a list of the latest stable versions for each Ruby.
    $ rbenv install --list
    try on your machine
    explain this command
  • rbenv:tldr:54ce4 rbenv: Use a specific Ruby version for an application/project directory.
    $ rbenv local ${version}
    try on your machine
    explain this command
  • rbenv:tldr:6ac53 rbenv: Use a specific Ruby version across the whole system.
    $ rbenv global ${version}
    try on your machine
    explain this command
  • rbenv:tldr:942a4 rbenv: Display all Ruby versions that contain the specified executable.
    $ rbenv whence ${executable}
    try on your machine
    explain this command
  • rbenv:tldr:9d311 rbenv: Display the currently selected Ruby version.
    $ rbenv version
    try on your machine
    explain this command
  • rbenv:tldr:a6cef rbenv: Install a Ruby version.
    $ rbenv install ${version}
    try on your machine
    explain this command
  • rbenv:tldr:e7adb rbenv: Uninstall a Ruby version.
    $ rbenv uninstall ${version}
    try on your machine
    explain this command
back to context overview