my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.0 KiB

3 years ago
  1. # Ruby Version Manager plugin
  2. This plugin adds some utility functions and completions for [Ruby Version Manager](https://rvm.io/).
  3. To use it, add `rvm` to the plugins array in your zshrc file:
  4. ```zsh
  5. plugins=(... rvm)
  6. ```
  7. ## Aliases
  8. | Alias | Command |
  9. | ------------ | -------------------- |
  10. | `rb18` | `rvm use ruby-1.8.7` |
  11. | `rb19` | `rvm use ruby-1.9.3` |
  12. | `rb20` | `rvm use ruby-2.0.0` |
  13. | `rb21` | `rvm use ruby-2.1` |
  14. | `rb22` | `rvm use ruby-2.2` |
  15. | `rb23` | `rvm use ruby-2.3` |
  16. | `rb24` | `rvm use ruby-2.4` |
  17. | `rb25` | `rvm use ruby-2.5` |
  18. | `rb26` | `rvm use ruby-2.6` |
  19. | `rb27` | `rvm use ruby-2.7` |
  20. | `rb30` | `rvm use ruby-3.0` |
  21. | `rvm-update` | `rvm get head` |
  22. | `gems` | `gem list` |
  23. | `rvms` | `rvm gemset` |
  24. ## Deprecated versions
  25. At the time of writing this (2021-12-28), Ruby versions until 2.5 are [EOL][1],
  26. and will be removed in the future.
  27. [1]: https://endoflife.date/ruby