mattbrictson / bundle_update_interactive

A stylish interactive mode for Bundler, inspired by `yarn upgrade-interactive`
MIT License
133 stars 2 forks source link

Idea: Include bundler itself in list of updateable gems? #23

Closed mattbrictson closed 1 month ago

mattbrictson commented 1 month ago

Currently, bundle update-interactive never touches the BUNDLED WITH entry of a lock file. That means if you exclusively use update-interactive to update gems, the Bundler version will never get updated. To update Bundler, you have to separately run bundler update --bundler. It's easy to forget to do this.

Maybe update-interactive should list bundler alongside other gems as an option to be updated? Or, should it silently update bundler whenever you update other gems, like bundle update does?

mattbrictson commented 1 month ago

This seems like it would be difficult to implement, given that Bundler's version auto-switching behavior is complicated enough as it is. Closing for now.