From: Ruby Newbee Date: 2009-12-15T13:25:41+09:00 Subject: does module have instance_methods? I'm still confused, since module can't be instantiated, why it has the instance methods? irb(main):162:0> module Mymod irb(main):163:1> def myway;end irb(main):164:1> end => nil irb(main):165:0> Mymod.respond_to? :myway => false irb(main):166:0> Mymod.instance_methods => [:myway] Thanks.