Created
March 16, 2012 14:22
-
-
Save divins/2050257 to your computer and use it in GitHub Desktop.
Things to do with modules
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# gema que sigui module Gem | |
def foo | |
'hey' | |
end | |
end | |
class A | |
include Gem | |
end | |
# nostre core_ext | |
module CoreExt | |
def foo | |
super | |
end | |
end | |
class A | |
include CoreExt | |
end | |
p A.new.foo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment