Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save NZKoz/302000 to your computer and use it in GitHub Desktop.
Save NZKoz/302000 to your computer and use it in GitHub Desktop.
module Kernel
def m(object=Object.new, pattern=nil)
methods = (object.public_methods(true) - Object.new.public_methods(true)).sort
methods = methods.grep pattern unless pattern.nil?
ObjectMethods.new(methods)
end
class ObjectMethods < Array
def inspect
puts sort
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment