Actions
Feature #7251
closedusing usings in usinged Module
Description
I suspect Kernel#using to using all the already usinged Refinements in usinged Module. For 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
(original gist here: https://gist.github.com/3985735 )
Actions
Like0
Like0Like0Like0