Skip to content

Instantly share code, notes, and snippets.

@noahpryor
Last active December 19, 2015 12:09
Show Gist options
  • Save noahpryor/5952687 to your computer and use it in GitHub Desktop.
Save noahpryor/5952687 to your computer and use it in GitHub Desktop.
useful .methods
class Object
# print public methods which are not inherited from Object
def pm
(self.public_methods - Object.public_methods).sort
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment