Jason Noble's blog
I've been contributing to Rails lately by going through the Rails Guides and making sure they're up to date.
How do I go about finding a guide that hasn't been updated in a while?
Here's what I came up with:
We recently had an issue where our CI build broke over the weekend.
We used git bisect to figure out where the problem occurred.
We wrote a cucumber feature (feature/path/to/is_it_fixed.feature) that worked on Friday and fails today.
We start by setting up git bisect:
git bisect GOOD BAD
Where GOOD is the git SHA from last Friday and BAD is this morning's SHA.
