From: Nit Khair Date: 2008-10-03T20:04:34+09:00 Subject: Re: Problem extending (adding methods) to class David A. Black wrote: > Why not use a module? > > module MyForm > attr_accessor :myfields > def get_fields > @myfields > end > end > > class Ncurses::Form::FORM > include MyForm > end > Interesting. But sorry if I am missing something. as I understand it, i can't subclass a module, nor class Ncurses::Form::FORM. So i wont be able to subclass this, right ? -- Posted via http://www.ruby-forum.com/.