Created
June 12, 2014 19:07
-
-
Save tsnow/3b58b1754a56bb240be8 to your computer and use it in GitHub Desktop.
This file contains 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
# A | |
class Concrete | |
class << self | |
def my_method | |
end | |
end | |
end | |
#B | |
class Concrete | |
def self.my_method | |
end | |
end | |
#C | |
class Concrete | |
def Concrete.my_method | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment