Update ruby.plugin.zsh

Added some Gem command shorthands, and ruby shorthand
This commit is contained in:
Brandon Weaver 2013-09-26 15:31:15 -05:00
commit 63a2b6c857

View file

@ -4,3 +4,11 @@ alias sgem='sudo gem'
# Find ruby file
alias rfind='find . -name "*.rb" | xargs grep -n'
# Shorthand Ruby
alias rb="ruby"
# Gem Command Shorthands
alias gin="gem install"
alias gun="gem uninstall"
alias gli="gem list"