无法安装 ffi gem,Rails 失败

发布于 2024-12-06 04:07:13 字数 583 浏览 0 评论 0原文

在通过railsgenerateintegration_testfoo创建集成测试时,它拒绝了,

Could not find ffi-1.0.9 in any of the sources
Run `bundle install` to install missing gems.

我运行bundleinstall来安装缺少的gems,但没有成功。还是同样的错误。我的 Gemfile 中有 gem 'ffi'

我将 gemfile 行切换为 gem 'ffi', :git => 'git://github.com/ffi/ffi.git' 并再次捆绑安装。它做了各种各样的事情,并在最后写道“您的捆绑包已完成”。

但是,当我再次运行 railsgenerate... 命令时,我得到:

git://github.com/ffi/ffi.git (at master) 未签出。请运行“bundle install”

这个 ffi 到底是怎么回事?

While creating creating an integration test via rails generate integration_test foo it declined with

Could not find ffi-1.0.9 in any of the sources
Run `bundle install` to install missing gems.

I ran bundle install to install missing gems, but with no success. Still the same error. I have gem 'ffi' in my Gemfile.

I switched the gemfile line to gem 'ffi', :git => 'git://github.com/ffi/ffi.git' and bundle installed again. It did all sort of stuff and wrote "Your bundle is complete" at the end.

However when I run the rails generate... command again I get:

git://github.com/ffi/ffi.git (at master) is not checked out. Please run 'bundle install'

What the hell is going on with this ffi?

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

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

发布评论

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

评论(3

就是爱搞怪 2024-12-13 04:07:13

我遇到了同样的问题,并通过删除 Gemfile.lock 并重新运行 bundle install 解决了它。

I ran into the same problem and solved it by removing the Gemfile.lock and re-run bundle install.

你穿错了嫁妆 2024-12-13 04:07:13

也许尝试“bundle execrailsgenerate...”

Perhaps try 'bundle exec rails generate...'

韵柒 2024-12-13 04:07:13

捆绑包安装失败,因为它可能因规范的 NoMethodError 而失败。

删除 Gemfile.lock,清空 gemset 并进行捆绑安装工作。

bundle install was failing because it could ffi failed with NoMethodError for spec.

Removing Gemfile.lock, empty the gemset and doing bundle install worked.

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