## Summary

This pull request will update the Cocapods auto-complete plugin, `pod`, to the latest Cocoapods release, `1.0.1`. Currently `pod` is stuck on version `0.33` of the Cocoapods.

### How

The Cocoapods team have released their own auto-complete script generation tool. This tool generates scripts for a properly configured Z shell.

```gem install claide-completion
git clone git@github.com:robbyrussell/oh-my-zsh.git
cd oh-my-zsh
pod --completion-script > ./plugins/pod/_pod```
This commit is contained in:
alasdair 2016-07-11 15:28:40 +01:00
parent 644bc641ad
commit e68193acae

View File

@ -1,34 +1,91 @@
#compdef pod #compdef pod
#autoload
# setopt XTRACE VERBOSE # setopt XTRACE VERBOSE
# vim: ft=zsh sw=2 ts=2 et # vim: ft=zsh sw=2 ts=2 et
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# FILE: _pod # FILE: _pod
# DESCRIPTION: Cocoapods (0.33.1) autocomplete plugin for Oh-My-Zsh # DESCRIPTION: Cocoapods (1.0.1) autocomplete plugin for Oh-My-Zsh
# http://cocoapods.org # http://cocoapods.org
# Generated with `pod --completion-script # Generated with `pod --completion-script`
# AUTHOR: Alexandre Joly (alexandre.joly@mekanics.ch) # AUTHOR: Alasdair McCall (alasdair.mccall@gmail.com)
# GITHUB: https://github.com/mekanics # GITHUB: https://github.com/ajmccall
# TWITTER: @jolyAlexandre # TWITTER: @aljmccall
# VERSION: 0.0.5 # VERSION: 1.0.1
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
local -a _subcommands local -a _subcommands
local -a _options local -a _options
case "$words[2]" in case "$words[2]" in
help) cache)
case "$words[3]" in case "$words[3]" in
*) # pod help clean)
case "$words[4]" in
*) # pod cache clean
_options=(
"--all:Remove all the cached pods without asking"
"--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes"
"--silent:Show nothing"
"--verbose:Show more debugging information"
)
_describe -t options "pod cache clean options" _options
;;
esac
;;
list)
case "$words[4]" in
*) # pod cache list
_options=(
"--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes"
"--short:Only print the path relative to the cache root"
"--silent:Show nothing"
"--verbose:Show more debugging information"
)
_describe -t options "pod cache list options" _options
;;
esac
;;
*) # pod cache
_subcommands=(
"clean:Remove the cache for pods"
"list:List the paths of pod caches for each known pod"
)
_describe -t commands "pod cache subcommands" _subcommands
_options=( _options=(
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--silent:Show nothing" "--silent:Show nothing"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
_describe -t options "pod help options" _options _describe -t options "pod cache options" _options
;;
esac
;;
deintegrate)
case "$words[3]" in
*) # pod deintegrate
_options=(
"--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes"
"--project-directory=/project/dir/:The path to the root of the project directory"
"--silent:Show nothing"
"--verbose:Show more debugging information"
)
_describe -t options "pod deintegrate options" _options
;;
esac
;;
env)
case "$words[3]" in
*) # pod env
_options=(
"--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes"
"--verbose:Show more debugging information"
)
_describe -t options "pod env options" _options
;; ;;
esac esac
;; ;;
@ -53,6 +110,7 @@ case "$words[2]" in
_options=( _options=(
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--project-directory=/project/dir/:The path to the root of the project directory"
"--silent:Show nothing" "--silent:Show nothing"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
@ -66,6 +124,7 @@ case "$words[2]" in
_options=( _options=(
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--project-directory=/project/dir/:The path to the root of the project directory"
"--silent:Show nothing" "--silent:Show nothing"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
@ -101,11 +160,11 @@ case "$words[2]" in
;; ;;
*) # pod ipc *) # pod ipc
_subcommands=( _subcommands=(
"list:Lists the specifications known to CocoaPods." "list:Lists the specifications known to CocoaPods"
"podfile:Converts a Podfile to YAML." "podfile:Converts a Podfile to YAML"
"repl:The repl listens to commands on standard input." "repl:The repl listens to commands on standard input"
"spec:Converts a podspec to JSON." "spec:Converts a podspec to JSON"
"update-search-index:Updates the search index." "update-search-index:Updates the search index"
) )
_describe -t commands "pod ipc subcommands" _subcommands _describe -t commands "pod ipc subcommands" _subcommands
_options=( _options=(
@ -137,9 +196,8 @@ case "$words[2]" in
_options=( _options=(
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--no-clean:Leave SCM dirs like \`.git\` and \`.svn\` intact after downloading" "--project-directory=/project/dir/:The path to the root of the project directory"
"--no-integrate:Skip integration of the Pods libraries in the Xcode project(s)" "--repo-update:Force running \`pod repo update\` before install"
"--no-repo-update:Skip running \`pod repo update\` before install"
"--silent:Show nothing" "--silent:Show nothing"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
@ -156,6 +214,7 @@ case "$words[2]" in
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--silent:Show nothing" "--silent:Show nothing"
"--template-url=URL:The URL of the git repo containing a compatible template"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
_describe -t options "pod lib create options" _options _describe -t options "pod lib create options" _options
@ -166,14 +225,18 @@ case "$words[2]" in
case "$words[4]" in case "$words[4]" in
*) # pod lib lint *) # pod lib lint
_options=( _options=(
"--allow-warnings:Lint validates even if warnings are present"
"--fail-fast:Lint stops on the first failing platform or subspec"
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--no-clean:Lint leaves the build directory intact for inspection" "--no-clean:Lint leaves the build directory intact for inspection"
"--no-subspecs:Lint skips validation of subspecs" "--no-subspecs:Lint skips validation of subspecs"
"--only-errors:Lint validates even if warnings are present" "--private:Lint skips checks that apply only to public specs"
"--quick:Lint skips checks that would require to download and build the spec" "--quick:Lint skips checks that would require to download and build the spec"
"--silent:Show nothing" "--silent:Show nothing"
"--sources=https://github.com/artsy/Specs,master:The sources from which to pull dependent pods (defaults to https://github.com/CocoaPods/Specs.git). Multiple sources must be comma-delimited."
"--subspec=NAME:Lint validates only the given subspec" "--subspec=NAME:Lint validates only the given subspec"
"--use-libraries:Lint uses static libraries to install the spec"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
_describe -t options "pod lib lint options" _options _describe -t options "pod lib lint options" _options
@ -198,29 +261,12 @@ case "$words[2]" in
;; ;;
list) list)
case "$words[3]" in case "$words[3]" in
new)
case "$words[4]" in
*) # pod list new
_options=(
"--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes"
"--silent:Show nothing"
"--update:Run \`pod repo update\` before listing"
"--verbose:Show more debugging information"
)
_describe -t options "pod list new options" _options
;;
esac
;;
*) # pod list *) # pod list
_subcommands=(
"new:Lists pods introduced in the master spec-repo since the last check"
)
_describe -t commands "pod list subcommands" _subcommands
_options=( _options=(
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--silent:Show nothing" "--silent:Show nothing"
"--stats:Show additional stats (like GitHub watchers and forks)"
"--update:Run \`pod repo update\` before listing" "--update:Run \`pod repo update\` before listing"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
@ -235,6 +281,7 @@ case "$words[2]" in
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--no-repo-update:Skip running \`pod repo update\` before install" "--no-repo-update:Skip running \`pod repo update\` before install"
"--project-directory=/project/dir/:The path to the root of the project directory"
"--silent:Show nothing" "--silent:Show nothing"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
@ -257,6 +304,18 @@ case "$words[2]" in
;; ;;
esac esac
;; ;;
installed)
case "$words[4]" in
*) # pod plugins installed
_options=(
"--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes"
"--verbose:Show more debugging information"
)
_describe -t options "pod plugins installed options" _options
;;
esac
;;
list) list)
case "$words[4]" in case "$words[4]" in
*) # pod plugins list *) # pod plugins list
@ -269,6 +328,19 @@ case "$words[2]" in
;; ;;
esac esac
;; ;;
publish)
case "$words[4]" in
*) # pod plugins publish
_options=(
"--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes"
"--silent:Show nothing"
"--verbose:Show more debugging information"
)
_describe -t options "pod plugins publish options" _options
;;
esac
;;
search) search)
case "$words[4]" in case "$words[4]" in
*) # pod plugins search *) # pod plugins search
@ -285,7 +357,9 @@ case "$words[2]" in
*) # pod plugins *) # pod plugins
_subcommands=( _subcommands=(
"create:Creates a new plugin" "create:Creates a new plugin"
"installed:List plugins installed on your machine"
"list:List all known plugins" "list:List all known plugins"
"publish:Request to add the plugin to the official plugins list"
"search:Search for known plugins" "search:Search for known plugins"
) )
_describe -t commands "pod plugins subcommands" _subcommands _describe -t commands "pod plugins subcommands" _subcommands
@ -299,19 +373,6 @@ case "$words[2]" in
;; ;;
esac esac
;; ;;
push)
case "$words[3]" in
*) # pod push
_options=(
"--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes"
"--silent:Show nothing"
"--verbose:Show more debugging information"
)
_describe -t options "pod push options" _options
;;
esac
;;
repo) repo)
case "$words[3]" in case "$words[3]" in
add) add)
@ -320,7 +381,6 @@ case "$words[2]" in
_options=( _options=(
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--shallow:Create a shallow clone (fast clone, but no push capabilities)"
"--silent:Show nothing" "--silent:Show nothing"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
@ -342,15 +402,33 @@ case "$words[2]" in
;; ;;
esac esac
;; ;;
list)
case "$words[4]" in
*) # pod repo list
_options=(
"--count-only:Show the total number of repos"
"--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes"
"--silent:Show nothing"
"--verbose:Show more debugging information"
)
_describe -t options "pod repo list options" _options
;;
esac
;;
push) push)
case "$words[4]" in case "$words[4]" in
*) # pod repo push *) # pod repo push
_options=( _options=(
"--allow-warnings:Allows pushing even if there are warnings" "--allow-warnings:Allows pushing even if there are warnings"
"--commit-message="Fix bug in pod":Add custom commit message. Opens default editor if no commit message is specified."
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--local-only:Does not perform the step of pushing REPO to its remote" "--local-only:Does not perform the step of pushing REPO to its remote"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--no-private:Lint includes checks that apply only to public repos"
"--silent:Show nothing" "--silent:Show nothing"
"--sources=https://github.com/artsy/Specs,master:The sources from which to pull dependent pods (defaults to all available repos). Multiple sources must be comma-delimited."
"--use-libraries:Linter uses static libraries to install the spec"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
_describe -t options "pod repo push options" _options _describe -t options "pod repo push options" _options
@ -385,11 +463,12 @@ case "$words[2]" in
;; ;;
*) # pod repo *) # pod repo
_subcommands=( _subcommands=(
"add:Add a spec repo." "add:Add a spec repo"
"lint:Validates all specs in a repo." "lint:Validates all specs in a repo"
"list:List repos"
"push:Push new specifications to a spec-repo" "push:Push new specifications to a spec-repo"
"remove:Remove a spec repo" "remove:Remove a spec repo"
"update:Update a spec repo." "update:Update a spec repo"
) )
_describe -t commands "pod repo subcommands" _subcommands _describe -t commands "pod repo subcommands" _subcommands
_options=( _options=(
@ -406,13 +485,17 @@ case "$words[2]" in
case "$words[3]" in case "$words[3]" in
*) # pod search *) # pod search
_options=( _options=(
"--full:Search by name, summary, and description"
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--ios:Restricts the search to Pods supported on iOS" "--ios:Restricts the search to Pods supported on iOS"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--no-pager:Do not pipe search results into a pager"
"--osx:Restricts the search to Pods supported on OS X" "--osx:Restricts the search to Pods supported on OS X"
"--regex:Interpret the \`QUERY\` as a regular expression"
"--simple:Search only by name"
"--stats:Show additional stats (like GitHub watchers and forks)" "--stats:Show additional stats (like GitHub watchers and forks)"
"--tvos:Restricts the search to Pods supported on tvOS"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
"--watchos:Restricts the search to Pods supported on watchOS"
"--web:Searches on cocoapods.org" "--web:Searches on cocoapods.org"
) )
_describe -t options "pod search options" _options _describe -t options "pod search options" _options
@ -425,8 +508,6 @@ case "$words[2]" in
_options=( _options=(
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--no-shallow:Clone full history so push will work"
"--push:Use this option to enable push access once granted"
"--silent:Show nothing" "--silent:Show nothing"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
@ -442,6 +523,7 @@ case "$words[2]" in
_options=( _options=(
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--regex:Interpret the \`QUERY\` as a regular expression"
"--show-all:Pick from all versions of the given podspec" "--show-all:Pick from all versions of the given podspec"
"--silent:Show nothing" "--silent:Show nothing"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
@ -469,7 +551,8 @@ case "$words[2]" in
_options=( _options=(
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--show-all:Pick which spec to edit from all available versions of the given podspec" "--regex:Interpret the \`QUERY\` as a regular expression"
"--show-all:Pick from all versions of the given podspec"
"--silent:Show nothing" "--silent:Show nothing"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
@ -481,14 +564,18 @@ case "$words[2]" in
case "$words[4]" in case "$words[4]" in
*) # pod spec lint *) # pod spec lint
_options=( _options=(
"--allow-warnings:Lint validates even if warnings are present"
"--fail-fast:Lint stops on the first failing platform or subspec"
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--no-clean:Lint leaves the build directory intact for inspection" "--no-clean:Lint leaves the build directory intact for inspection"
"--no-subspecs:Lint skips validation of subspecs" "--no-subspecs:Lint skips validation of subspecs"
"--only-errors:Lint validates even if warnings are present" "--private:Lint skips checks that apply only to public specs"
"--quick:Lint skips checks that would require to download and build the spec" "--quick:Lint skips checks that would require to download and build the spec"
"--silent:Show nothing" "--silent:Show nothing"
"--sources=https://github.com/artsy/Specs,master:The sources from which to pull dependent pods (defaults to https://github.com/CocoaPods/Specs.git). Multiple sources must be comma-delimited."
"--subspec=NAME:Lint validates only the given subspec" "--subspec=NAME:Lint validates only the given subspec"
"--use-libraries:Lint uses static libraries to install the spec"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
_describe -t options "pod spec lint options" _options _describe -t options "pod spec lint options" _options
@ -501,6 +588,7 @@ case "$words[2]" in
_options=( _options=(
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--regex:Interpret the \`QUERY\` as a regular expression"
"--show-all:Print all versions of the given podspec" "--show-all:Print all versions of the given podspec"
"--silent:Show nothing" "--silent:Show nothing"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
@ -511,11 +599,11 @@ case "$words[2]" in
;; ;;
*) # pod spec *) # pod spec
_subcommands=( _subcommands=(
"cat:Prints a spec file." "cat:Prints a spec file"
"create:Create spec file stub." "create:Create spec file stub."
"edit:Edit a spec file." "edit:Edit a spec file"
"lint:Validates a spec file." "lint:Validates a spec file"
"which:Prints the path of the given spec." "which:Prints the path of the given spec"
) )
_describe -t commands "pod spec subcommands" _subcommands _describe -t commands "pod spec subcommands" _subcommands
_options=( _options=(
@ -543,6 +631,45 @@ case "$words[2]" in
;; ;;
esac esac
;; ;;
delete)
case "$words[4]" in
*) # pod trunk delete
_options=(
"--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes"
"--silent:Show nothing"
"--verbose:Show more debugging information"
)
_describe -t options "pod trunk delete options" _options
;;
esac
;;
deprecate)
case "$words[4]" in
*) # pod trunk deprecate
_options=(
"--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes"
"--silent:Show nothing"
"--verbose:Show more debugging information"
)
_describe -t options "pod trunk deprecate options" _options
;;
esac
;;
info)
case "$words[4]" in
*) # pod trunk info
_options=(
"--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes"
"--silent:Show nothing"
"--verbose:Show more debugging information"
)
_describe -t options "pod trunk info options" _options
;;
esac
;;
me) me)
case "$words[4]" in case "$words[4]" in
clean-sessions) clean-sessions)
@ -582,6 +709,7 @@ case "$words[2]" in
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--silent:Show nothing" "--silent:Show nothing"
"--use-libraries:Linter uses static libraries to install the spec"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
_describe -t options "pod trunk push options" _options _describe -t options "pod trunk push options" _options
@ -602,12 +730,29 @@ case "$words[2]" in
;; ;;
esac esac
;; ;;
remove-owner)
case "$words[4]" in
*) # pod trunk remove-owner
_options=(
"--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes"
"--silent:Show nothing"
"--verbose:Show more debugging information"
)
_describe -t options "pod trunk remove-owner options" _options
;;
esac
;;
*) # pod trunk *) # pod trunk
_subcommands=( _subcommands=(
"add-owner:Add an owner to a pod" "add-owner:Add an owner to a pod"
"delete:Deletes a version of a pod."
"deprecate:Deprecates a pod."
"info:Returns information about a Pod."
"me:Display information about your sessions" "me:Display information about your sessions"
"push:Publish a podspec" "push:Publish a podspec"
"register:Manage sessions" "register:Manage sessions"
"remove-owner:Remove an owner from a pod"
) )
_describe -t commands "pod trunk subcommands" _subcommands _describe -t commands "pod trunk subcommands" _subcommands
_options=( _options=(
@ -626,6 +771,7 @@ case "$words[2]" in
_options=( _options=(
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--no-repo-update:Skip running \`pod repo update\` before install"
"--silent:Show nothing" "--silent:Show nothing"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
@ -639,9 +785,8 @@ case "$words[2]" in
_options=( _options=(
"--help:Show help banner of specified command" "--help:Show help banner of specified command"
"--no-ansi:Show output without ANSI codes" "--no-ansi:Show output without ANSI codes"
"--no-clean:Leave SCM dirs like \`.git\` and \`.svn\` intact after downloading"
"--no-integrate:Skip integration of the Pods libraries in the Xcode project(s)"
"--no-repo-update:Skip running \`pod repo update\` before install" "--no-repo-update:Skip running \`pod repo update\` before install"
"--project-directory=/project/dir/:The path to the root of the project directory"
"--silent:Show nothing" "--silent:Show nothing"
"--verbose:Show more debugging information" "--verbose:Show more debugging information"
) )
@ -651,22 +796,23 @@ case "$words[2]" in
;; ;;
*) # pod *) # pod
_subcommands=( _subcommands=(
"help:Show help for the given command." "cache:Manipulate the CocoaPods cache"
"deintegrate:Deintegrate CocoaPods from your project"
"env:Display pod environment"
"ipc:Inter-process communication" "ipc:Inter-process communication"
"init:Generate a Podfile for the current directory." "init:Generate a Podfile for the current directory"
"install:Install project dependencies" "install:Install project dependencies according to versions from a Podfile.lock"
"lib:Develop pods" "lib:Develop pods"
"list:List pods" "list:List pods"
"outdated:Show outdated project dependencies" "outdated:Show outdated project dependencies"
"plugins:Show available CocoaPods plugins" "plugins:Show available CocoaPods plugins"
"push:Temporary alias for the \`pod repo push\` command"
"repo:Manage spec-repositories" "repo:Manage spec-repositories"
"search:Searches for pods" "search:Search for pods"
"setup:Setup the CocoaPods environment" "setup:Setup the CocoaPods environment"
"spec:Manage pod specs" "spec:Manage pod specs"
"trunk:Interact with the CocoaPods API (e.g. publishing new specs)" "trunk:Interact with the CocoaPods API (e.g. publishing new specs)"
"try:Try a Pod!" "try:Try a Pod!"
"update:Update outdated project dependencies" "update:Update outdated project dependencies and create new Podfile.lock"
) )
_describe -t commands "pod subcommands" _subcommands _describe -t commands "pod subcommands" _subcommands
_options=( _options=(