Created
September 27, 2008 19:55
-
-
Save ELLIOTTCABLE/13363 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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