Skip to content

Instantly share code, notes, and snippets.

@moro
Created August 26, 2009 05:45
Show Gist options
  • Save moro/175343 to your computer and use it in GitHub Desktop.
Save moro/175343 to your computer and use it in GitHub Desktop.
module Foo
def foobar
p:hello
end
module_function :foobar
def foobar
Foo.foobar
end
end
class Bar
include Foo
end
Bar.new.foobar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment