Skip to content

Instantly share code, notes, and snippets.

@marioaquino
Created September 22, 2010 01:42
Show Gist options
  • Save marioaquino/590967 to your computer and use it in GitHub Desktop.
Save marioaquino/590967 to your computer and use it in GitHub Desktop.
module Foo
def self.bar
'heynow'
end
end
# is equivalent to
module Foo
def bar
'heynow'
end
module_function :bar
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment