Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Created September 27, 2008 19:55
Show Gist options
  • Save ELLIOTTCABLE/13363 to your computer and use it in GitHub Desktop.
Save ELLIOTTCABLE/13363 to your computer and use it in GitHub Desktop.
class Nothing
def self.method_added meth
p meth
end
def self.singleton_method_added meth
p [meth, :sing]
end
def foo; end
def self.bar; end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment