[#46309] [ruby-trunk - Bug #2154][Assigned] filesystem encoding of UNIX — "usa (Usaku NAKAMURA)" <usa@...>

13 messages 2012/10/29
[#46310] Re: [ruby-trunk - Bug #2154][Assigned] filesystem encoding of UNIX — Tanaka Akira <akr@...> 2012/10/29

2012年10月29日 10:31 usa (Usaku NAKAMURA) <[email protected]>:

[#46366] Re: [ruby-trunk - Bug #2154][Assigned] filesystem encoding of UNIX — "U.Nakamura" <usa@...> 2012/11/02

こんにちは、なかむら(う)です。

[#46375] Re: [ruby-trunk - Bug #2154][Assigned] filesystem encoding of UNIX — KOSAKI Motohiro <kosaki.motohiro@...> 2012/11/02

>> とくに指定しなければ、default external は locale から設定されるので、

[ruby-dev:46327] [ruby-trunk - Feature #7251] using usings in usinged Module

From: "matsuda (Akira Matsuda)" <ronnie@...>
Date: 2012-10-31 11:55:19 UTC
List: ruby-dev #46327
Issue #7251 has been updated by matsuda (Akira Matsuda).


s/suspect/expect/
----------------------------------------
Feature #7251: using usings in usinged Module
https://bugs.ruby-lang.org/issues/7251#change-32096

Author: matsuda (Akira Matsuda)
Status: Open
Priority: Normal
Assignee: shugo (Shugo Maeda)
Category: core
Target version: 2.0.0


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 )


-- 
http://bugs.ruby-lang.org/

In This Thread