Project

General

Profile

Actions

Feature #7251

closed

using usings in usinged Module

Added by matsuda (Akira Matsuda) over 11 years ago. Updated over 11 years ago.

Status:
Closed
Target version:
[ruby-dev:46326]

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 )


Related issues 1 (0 open1 closed)

Related to Ruby master - Feature #4085: Refinements and nested methodsClosedshugo (Shugo Maeda)11/24/2010Actions
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0