IronRuby 无法识别“rake”; - 我得到了未定义的方法“rake”对于 main:Object,如何修复?
刚刚安装了 IronRuby 1.1。我想看看耙子和长鳍金枪鱼。安装ironruby后,我可以通过输入ir来点击命令提示符,并且我可以执行简单的放置,但是当我尝试运行rake时,我收到错误
undefined method `rake' for main:Object
如何解决这个问题?有什么想法吗?
谢谢,
〜ck在圣地亚哥
Just installed IronRuby 1.1. I'm trying to take a look at rake and albacore. After installing ironruby, I am able to hit a command prompt by typing ir, and I am able to do simple puts, but when I try to run rake, I get the error
undefined method `rake' for main:Object
How do I resolve this? Any ideas?
Thanks,
~ck in San Diego
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
rake
是您从 Windows 命令行调用的可执行 Ruby 脚本,而不是您从 IRb 调用的 Ruby 方法。rake
is an executable Ruby script that you call from the Windows command line, not a Ruby method that you call from IRb.