我在Ruby 1.9.2中使用Rails 3.0.7在Windows上有一个项目,我希望能够运行Ruby和IronRuby脚本。当我尝试使用system()或反引号调用IronRuby脚本(例如 - “ir example.rb”)时,似乎脚本没有在IronRuby中运行。我需要一些.dll文件,当脚本运行时,我收到一个LoadError,说有一个缺少的帮助文件example.dll.rb。有没有人有任何关于从Rails3运行IronRuby脚本的信息?谢谢!
答案 0 :(得分:1)
在进行调用以运行IronRuby脚本时,请包含IronRuby bin的路径。例如:“system('C:\ IronRuby \ bin \ rspec example_spec.rb')”