Hi,

This might be a bit of a strange request,  but is it possible to get
access to the ExecutionContext without actually referencing the
IronRuby assembly?

As a quick demo, I wrote the following code:

            ScriptRuntime runtime = IronRuby.CreateRuntime();
            engine = IronRuby.GetEngine(runtime);
            RubyExecutionContext ctx = IronRuby.GetExecutionContext(engine);

            list = new List<string>();
            ctx.DefineGlobalVariable("customers", list);

Ideally, what I wanted to write was something more like but $customers
is always nil.

            scope = engine.CreateScope();
            scope.SetVariable("$customers", list);

I was hoping this would have had the same affect as the code above.

Is this by design, a limitation or a bug?

Thanks

Ben
Blog.BenHall.me.uk
_______________________________________________
Ironruby-core mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/ironruby-core

Reply via email to