我可以在 Rails 应用程序中使用 Ruby gems 吗?

发布于 2024-11-16 16:26:18 字数 157 浏览 2 评论 0原文

我将如何在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

只有一腔孤勇 2024-11-23 16:26:18

假设您使用的是 Rails 3,只需将它们添加到您的 Gemfile 中,您的应用程序就可以使用它们:

gem 'youtube_it'
gem 'yahoo-music'

Assuming you're using Rails 3, just add them to your Gemfile and they'll be available to your app:

gem 'youtube_it'
gem 'yahoo-music'
待"谢繁草 2024-11-23 16:26:18

正如 @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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文