diff options
author | Christian Köstlin <christian.koestlin@esrlabs.com> | 2012-07-11 14:29:54 +0200 |
---|---|---|
committer | ncanceill <nicolas.canceill@ens-cachan.org> | 2014-07-16 12:27:01 +0200 |
commit | 39a1e2a083872ccca63fcc9ead44834627c176cf (patch) | |
tree | b0d558d8b3a32c5439b8d6f4958c56ec564858a9 /plugins | |
parent | 7478b754a1e53a6c058d7807700869474b68bb21 (diff) | |
download | zsh-39a1e2a083872ccca63fcc9ead44834627c176cf.tar.gz zsh-39a1e2a083872ccca63fcc9ead44834627c176cf.tar.bz2 zsh-39a1e2a083872ccca63fcc9ead44834627c176cf.zip |
gem plugin: added _files to install command
is useful if you want to install a local gem from the filesystem
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/gem/_gem | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/gem/_gem b/plugins/gem/_gem index 25967f1e7..92feebe95 100644 --- a/plugins/gem/_gem +++ b/plugins/gem/_gem @@ -59,6 +59,8 @@ case "$words[1]" in build) _files -g "*.gemspec" ;; + install) + _files ;; list) if [[ "$state" == forms ]]; then _gem_installed |