From: Richard Everhart Date: 2008-01-31T10:42:47+09:00 Subject: Referring to method in enclosing class I need to do something like what is being attempted in the code below. The commented out code is what I can't figure out: how do methods in a nested classes call methods in their enclosing class? Is this even possible? class Enclosing def go Hello.new.do_say_hello end def say_hello "Hello World!" end class Hello def do_say_hello # puts Enclosing class's say_hello method end end end -- Posted via http://www.ruby-forum.com/.