Skip to content

Instantly share code, notes, and snippets.

@bkempner
Created October 25, 2011 01:46
Show Gist options
  • Save bkempner/1311073 to your computer and use it in GitHub Desktop.
Save bkempner/1311073 to your computer and use it in GitHub Desktop.
module Foo
module_function
def wtf?
'wtf?'
end
end
Foo.wtf? #=> 'wtf?'
module Bar
extend self
def lol!
'lol!'
end
end
Bar.lol! #=> 'lol!'
@jakeonrails
Copy link

what does module_function (line 2) do?

err... LMGTFU:
http://www.ruby-doc.org/core-1.9.2/Module.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment