From: tho_mica_l Date: 2007-10-21T18:05:12+09:00 Subject: Re: Can class methods be in a module? module FtpClientMod def do_send(file_template, show_progress) puts "do_send #{file_template}" end end class FtpClient class << self include FtpClientMod end end FtpClient.do_send('foo', 0)