It very much depends on your code, but generally wrapping everything into a module is the prefered way, it keeps namespaces clean and allows for easy mixins... the pickaxe has a nice chapter about why to use modules, you should check it out :) ~~~~manveru Am Montag, 9. Januar 2006 19:08 schrieb Henry Maddocks: > I have some code that I'm thinking of releasing into the wild. It is > a single 'module' consisting of 4 classes. I was wondering what the > preferred method of grouping classes is. Should I wrap them in a > module or a class or ...?