mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-13 09:20:09 +00:00
updated to the latest version of cocoapods 0.27.1
This commit is contained in:
parent
40b1cf0103
commit
0eb86f82d6
1 changed files with 9 additions and 2 deletions
|
@ -3,12 +3,12 @@
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# FILE: _pod
|
# 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
|
# http://cocoapods.org
|
||||||
# AUTHOR: Alexandre Joly (alexandre.joly@mekanics.ch)
|
# AUTHOR: Alexandre Joly (alexandre.joly@mekanics.ch)
|
||||||
# GITHUB: https://github.com/mekanics
|
# GITHUB: https://github.com/mekanics
|
||||||
# TWITTER: @jolyAlexandre
|
# TWITTER: @jolyAlexandre
|
||||||
# VERSION: 0.0.2
|
# VERSION: 0.0.3
|
||||||
# LICENSE: MIT
|
# LICENSE: MIT
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -33,6 +33,7 @@ local -a _repo_arguments
|
||||||
_repo_arguments=(
|
_repo_arguments=(
|
||||||
'add:Add a spec repo'
|
'add:Add a spec repo'
|
||||||
'lint:Validates all specs in a repo'
|
'lint:Validates all specs in a repo'
|
||||||
|
'remove:Remove a spec repo.'
|
||||||
'update:Update a spec repo'
|
'update:Update a spec repo'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -194,6 +195,12 @@ __pod-repo() {
|
||||||
(add)
|
(add)
|
||||||
_arguments \
|
_arguments \
|
||||||
$_inherited_options
|
$_inherited_options
|
||||||
|
|
||||||
|
(remove)
|
||||||
|
_arguments \
|
||||||
|
$_inherited_options \
|
||||||
|
':feature:__repo_list'
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue