Skip to content

Instantly share code, notes, and snippets.

@floehopper
Created March 10, 2014 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save floehopper/9467081 to your computer and use it in GitHub Desktop.
Save floehopper/9467081 to your computer and use it in GitHub Desktop.
# example 1
class Foo; end
def Foo.bar; end
# example 2
class Foo
def self.bar; end
end
# example 3
class Foo
class << self
def bar; end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment