diff options
author | Alexandre Joly <alexandre.joly@futurecom.ch> | 2013-10-29 10:33:37 +0100 |
---|---|---|
committer | Alexandre Joly <alexandre.joly@futurecom.ch> | 2013-10-29 10:33:37 +0100 |
commit | 0eb86f82d6d3a6cf05b11818bb69ba4de80124da (patch) | |
tree | dce6a37116e0df663119727b750dfb7846bbb371 /plugins/pod | |
parent | 40b1cf01035a3d74395b5d9def4f79af17fca4c8 (diff) | |
download | zsh-0eb86f82d6d3a6cf05b11818bb69ba4de80124da.tar.gz zsh-0eb86f82d6d3a6cf05b11818bb69ba4de80124da.tar.bz2 zsh-0eb86f82d6d3a6cf05b11818bb69ba4de80124da.zip |
updated to the latest version of cocoapods 0.27.1
Diffstat (limited to 'plugins/pod')
-rw-r--r-- | plugins/pod/_pod | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/plugins/pod/_pod b/plugins/pod/_pod index ba0c9ab30..8c0f4460f 100644 --- a/plugins/pod/_pod +++ b/plugins/pod/_pod @@ -3,12 +3,12 @@ # ----------------------------------------------------------------------------- # FILE: _pod -# DESCRIPTION: Cocoapods (0.24.0) autocomplete plugin for Oh-My-Zsh +# DESCRIPTION: Cocoapods (0.27.1) autocomplete plugin for Oh-My-Zsh # http://cocoapods.org # AUTHOR: Alexandre Joly (alexandre.joly@mekanics.ch) # GITHUB: https://github.com/mekanics # TWITTER: @jolyAlexandre -# VERSION: 0.0.2 +# VERSION: 0.0.3 # LICENSE: MIT # ----------------------------------------------------------------------------- @@ -33,6 +33,7 @@ local -a _repo_arguments _repo_arguments=( 'add:Add a spec repo' 'lint:Validates all specs in a repo' + 'remove:Remove a spec repo.' 'update:Update a spec repo' ) @@ -194,6 +195,12 @@ __pod-repo() { (add) _arguments \ $_inherited_options + + (remove) + _arguments \ + $_inherited_options \ + ':feature:__repo_list' + ;; esac ;; esac |