On Wed, Jan 17, 2001 at 12:22:33PM +0900, Kevin Smith wrote:
 
> I'm not sure quite what you're aiming for. 
> Perhaps something like this? [Disclaimer: I typed 
> it into email, and haven't run it through Ruby, 
> so beware of typos!]
> 
> ###############
> class Configuration
>   attr_reader :size
> 
>   def initialize(size)
>     @size = size
>   end
> end
> 
> class Foo < Configuration
>   def initialize
>     super(100)
>     puts size
>   end
> end
> 
> Foo.new
> ###############

 That doesn't seem a solution. Problem is accessing values of Configuration
 instance from all rest of classes in less silly or insecure form. So, I can
 change in running time data and it is inmediately accessible from all
 places.

 In any way, thanks ;)

 								David