thoughtbot / appraisal

A Ruby library for testing your library against different versions of dependencies.
https://thoughtbot.com
MIT License
1.26k stars 107 forks source link

Avoid using the `--without` parameter to Bundler #221

Closed nickcharlton closed 7 months ago

nickcharlton commented 7 months ago

Much like --path (#220), we want to avoid using deprecated arguments. We're only using these in our tests, too.

This change has the downside of removing the positive check -- it's possible that orange_juice, coffee, soda could not be included in the output whilst the feature itself fails.

nickcharlton commented 7 months ago

Thanks for looking, @joe-sharp!