ruby newbie here.
The Data::Dumper->Dump(object) method in perl is awesome. It logs the entire structure of any object into stdout. Makes it really easy to debug. Basically looking for a method which can print the structure of any object irrespective of its type.
Is there a similar library/method in ruby?