git 和 bundler 的问题

git 和 bundler 的问题

我正在尝试在我的服务器上设置 Gitorious使用本教程并且遇到了 gem/git 的问题。修复了大量库和依赖项后,bundler 现在无法与 git 存储库一起使用...每当我尝试加载 rails 环境时,它都会失败:

Loading production environment (Rails 2.3.5)
https://github.com/roman/rots.git (at master) is not checked out. Please run `bundle install`

我正在使用 ruby​​ 1.9.1,并相应地更改了我能找到的所有 RUBY_HOME 变量。
Bundle install没有任何问题:Your bundle is complete!

我该如何让它工作?
看来它真的只是被这个 git 问题困住了,它没有任何 gem 问题,无法通过安装缺失的库来解决

答案1

尝试重新安装 bundler

gem remove bundler
gem install bundler

然后运行并调试

bundle install --verbose

另外告诉我们安装时打印的“rots”行。它应该说

Using rots from git@...

相关内容