A test-driven development workflow is only effective when it gives you quick, meaningful feedback. Check out these power-user facilities for RSpec and MiniTest that will help you skip the noise …
Category: Episodes

Episode #649
Input Record Separator
Ruby has a lot of tools for processing input line-by-line. But when you look a little closer, it turns out that these methods are for more than just lines of …

Episode #648
Output Record Separator
Did you know Ruby has a print method in addition to puts? Did you know it's for record-oriented output? Do you know how to control the formatting of records in …

Episode #645
Grep, Sort, Uniq
As we continue exploring Ruby one-liner alternatives to UNIX command-line operations, today we tackle a common case: a combination of grepping through multiple files, and collating the results.

Episode #644
Console Width
Have you ever wondered how to tailor Ruby console output to the specific size of the user's terminal? In this video you'll learn how, using the io/console standard library!

Episode #643
Rake Introspection
You tell a build tool where you want to go, and it figures out the shortest path to get there. But when things go wrong, understanding why can be challenging. …

Episode #642
Line Ending Processing Mode
Want line terminators in input text to just Go Away? Ruby has a mode for that!