From: listrecv@... Date: 2005-11-15T10:07:16+09:00 Subject: Nesting Includes Hi. I'd like to include one module, which would include other modules into my namespace. Is this doable? Doing this: ----file1.rb module AAA include bbb end ----file2.rb include AAA does not seem to include bbb. Is there anyway to do this, or do I need to add the include explicilty to file2 as well? (Note - I understand the need for this, to avoid namespace collisions).