From: Trans Date: 2005-10-22T04:17:02+09:00 Subject: Re: Module question - should be simple, but can't figure it out... Couple of ways. module Dummy extend self def TryMe puts "yo" end end This includes the Dummy module into it's own "class-level". module Dummy module_function def TryMe puts "yo" end end This automatically creates a private class method version of the instance method. module Dummy def self.TryMe puts "yo" end def TryMe self.class.TryMe end end This is manual mode ;-) T.