从 C# 执行 IronRuby 时解决“require”问题
我正在尝试从 C# 运行 IronRuby 脚本:
var runtime = IronRuby.Ruby.CreateRuntime();
runtime.ExecuteFile("ruby/foo.rb");
foo.rb 以“require:”开头
#!/usr/bin/env ruby
require 'bar'
当我尝试此操作时,我收到一个异常,指出“没有要加载的文件 -- bar”。文件“bar.rb”和目录“bar”都存在于“ruby”目录中。
那么,如何执行需要其他 ruby 文件的 ruby 脚本呢?我的目标是.Net 3.5。
I'm attempting to run an IronRuby script from C#:
var runtime = IronRuby.Ruby.CreateRuntime();
runtime.ExecuteFile("ruby/foo.rb");
foo.rb starts with a "require:"
#!/usr/bin/env ruby
require 'bar'
When I try this, I get an exception stating "no such file to load -- bar." The file "bar.rb" and the directory "bar" are both present in the "ruby" directory.
So, how do I execute a ruby script that requires other ruby files? I'm targeting .Net 3.5.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请改用 ScriptEngine 并将 ruby 代码文件目录添加到搜索路径:
Use the ScriptEngine instead and add your ruby code files directory to the search path: