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.
26 lines
654 B
26 lines
654 B
# 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 gein="gem install" |
|
alias geun="gem uninstall" |
|
alias geli="gem list" |
|
alias gei="gem info" |
|
alias geiall="gem info --all" |
|
alias geca="gem cert --add" |
|
alias gecr="gem cert --remove" |
|
alias gecb="gem cert --build" |
|
alias geclup="gem cleanup -n" |
|
alias gegi="gem generate_index" |
|
alias geh="gem help" |
|
alias gel="gem lock" |
|
alias geo="gem open" |
|
alias geoe="gem open -e" |
|
alias rrun="ruby -e" |
|
alias rserver="ruby -run -e httpd . -p 8080" # requires webrick
|
|
|