我收到错误: -
git://github.com/odorcicd/authlogic.git (at rails3) is not checked out. Please run `bundle install`
即使在运行bundle install之后也是如此。我试过这个但仍然没有运气
cd vendor/plugins
git clone git://github.com/odorcicd/authlogic.git
cd authlogic
git checkout --track -b rails3 origin/rails3
答案 0 :(得分:0)
以下是解决方案: -
Relace
gem 'authlogic', :git => 'git://github.com/odorcicd/authlogic.git', :branch => 'rails3'
通过
gem 'authlogic'
确保你这样做: -
cd vendor/plugins
git clone git://github.com/odorcicd/authlogic.git
cd authlogic
git checkout --track -b rails3 origin/rails3
答案 1 :(得分:0)
在运行bundle install之前,您不需要在本地克隆gem repos。它应该只适用于远程git repos。
我花了一个星期的时间尝试一切来解决这个问题。完成所有故障排除步骤后,最终解决了这个问题:
祝你好运!