Ruby Gems / Gemfile:没有要加载的文件 -- juggernaut
我遇到了其他人以前遇到过的问题,但我无法通过在网上找到的答案找到任何答案。当我这样做时:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您需要创建
Gemfile
。 Bundler 会很乐意为您做这件事:Yes, you'll need to create
Gemfile
. Bundler will cheerfully do this for you: