From: John Barnette Date: 2010-08-14T09:48:01+09:00 Subject: Re: puts by name On Fri, Aug 13, 2010 at 4:02 PM, Ralph Shnelvar wrote: > I very often do something like: >  puts "some_variable.something = #{some_variable.something}" > > That repetition is getting annoying. If you're repeating it that much, you're not writing enough tests. :) Using `p` can save you a bit of annoyance, but not much: p :something => some_variable.something ~ j.