在 XCode 中,在 Macruby 应用程序中使用 gem 最简单的方法是什么?
我需要在我在 XCode 中创建的简单 Macruby 应用程序中包含 rubygem。使用 require 'rubygems' 不会给出错误,但需要任何其他 gem 的下一行会出现加载错误。我使用 macgems 安装了 gem。提前致谢。
I need to include a rubygem in a simple macruby application i am creating in XCode. Using require 'rubygems' does not give an error, but the next line to require any other gems has a load error. I installed the gems using macgems. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
加载错误可能表明该 gem 无法在 Macruby 上运行。发布错误,某人可能会获得有关该宝石或该错误的更多信息。
gem 真的安装正确了吗?如果安装了,它可以从命令行运行吗?尝试创建一个需要 rubygems 和您的 gem 的简单脚本,然后在 xcode 之外的命令行上运行该脚本,看看问题是否与该 gem 兼容。
早在 0.5 天前,我就遇到了一个 gem (miniexif iirc) 的问题,它可以通过 macgems 安装,但无法加载或运行。这可能是一个类似的问题。
The load error might be an indication that the gem doesn't work on Macruby. Post the error and someone might have more info on that gem or that error.
Did the gem actually install correctly? If it did install, does it work from the command line? Try creating a simple script that requires rubygems and your gem and run that on the command line outside of xcode and see if the problem is compatibility with that gem.
A while back in the 0.5 days I had this problem with a gem (miniexif iirc) that would install via macgems but not load or run. This might be a similar problem.