From: Bill Guindon Date: 2005-02-16T01:27:59+09:00 Subject: Re: Ruby Source code checker On Tue, 15 Feb 2005 23:04:57 +0900, Michael Gebhart wrote: > When I do: > > @variable.function > > ruby does not know, if the method "function" is avaibable or not. actually, you can ask it... @variable.respond_to?("function") -- Bill Guindon (aka aGorilla)