Skip to content

Instantly share code, notes, and snippets.

@osyo-manga
Created November 28, 2015 08:40
Show Gist options
  • Select an option

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

Select an option

Save osyo-manga/54192798101b51a3e828 to your computer and use it in GitHub Desktop.
test
module M
def hoge
end
def foo
hoge
end
end
module Bar
refine Module do
include M
end
end
using Bar
class X
foo
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment