diff options
author | Robby Russell <robby@planetargon.com> | 2014-03-08 08:34:50 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-03-08 08:34:50 -0800 |
commit | 59db638d991113ed8f55ff88c4ffbe22314b4fe7 (patch) | |
tree | 45b6e314aa0c709a964955aa72311fe42340e2d4 /plugins/gem/gem.plugin.zsh | |
parent | 7b7c5fd12be7c583165832727d4a1f252562b6dc (diff) | |
parent | fdbf0cbe4687c32846764695fabdf4acdb63a62f (diff) | |
download | zsh-59db638d991113ed8f55ff88c4ffbe22314b4fe7.tar.gz zsh-59db638d991113ed8f55ff88c4ffbe22314b4fe7.tar.bz2 zsh-59db638d991113ed8f55ff88c4ffbe22314b4fe7.zip |
Merge pull request #2565 from theallegedjosh/master
ruby-gems aliases
Diffstat (limited to 'plugins/gem/gem.plugin.zsh')
-rw-r--r-- | plugins/gem/gem.plugin.zsh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/gem/gem.plugin.zsh b/plugins/gem/gem.plugin.zsh new file mode 100644 index 000000000..938f5c993 --- /dev/null +++ b/plugins/gem/gem.plugin.zsh @@ -0,0 +1,7 @@ +alias gemb="gem build *.gemspec" +alias gemp="gem push *.gem" + +# gemy GEM 0.0.0 = gem yank GEM -v 0.0.0 +function gemy { + gem yank $1 -v $2 +}
\ No newline at end of file |