ruby.plugin.zsh 322 B

1234567891011121314
  1. # TODO: Make this compatible with rvm.
  2. # Run sudo gem on the system ruby, not the active ruby.
  3. alias sgem='sudo gem'
  4. # Find ruby file
  5. alias rfind='find . -name "*.rb" | xargs grep -n'
  6. # Shorthand Ruby
  7. alias rb="ruby"
  8. # Gem Command Shorthands
  9. alias gin="gem install"
  10. alias gun="gem uninstall"
  11. alias gli="gem list"