I would like a ruby method "show" which does this:
anyobject.show
the output of the call would be:
anyvar => the pp string of the object
Something close , but not quite is :
p "any_var => #{any_var.pretty_inspect}"
Since you have to type "anyvar" out to accomplish that.