From: Alexey Petrushin Date: 2009-06-16T16:02:05+09:00 Subject: Re: Automatic ClassLoader (to eliminate 'require') Not exactly understood what you mean, as i know 'autoload' works almost the same as require - you should explicitly specify connection between your classes and corresponding files. So, instead of bunch of 'require xxx' there will be bunch of even longer 'autoload xxx, xxx' lines. Class loader allows you to forget about it, just place your class file wherever you want and it find it. It uses conventions to find your classes and resources. There is no much sense to make one or two files to be loaded by ClassLoader, the point is - make the whole project loaded by it (and forget about require) or don't use it at all. Or i misunderstood you and missing something? -- Posted via http://www.ruby-forum.com/.