From: Robert Klemme Date: 2009-12-16T23:32:40+09:00 Subject: Re: Split Module to multiple Files? 2009/12/16 Frank Guerino : > I've just started writing Ruby and have a very long file of, both, > methods and files.  I understand the above file partitioning methodology > for classes.  Does it also work for methods?  If so, how would it look? The same way file1.rb module M class X def meth1 end end end file2.rb module M class X def meth2 end end end Although I'd say that this looks awkward. IMHO it does not make sense to split a single class method by method on different files. Kind regards robert -- remember.guy do |as, often| as.you_can - without end http://blog.rubybestpractices.com/