From: Trans Date: 2006-11-17T12:05:05+09:00 Subject: Re: Accessing base method... Soso Soso wrote: > Hi all, > > I'm new to ruby, being trying to access base class method but with no > luck until now. Here's a snippet to get an idea: > require 'facets' require 'kernel/as' > class Parent > def knox > puts 'parent' > end > end > > class Child < Parent > def knox > puts 'child' > end > def test as(Parent).knox > end > end T.