Ruby Gems / Gemfile:没有要加载的文件 -- juggernaut

发布于 2024-12-20 20:35:49 字数 415 浏览 2 评论 0原文

我遇到了其他人以前遇到过的问题,但我无法通过在网上找到的答案找到任何答案。当我这样做时:

require "juggernaut" 

在 IRB 中或当我执行 Ruby 文件时,

ruby test.rb

我得到

no such file to load -- juggernaut

解决方案是将 juggernaut 添加到我的 Gemfile,对吗?

但是这个神奇的 Gemfile 位于雷德蒙特的什么地方呢?这不是 Rakefile 所在的地方。也许我必须从头开始创建一个全新的 Gemfile?那会是什么样子?

“捆绑者”是如何参与这一切的?

谢谢你们!

I have a problem others had before but I can't get anywhere with the answers I found online. When I do:

require "juggernaut" 

in IRB or when I execute a Ruby file with

ruby test.rb

I get

no such file to load -- juggernaut

The solution is to add juggernaut to my Gemfile, right?

But where in Redmont is this magical Gemfile? It's not where the Rakefile is. Maybe I have to create a brand new Gemfile from scratch? How would that look like?

And how is "bundler" involved in all this?

Thanks guys!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

凉月流沐 2024-12-27 20:35:49

是的,您需要创建 Gemfile。 Bundler 会很乐意为您做这件事:

$ bundle init
Writing new Gemfile to /foo/bar/Gemfile

$ cat Gemfile
# A sample Gemfile
source "http://rubygems.org"

# gem "rails"

Yes, you'll need to create Gemfile. Bundler will cheerfully do this for you:

$ bundle init
Writing new Gemfile to /foo/bar/Gemfile

$ cat Gemfile
# A sample Gemfile
source "http://rubygems.org"

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