1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 07:20:09 +00:00

gem push alias and gem yank alias

This commit is contained in:
Josh Burns 2014-02-28 01:32:01 +11:00
parent da573f6356
commit fdbf0cbe46

View file

@ -1,2 +1,7 @@
alias gemb="gem build *.gemspec"
alias gemp="gem push *.gem"
alias gemp="gem push *.gem"
# gemy GEM 0.0.0 = gem yank GEM -v 0.0.0
function gemy {
gem yank $1 -v $2
}