This is for everybody's information:

If you're hosting IronRuby in a C# application then your code is likely to
break with IronRuby HEAD

The RubyContext class has gone away and the RequireRubyFile extension method
has been renamed.

var setup = new ScriptRuntimeSetup();
setup.LanguageSetups.Add(Ruby.CreateRubySetup());
var scriptRuntime = Ruby.CreateRuntime(setup)
var loadPaths = new List<string>{ "lib", "bin" };

var engine = Ruby.GetEngine(scriptRuntime);
*engine.SetSearchPaths(loadPaths);*
*engine.RequireFile("my_library");*

This means that you can't currently use ironrubymvc and ironnails with HEAD

---
Met vriendelijke groeten - Best regards - Salutations
Ivan Porto Carrero
Web: http://whiterabbitconsulting.eu - http://flanders.co.nz
Twitter: http://twitter.com/casualjim
Author of IronRuby in Action (http://manning.com/carrero)
Microsoft IronRuby/C# MVP
_______________________________________________
Ironruby-core mailing list
Ironruby-core@rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core

Reply via email to