Skip to content

Instantly share code, notes, and snippets.

@osyo-manga
Created December 30, 2015 09:12
Show Gist options
  • Save osyo-manga/f452c8d24e5dabd8d3f1 to your computer and use it in GitHub Desktop.
Save osyo-manga/f452c8d24e5dabd8d3f1 to your computer and use it in GitHub Desktop.
using
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