From: "Student (Nathan Zook)" Date: 2013-04-20T06:11:00+09:00 Subject: [ruby-core:54472] [ruby-trunk - Bug #8298][Open] Module include inconsistency Issue #8298 has been reported by Student (Nathan Zook). ---------------------------------------- Bug #8298: Module include inconsistency https://bugs.ruby-lang.org/issues/8298 Author: Student (Nathan Zook) Status: Open Priority: Normal Assignee: Category: core Target version: current: 2.1.0 ruby -v: 1.8, 1.9, 2.0 Backport: 1.9.3: UNKNOWN, 2.0.0: UNKNOWN It has been suggested that I report this as a violation of the object model: module M ; end module N ; end class C ; include M ; end module M ; include N ; end c = C.new c.extend M d = class << c ; self ; end d.ancestors =>[N, C, M, Object, Kernel] This has been this way for a while... -- http://bugs.ruby-lang.org/