没有要加载的文件——.bundle/environment
这几天我安装了诚信应用程序。并发现一些问题。
我遵循这个。
$ 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能是因为您安装的捆绑程序版本太新。 Integrity v22 与捆绑器不兼容 > 0.9,但依赖于后续版本中删除的功能。就我而言,我在运行捆绑安装之前安装了捆绑程序 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:
You might have to uninstall the newer bundler version, too.