class Foo
def initialize()
end
def cow
end
def dog
end
def any_other
end
end
What method can I use to find just my custom defined methods, cow, dog, and any_other, and not any of the base methods?
Foo.custom_methods
>>
:cow
:dog
:any_other