[#18121] [Ruby 1.8.7 - Bug #405] (Open) ssl.rb:31: [BUG] Bus Error — Anonymous <redmine@...>

Issue #405 has been reported by Anonymous.

14 messages 2008/08/04

[#18130] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — Brian Candler <B.Candler@...>

> Seriously though... Array.first is a noun.

10 messages 2008/08/05

[#18319] NEW Command: absolute_path() -- — "C.E. Thornton" <admin@...>

Core,

14 messages 2008/08/16
[#18321] Re: NEW Command: absolute_path() -- — Yukihiro Matsumoto <matz@...> 2008/08/18

Hi,

[#18381] [Bug #496] DRb.start_service(nil) is very slow — Hongli Lai <redmine@...>

Bug #496: DRb.start_service(nil) is very slow

11 messages 2008/08/25

[ruby-core:18112] module inclusion and method definitions

From: Jérémy Zurcher <jeremy@...>
Date: 2008-08-03 20:48:23 UTC
List: ruby-core #18112
hello,

I'm surprized by this :

    module M2; end
    class C2; include M2; end
    module M2; def m; puts "hello world" end; end
    C2.new.m

    >> hello world

    module M5; def m; puts "hello world" end; end
    module M4; include M5; end
    class C4; include M4; end
    C4.new.m

    >> hello world

    module M7; def m; puts "hello world" end; end
    module M6; end
    class C5; include M6; end
    module M6 include M7; end
    C5.new.m

    >> test.rb:13: undefined method `m' for #<C5:0xb7ca02bc> (NoMethodError)

obviously M7 is not found in the ansestors of C5, has show by the ancestors
method.

could someone enlighten me please

best regards


J辿r辿my Zurcher


In This Thread

Prev Next