Hey Guys,
Josh Charles put a bug in my ear (thanks Josh!), so I got off my duff and
submitted a patch for the Time class that's been sitting on my laptop for
months. It should have implementations for most of the basic Time
functionality save for the strftime method. It'll pass 22 of the 55 time
You have to explicitly tell the DLR to generate "debuggable" code.
ScriptRuntime env = ScriptRuntime.Create(setup);
env.GlobalOptions.DebugMode = true;
ScriptEngine MyEngine = env.GetEngineByFileExtension("rb");
// ...
MyEngine.CreateScriptSourceFromFile("MyRuby.rb").Execute(MyScope);
Disclaimer:
I have been embedding IronRuby to our WPF C# application, so I am not
starting rbx but rather doing calls like:
MyEngine.CreateScriptSourceFromFile("MyRuby.rb").Execute(MyScope);
Any hope for me to get to use the nice new debugging goodies? :-) I did
install the silverlight VS extension, include