Skip to content

Commit dae54e1

Browse files
committed
bundle: update options for bundle install
1 parent 25a9c2b commit dae54e1

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

completion-bundle

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,10 @@ __bundle() {
4040
options="$options --gemspec";;
4141
install)
4242
options="$options --binstubs --clean --deployment --force --frozen
43-
--full-index --gemfile --jobs --local --no-cache
44-
--no-prune --path --quiet --retry --shebang --standalone
45-
--system --trust-policy --with --without";;
43+
--full-index --gemfile --jobs --local --lockfile --no-cache
44+
--no-lock --no-prune --path --prefer-local --quiet
45+
--redownload --retry --shebang --standalone --system
46+
--target-rbconfig --trust-policy --with --without";;
4647
lock)
4748
options="$options --add-platform --conservative --full-index
4849
--local --lockfile --major --minor --patch --print
@@ -83,6 +84,9 @@ __bundle() {
8384
--binstubs | --path)
8485
_filedir -d
8586
return;;
87+
--lockfile | --target-rbconfig)
88+
_filedir
89+
return;;
8690
--standalone | --with | --without)
8791
__bundle_complete_groups
8892
return;;

0 commit comments

Comments
 (0)