add 'bundle outdated --without-group' flag
I want to bundler to ignore certain groups when running bundle outdated I understand there's a --group flag which lets me specify a specific group but I want to exclude a group
The flag already exists with bundle list
So I can run bundle list --without-group test
But I can't run bundle outdated --without-group test
Sounds good to me, would you like to implement this feature?
I'll probably stick with using --without-group in this instance but worth noting there seem to be are a few different tags being used for groups across the cli commands
bundle install uses --with & --without bundle list uses --only-group & --without-group bundle outdated uses --group & --groups bundle fund uses --group and has alias -g bundle viz used --without and had alias -W
That's quite inconsistent! I agree with using --without-group here given there's already --group, but we could considering unifying everything in the future (use with, only, and without everywhere, and document that those options always refer to groups).