Change 'bundle' command to 'bundle install'#120
Merged
grosser merged 1 commit intogregorym:masterfrom Dec 20, 2025
Merged
Conversation
There's an implicit run of `bundle` which is deprecated now. `bundle install` should be used.
Maybe even `bundle install --quiet` for less noise.
```
bundle exec bump patch --tag -m 'bump 1234'
In a future version of Bundler, running `bundle` without argument will no longer run `bundle install`.
Instead, the `cli_help` command will be displayed. Please use `bundle install` explicitly for scripts like CI/CD.
You can use the future behavior now with `bundle config set default_cli_command cli_help --global`,
or you can continue to use the current behavior with `bundle config set default_cli_command install_or_cli_help --global`.
This message will be removed after a default_cli_command value is set.
Fetching gem metadata from https://
Resolving dependencies...
Using x 1.2.3 (was 1.2.2) from gemspec at `.` and installing its executables
Bundle complete! 1234 Gemfile dependencies, 1234 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
```
grosser
approved these changes
Dec 20, 2025
Collaborator
|
@gregorym can you run |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
There's an implicit run of
bundlewhich is deprecated now.bundle installshould be used.Maybe even
bundle install --quietfor less noise.