From: Albert Schlef Date: 2009-03-02T15:08:09+09:00 Subject: Re: Delegating class methods Arcadio Rubio garc鱈a wrote: > Hi all, > > how would you forward calls from class methods to a class atribute? You can do the following: class Foo @one = 1 @two = 2 @three = 3 class << self attr_accessor :one, :two, :Tthee end end (Why are you doing '@@' instead of '@'?) -- Posted via http://www.ruby-forum.com/.