From: bwv549 Date: 2007-09-07T04:05:03+09:00 Subject: easy question: access module/class outside of current scope I've seen someone do this, but I forget how it is done and I can't find it by searching... module Dog def self.new puts 'ruff ruff' end end class Crazy class Dog def some_method mydog = Dog.new # I want the module Dog and not the class Dog that I'm in... end end end # What is the nomenclature to get at the module Dog above and not the Dog class I'm inside? Thanks