Skip to content

Instantly share code, notes, and snippets.

@shugo
Created October 31, 2012 08:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shugo/3985735 to your computer and use it in GitHub Desktop.
Save shugo/3985735 to your computer and use it in GitHub Desktop.
using example
module X
refine Fixnum do
def foo; p :foo; end
end
end
module Y
refine Fixnum do
def bar; p :bar; end
end
end
module Z
using X
using Y
end
class Foo
using Z
p 1.foo
p 1.bar
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment