Skip to content

Instantly share code, notes, and snippets.

@carols10cents
Created February 15, 2011 14:56
Show Gist options
  • Save carols10cents/827612 to your computer and use it in GitHub Desktop.
Save carols10cents/827612 to your computer and use it in GitHub Desktop.
module Foo
extend self
def a
"a"
end
def self.b
"b"
end
end
Foo.a # instance method
Foo.b # class method
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment