From: Aryk Grosz Date: 2007-06-27T13:36:34+09:00 Subject: including modules - ordering question Hi, I have a module where I include modules as usual: module A module B end module C include B include D end module D end end When I require this file, I'll get an error here because module D is being included before it gets loaded. I would need to put it above module C to get it to work. How can I load the file, and then do all the includes so that it can actually find the module. -- Posted via http://www.ruby-forum.com/.