From: Trans Date: 2008-10-23T04:17:23+09:00 Subject: Re: extending object with another object On Oct 22, 3:52 am, Ittay Dror wrote: > Hi, > > How is it possible to extend an object using another object? > > I know I can iterate the public methods of one and define them (or maybe > clone, and bind) in the other, but I'm looking for something that will > work more closely to how 'extend' works. You have to use delegation. Look up delegate.rb. T.