Thanks a lot. At least I won't be killing myself trying to figure out
what I missed. FYI, I tested on version 1.1 and 1.1.3 and they seem to
have the same issue.
Since we are on the subject, I wonder if you can spare some of your time
help me understand this:
As far as I understand, the global
Hi,
Is there a way to override the method_missing method and keep the
SetVariable lookup behavior from ScriptScope?
For example,
in C#
aScriptScope.SetVariable("a", "some_value")
in Ruby
p a
=> "some_value"
But if I do,
class << self
def method_missing(sym, *args, &block)
case (sym)
w