aboutsummaryrefslogtreecommitdiffstats
path: root/src/_bundle
diff options
context:
space:
mode:
authorKouhei Yanagita <yanagi@shakenbu.org>2022-05-10 17:46:37 +0900
committerKouhei Yanagita <yanagi@shakenbu.org>2022-05-10 17:56:19 +0900
commit19b03c3b2d8040e84458a1f0289627fa9578c19e (patch)
tree50e1cd3a55029f0c63ad25955352eac64709e1bd /src/_bundle
parentMerge pull request #861 from saeltz/patch-1 (diff)
downloadzsh-completions-19b03c3b2d8040e84458a1f0289627fa9578c19e.tar
zsh-completions-19b03c3b2d8040e84458a1f0289627fa9578c19e.tar.gz
zsh-completions-19b03c3b2d8040e84458a1f0289627fa9578c19e.tar.bz2
zsh-completions-19b03c3b2d8040e84458a1f0289627fa9578c19e.tar.lz
zsh-completions-19b03c3b2d8040e84458a1f0289627fa9578c19e.tar.xz
zsh-completions-19b03c3b2d8040e84458a1f0289627fa9578c19e.tar.zst
zsh-completions-19b03c3b2d8040e84458a1f0289627fa9578c19e.zip
Added add, binstubs, clean, doctor, remove commands to bundler completions
Diffstat (limited to 'src/_bundle')
-rw-r--r--src/_bundle7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/_bundle b/src/_bundle
index da3dd3c..b5237b3 100644
--- a/src/_bundle
+++ b/src/_bundle
@@ -54,6 +54,8 @@ case $state in
"package[Package the .gem files required by your application]" \
"exec[Execute a script in the context of the current bundle]" \
"config[Specify and read configuration options for bundler]" \
+ "add[Add the named gem to the Gemfile and run bundle install]" \
+ "binstubs[Generate binstubs for executables in a gem]" \
"check[Determine whether the requirements for your application are installed]" \
"list[Show all of the gems in the current bundle]" \
"show[Show the source location of a particular gem in the bundle]" \
@@ -64,13 +66,16 @@ case $state in
"gem[Create a simple gem, suitable for development with bundler]" \
"help[Describe available tasks or one specific task]" \
"platform[Displays platform compatibility information]" \
+ "clean[Clean up unused gems in your Bundler directory]" \
+ "doctor[Display warnings about common problems]" \
+ "remove[Removes gems from the Gemfile]" \
"outdated[Show all of the outdated gems in the current bundle]"
ret=0
;;
args)
case $line[1] in
help)
- _values 'commands' 'install' 'update' 'package' 'exec' 'config' 'check' 'list' 'show' 'console' 'open' 'viz' 'init' 'gem' 'help' 'platform' 'outdated' && ret=0
+ _values 'commands' 'install' 'update' 'package' 'exec' 'config' 'add' 'binstubs' 'check' 'list' 'show' 'console' 'open' 'viz' 'init' 'gem' 'help' 'platform' 'clean' 'doctor' 'remove' 'outdated' && ret=0
;;
install)
_policies=('HighSecurity' 'MediumSecurity' 'LowSecurity' 'AlmostNoSecurity' 'NoSecurity')