Created
December 30, 2015 09:12
-
-
Save osyo-manga/f452c8d24e5dabd8d3f1 to your computer and use it in GitHub Desktop.
using
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
module Homu | |
def homu | |
# Error: `homu': undefined local variable or method `mami' for X:Class (NameError) | |
mami | |
end | |
def mami | |
p :mami | |
end | |
end | |
module Ex | |
refine Module do | |
include Homu | |
end | |
end | |
class X | |
using Ex | |
homu | |
mami | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment