diff options
author | Andrew Hodges <betawaffle@gmail.com> | 2011-05-28 10:16:06 -0400 |
---|---|---|
committer | Andrew Hodges <betawaffle@gmail.com> | 2011-05-28 10:16:06 -0400 |
commit | 3e433165502a01028fcd0368161a2193eaeb386c (patch) | |
tree | 93e0d402b61780bf1c5f74ef690112a0261844fb /plugins/rvm | |
parent | ab2a7b51a8c3ead55a272fba58232d0823e519a2 (diff) | |
download | zsh-3e433165502a01028fcd0368161a2193eaeb386c.tar.gz zsh-3e433165502a01028fcd0368161a2193eaeb386c.tar.bz2 zsh-3e433165502a01028fcd0368161a2193eaeb386c.zip |
Ruby Switching Helpers
Add helper functions to switch gemsets on ruby-1.8.7-p334 and ruby-1.9.2-p180.
Add completion definitions for helper functions.
Diffstat (limited to 'plugins/rvm')
-rw-r--r-- | plugins/rvm/rvm.plugin.zsh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/plugins/rvm/rvm.plugin.zsh b/plugins/rvm/rvm.plugin.zsh index ef934d547..274123836 100644 --- a/plugins/rvm/rvm.plugin.zsh +++ b/plugins/rvm/rvm.plugin.zsh @@ -1,3 +1,28 @@ fpath=($ZSH/plugins/rvm $fpath) autoload -U compinit compinit -i + +local ruby18='ruby-1.8.7-p334' +local ruby19='ruby-1.9.2-p180' + +function rb18 { + if [ -z "$1" ]; then + rvm use "$ruby18" + else + rvm use "$ruby18@$1" + fi +} + +_rb18() {compadd `ls -1 $rvm_path/gems | grep "^$ruby18@" | sed -e "s/^$ruby18@//" | awk '{print $1}'`} +compdef _rb18 rb18 + +function rb19 { + if [ -z "$1" ]; then + rvm use "$ruby19" + else + rvm use "$ruby19@$1" + fi +} + +_rb19() {compadd `ls -1 $rvm_path/gems | grep "^$ruby19@" | sed -e "s/^$ruby19@//" | awk '{print $1}'`} +compdef _rb19 rb19 |