Skip to content

Instantly share code, notes, and snippets.

View arbovm's full-sized avatar

Arbo von Monkiewitsch arbovm

View GitHub Profile
# poor mans debugger
#
# if you want to know whats the value of an object just add .why?
# and you will see what it is and why your program behaves like it does.
#
Object.class_eval {def why?; raise "Because it is #{inspect}" ; end}