From: ts Date: 2004-07-22T00:19:54+09:00 Subject: Re: Safe Ruby Environment >>>>> "F" == Florian Gross writes: F> Hm, which means that I have to call secure_object recursively on all F> objects which the object itself references. (instance_variables, F> contents of Arrays) You have found, aa was svg% cat aa a = Object.new b = "sss" class << b def inspect system("rm b.rb") "hello :-)" end end a.instance_variable_set("@a", b) a svg% F> Would this be enough or am I still overseeing something? perhaps, I don't know Guy Decoux