Skip to content

Instantly share code, notes, and snippets.

@osyo-manga
Created February 27, 2016 06:12
Show Gist options
  • Select an option

  • Save osyo-manga/7c0dfd6bbecaffb3f6a8 to your computer and use it in GitHub Desktop.

Select an option

Save osyo-manga/7c0dfd6bbecaffb3f6a8 to your computer and use it in GitHub Desktop.
module M
class A
def mami
p "mami"
end
end
end
class X
end
module Ex
refine X do
include M
end
end
using Ex
X::A
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment