The Interactive Ruby Shell, more commonly known as IRB, is one of Ruby’s most popular features, especially with new developers. You can bash out a one-liner, try a method you’ve just learned about, or even build a small algorithm or two without going the whole way to writing a complete program.
I’ve not posted much about IRB before and it doesn’t tend to get a lot of love generally, so while I’ve been digging through some of the best content I can find on IRB learning all about its internals and ways to get more out of it, I thought I should share:
Demystifying Irb’s Commands – An awesome look at the hidden internals, special methods and features within IRB and the impetus for starting this post. Read More