0

在我的开发机器(mac)中,我正在运行

pow 0.3.2 rvm 1.14.5 ruby 1.9.2p290 Bundler version 1.0.21

我最近将 rvm 升级到 1.14.5。当我尝试在http://myapp.dev启动我的应用程序时,它给了我这个错误。

Bundler::GitError: git://github.com/collectiveidea/delayed_job.git (at v2.1.4) is not checked out. Please run bundle install

delay_job 安装在 gemset 中。我不知道错误是来自 rvm 还是 pow

这是Gemfile声明依赖关系的行。

gem 'devise', :git => "git://github.com/plataformatec/devise.git", :ref => "v1.2.rc2"
4

1 回答 1

2

将 pow 更新到 0.4.0 并在 rails 项目中添加这个 .powrc 解决了这个问题。

if [ -f "$rvm_path/scripts/rvm" ] && [ -f ".rvmrc" ]; then
  source "$rvm_path/scripts/rvm"
  source ".rvmrc"
fi
于 2012-07-27T10:59:49.360 回答