From: Michael Fellinger Date: 2007-10-21T11:31:59+09:00 Subject: Re: Can class methods be in a module? On 10/21/07, Bazsl wrote: > Is it possible to put a class method in a module, for example: > > module FtpClientMod > def self.do_send(file_template, show_progress) > > and include it in a class as follows? > > require 'ftpclientmod' > > class FtpClient > include FtpClientMod > > When I try this I get an error that the method cannot be found. http://www.ruby-doc.org/core/classes/Object.html#M000337