From: nobu.nokada@... Date: 2001-12-29T00:27:24+09:00 Subject: [ruby-talk:29537] Re: Module#included At Fri, 28 Dec 2001 23:29:37 +0900, Paul Brannan wrote: > > After Module#append_features. > ... > > The argument passed to Module#included is the new module > > itself. > > So what is the difference, then, between Module#included and > Module#append_features? Module#append_features does actually append features(methods and constants) to the includer. On the other hand, Module#included is a trigger to notify the includee module, and defaulted to do nothing. Nobu Nakada