我可以在 Rails 应用程序中使用 Ruby gems 吗?
我将如何在我的 Rails 应用程序中使用 ruby gems。我很难让它们工作,但我确信我只是错过了一些简单的东西,因为我是 Rails 新手。
例如,我有 gems youtube_it 和 yahoo-music,我希望能够在我的 Rails 应用程序中使用它们。这可能吗?
How would I use ruby gems in my rails app. I am having difficulty getting them to work, but I am sure I am just missing something simple here since I am new with rails.
For example I have the gems youtube_it and yahoo-music that I would like to be able to use in my rails app. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您使用的是 Rails 3,只需将它们添加到您的
Gemfile
中,您的应用程序就可以使用它们:Assuming you're using Rails 3, just add them to your
Gemfile
and they'll be available to your app:正如 @Dylan Markov 所说,只需将它们添加到您的 gem 文件中即可。执行此操作后,不要忘记捆绑安装。但实际上也需要将一些 gem 安装到应用程序中。您应该检查 gem 的文档以了解如何执行此操作。
As @Dylan Markov sais, just add them to your gem file. Don't forget to bundle install after doing this. But some gems actually need to be installed into the app as well. You should check the documentation for the gem on how to do this.