Skip to content

Instantly share code, notes, and snippets.

@benolee
Created July 6, 2011 15:11
Show Gist options
  • Save benolee/1067470 to your computer and use it in GitHub Desktop.
Save benolee/1067470 to your computer and use it in GitHub Desktop.
easy way to do singleton modules
module Foo
extend self
def bar
"hello world"
end
end
Foo.bar
#=> "hello world"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment