Skip to content

Instantly share code, notes, and snippets.

@klebervirgilio
Created February 4, 2013 05:36
Show Gist options
  • Save klebervirgilio/4705195 to your computer and use it in GitHub Desktop.
Save klebervirgilio/4705195 to your computer and use it in GitHub Desktop.
RUBY: Shows the Class or Instance methods, without too much crap.
module ClearMethods
extend self
def __clear_methods
methods - Object.methods
end
end
class Object
include ClearMethods
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment