From: Nit Khair Date: 2008-10-03T03:22:49+09:00 Subject: Re: Problem extending (adding methods) to class > No. If you want to add methods to it, you can just open it up and add > them: > > require 'rubygems' > require 'ncurses' > > class Ncurses::Form::FORM > def my_method > puts "Hello" > end > end > > n = Ncurses::Form::FORM.new > n.my_method # Hello > > > David That is precisely what i did. It worked. But I am unable to further subclass it. Methods I am adding to the subclass are giving NoMethodErrors. -- Posted via http://www.ruby-forum.com/.