DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Find The Public Methods Unique To A Class While In IRB
// Find the public methods unique to a class while in IRB
puts (Date.public_methods - Object.public_methods).sort.join(" -- ")





