Skip to content

Instantly share code, notes, and snippets.

@tsnow
Created June 12, 2014 19:07
Show Gist options
  • Save tsnow/3b58b1754a56bb240be8 to your computer and use it in GitHub Desktop.
Save tsnow/3b58b1754a56bb240be8 to your computer and use it in GitHub Desktop.
# 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