From: Bazsl Date: 2007-10-21T11:16:04+09:00 Subject: Can class methods be in a module? 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.