Skip to content

Instantly share code, notes, and snippets.

@stevenbristol
Created April 23, 2009 17:32
Show Gist options
  • Save stevenbristol/100623 to your computer and use it in GitHub Desktop.
Save stevenbristol/100623 to your computer and use it in GitHub Desktop.
module Bar
def bar; end
end
module Foo
include Bar
def foo; end
end
class FooBar
include Foo
end
FooBar.new.foo # => nil
FooBar.new.bar # => NoMethodError
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment