mengx / nielsenmedia.com writes: > So Ruby does not "follow symlink" when it tries to look up in calling module's > namespace. Think of 'include' as inserting a reference to (a proxy for) the module you're including. If ten classes include the same module, they're all including the same thing. Change that module, even after the include, and the behavior of all ten will change. Dave