From: Tomoyuki Kosimizu Date: 2003-12-04T10:01:13+09:00 Subject: [ruby-list:38863] Module.included こしみずです。 Module.includedはextendのときに呼び出されませんけど、OKですか? module IncludedHook def self.included(client) puts(client) end end class IncludedClient include IncludedHook end class ExtendedClient end ExtendedClient.new.extend(IncludedHook) greentea@fa2.so-net.ne.jp