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.

21 lines
748 B

3 years ago
  1. # JRuby plugin
  2. This plugin adds aliases for [JRuby](https://www.jruby.org/).
  3. To use it, add `jruby` to the plugins array in your zshrc file:
  4. ```zsh
  5. plugins=(... jruby)
  6. ```
  7. ## Requirements
  8. This plugin assumes you already have jruby installed and available in your [path](https://www.jruby.org/getting-started).
  9. ## Aliases
  10. | Alias | Command |
  11. | ------------ | ---------------------------------------------------------------- |
  12. | `jrspec` | `jruby --debug -S rspec --debug` |
  13. | `jprofile` | `jruby --profile.api -S rspec` |
  14. | `jexec` | `jruby -S` |