6

如果我运行bundle install,则应用程序通过,一切都已正确安装。

但是如果我重新启动 nginx 并访问该站点,我会看到乘客错误消息。

Ruby (Rack) application could not be started

Error message:
   http://github.com/railsdog/spree.git (at master) is not checked out. Please run `bundle install` (Bundler::GitError)

Exception class:
    PhusionPassenger::UnknownError

Application root:
    /home/shadyfront/webapps/age_of_revolt/releases/20110214205657 

我也发现了这个:

如果我做捆绑表演狂欢,它会返回:

/home/shadyfront/webapps/rails/gems/bundler/gems/spree-594cd0f5a53c 

但任何其他宝石都在这里:

/home/shadyfront/webapps/rails/gems/gems/ what does that mean? 

有谁知道这可能是为什么?

宝石文件

source 'http://rubygems.org'

gem 'rails', '3.0.3'
gem 'spree', '0.5.99', :git => 'http://github.com/spree/spree.git' 
gem 'haml'
gem 'ruby-debug'
gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'ckeditor', '3.4.2.pre'
# aged_revolt gem is a local gem that is generated with Spree extensions
gem "aged_revolt", :require => "aged_revolt", :path => "aged_revolt"
# this is a gem i downloaded and messed with locally
gem "spree_easy_contact", '1.0.2', :path => "#{File.expand_path(__FILE__)}/../vendor/gems/spree_easy_contact-1.0.2"
gem "honeypot-captcha"
4

1 回答 1

1

不知道是什么最终实现了这一目标,我只是试试这个。

bundle install spree

看起来 repo 移到了 git://github.com/spree/spree.git

于 2011-02-14T21:18:30.587 回答