Compare commits
No commits in common. "d65f6922bdfb6c21e8ebb4a72283db958bd1a462" and "f954400c72530daccb38868ebc8da42dace56bb0" have entirely different histories.
d65f6922bd
...
f954400c72
10
src/_bundle
10
src/_bundle
|
|
@ -28,7 +28,7 @@
|
||||||
# Description
|
# Description
|
||||||
# -----------
|
# -----------
|
||||||
#
|
#
|
||||||
# Completion script for Bundler 4.0.13 (https://bundler.io/).
|
# Completion script for Bundler 4.0.0 (https://bundler.io/).
|
||||||
#
|
#
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# Authors
|
# Authors
|
||||||
|
|
@ -66,7 +66,6 @@ _bundle() {
|
||||||
local -a policies=('HighSecurity' 'MediumSecurity' 'LowSecurity' 'AlmostNoSecurity' 'NoSecurity')
|
local -a policies=('HighSecurity' 'MediumSecurity' 'LowSecurity' 'AlmostNoSecurity' 'NoSecurity')
|
||||||
_arguments \
|
_arguments \
|
||||||
'(- *)'{-h,--help}'[show help message]' \
|
'(- *)'{-h,--help}'[show help message]' \
|
||||||
'--cooldown=[only consider gem versions published at least number days ago when resolving]:num' \
|
|
||||||
'(--force --redownload)'{--force,--redownload}'[force reinstalling every gem]' \
|
'(--force --redownload)'{--force,--redownload}'[force reinstalling every gem]' \
|
||||||
'--full-index[download and cache the index file of all gems]' \
|
'--full-index[download and cache the index file of all gems]' \
|
||||||
'--gemfile=-[use the specified gemfile instead of Gemfile]:gemfile:_files' \
|
'--gemfile=-[use the specified gemfile instead of Gemfile]:gemfile:_files' \
|
||||||
|
|
@ -79,8 +78,7 @@ _bundle() {
|
||||||
'--quiet[only output warnings and errors]' \
|
'--quiet[only output warnings and errors]' \
|
||||||
'--retry=[retry number when network or git requests failed]:number' \
|
'--retry=[retry number when network or git requests failed]:number' \
|
||||||
'--standalone=-[create standalone bundles]:groups:_bundle_groups' \
|
'--standalone=-[create standalone bundles]:groups:_bundle_groups' \
|
||||||
'--trust-policy=-[apply the Rubygems security policy]:arg:($policies)' \
|
"--trust-policy=-[apply the Rubygems security policy]:arg:($policies)" \
|
||||||
'--target-rbconfig=[path to rbconfig.rb for the deployment target platform]:file:_files' \
|
|
||||||
&& ret=0
|
&& ret=0
|
||||||
;;
|
;;
|
||||||
(update)
|
(update)
|
||||||
|
|
@ -94,7 +92,6 @@ _bundle() {
|
||||||
'--bundler[update the locked version of bundler to invoked bundler version]' \
|
'--bundler[update the locked version of bundler to invoked bundler version]' \
|
||||||
'(--force --redownload)'{--force,--redownload}'[force reinstalling every gem]' \
|
'(--force --redownload)'{--force,--redownload}'[force reinstalling every gem]' \
|
||||||
'--full-index[fall back to using the single-file index of all gems]' \
|
'--full-index[fall back to using the single-file index of all gems]' \
|
||||||
'--gemfile[use the specified gemfile instaed of Gemfile]:file:_files' \
|
|
||||||
'(-j --jobs)'{-j,--jobs}'[specify the number of jobs to run in parallel]:number' \
|
'(-j --jobs)'{-j,--jobs}'[specify the number of jobs to run in parallel]:number' \
|
||||||
'--retry=-[retry failed network or git requests for number times]:number' \
|
'--retry=-[retry failed network or git requests for number times]:number' \
|
||||||
'--quiet[only output warnings and errors]' \
|
'--quiet[only output warnings and errors]' \
|
||||||
|
|
@ -104,7 +101,6 @@ _bundle() {
|
||||||
'--pre[always choose the highest allowed version]' \
|
'--pre[always choose the highest allowed version]' \
|
||||||
'--strict[do not allow any gem to be updated past latest --patch | --minor | --major]' \
|
'--strict[do not allow any gem to be updated past latest --patch | --minor | --major]' \
|
||||||
'--conservative[use bundle install conservative update behavior]' \
|
'--conservative[use bundle install conservative update behavior]' \
|
||||||
'--cooldown=[only consider gem versions published at least number days ago when resolving]:num' \
|
|
||||||
'*:: :_bundle_gems' \
|
'*:: :_bundle_gems' \
|
||||||
&& ret=0
|
&& ret=0
|
||||||
;;
|
;;
|
||||||
|
|
@ -150,7 +146,6 @@ _bundle() {
|
||||||
'--skip-install[adds the gem to the Gemfile but does not install it]' \
|
'--skip-install[adds the gem to the Gemfile but does not install it]' \
|
||||||
'--optimistic[adds optimistic declaration of version]' \
|
'--optimistic[adds optimistic declaration of version]' \
|
||||||
'--strict[adds strict declaration of version]' \
|
'--strict[adds strict declaration of version]' \
|
||||||
'--cooldown=[only consider gem versions published at least number days ago when resolving]:num' \
|
|
||||||
'1::gem' \
|
'1::gem' \
|
||||||
&& ret=0
|
&& ret=0
|
||||||
;;
|
;;
|
||||||
|
|
@ -196,7 +191,6 @@ _bundle() {
|
||||||
'--filter-minor[only list minor new versions]' \
|
'--filter-minor[only list minor new versions]' \
|
||||||
'--filter-patch[only list patch new versions]' \
|
'--filter-patch[only list patch new versions]' \
|
||||||
'--only-explicit[only list gems specified in your Gemfile, not their dependencies]' \
|
'--only-explicit[only list gems specified in your Gemfile, not their dependencies]' \
|
||||||
'--cooldown=[annotate versions that are still inside the cooldown window]:num' \
|
|
||||||
'*:: :_bundle_gems' \
|
'*:: :_bundle_gems' \
|
||||||
&& ret=0
|
&& ret=0
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue