mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 16:30:09 +00:00
e273cf004e
Added some Gem command shorthands, and ruby shorthand
14 lines
322 B
Bash
14 lines
322 B
Bash
# TODO: Make this compatible with rvm.
|
|
# Run sudo gem on the system ruby, not the active ruby.
|
|
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"
|