It's easy to write tests for gems you depend on in your own gems/applications, but it's a lot harder to test dependent gems. github.com/ioquatix/bake- makes that easy, inject your current branch/PR into downstream gems and run their test suite as part of your CI. cc
Conversation
Replying to
Here is an example of external gems being tested alongside Async::HTTP: github.com/socketry/async. It gives me confidence making implementation and interface changes by testing your most important consumers.
1
4
I was JUST trying to do something like this with Faraday, I can’t believe the timing. Will definitely check this out, thank you !
2


