没有要加载的文件——.bundle/environment

发布于 2024-09-25 21:39:58 字数 351 浏览 6 评论 0原文

这几天我安装了诚信应用程序。并发现一些问题。

我遵循这个。

$ gem 安装捆绑器 $ git 克隆 git://github.com/integrity/integrity $ cd 完整性 $ git checkout -b 部署 v22 $ 捆绑安装 $ 捆绑锁 $ 耙数据库

在最后的步骤中,我在完整性文件夹中找不到名为“.bundle”的文件夹。 还有 .bundle/environment.rb 。 所以我被堵在那里了。

顺便说一句,任何人都可以给我发送一个更好的方法来安装和配置完整性应用程序吗?

非常感谢

I installed integrity app these days. and found some issues.

I follow this.

$ gem install bundler
$ git clone git://github.com/integrity/integrity
$ cd integrity
$ git checkout -b deploy v22
$ bundle install
$ bundle lock
$ rake db

at the end steps, I can't find and folders named ".bundle" in the integrity folder.
and the .bundle/environment.rb too.
so I was blocked there.

and btw, anybody can sent me a better way to install and config integrity app?

thank you very much

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

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

发布评论

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

评论(1

巾帼英雄 2024-10-02 21:39:58

这可能是因为您安装的捆绑程序版本太新。 Integrity v22 与捆绑器不兼容 > 0.9,但依赖于后续版本中删除的功能。就我而言,我在运行捆绑安装之前安装了捆绑程序 0.9:

gem install bundler --version=0.9

您可能还必须卸载较新的捆绑程序版本。

This is probably because you have a too recent version of bundler installed. Integrity v22 is not compatible with bundler > 0.9, but relies on functionality that was in removed in the subsequent version. In my case I installed bundler 0.9 before I ran bundle install:

gem install bundler --version=0.9

You might have to uninstall the newer bundler version, too.

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