From: ts Date: 2004-10-22T22:50:18+09:00 Subject: Re: #extend_object only for #extend and not #include >>>>> "G" == Gavin Kistner writes: G> module Foo G> def self.extend_object( o ) G> p "#{o} just extended by #{self}" G> end def self.append_features( o ) p "#{o} just include #{self}" end G> end G> class Bar; include Foo; end G> class Bar2; self.extend( Foo ); end Guy Decoux