Installation package goes without errors, but when I visit the site I see an error

If I run bundle install , the application will pass, everything will be installed correctly.

But if I restart nginx and visit the site, I will see the "Passenger" error message.

 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 

I also found out about this:

If I do a show bundle bundle, it returns:

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

but any of the other gems are here:

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

Does anyone know why this could be?

Gemfile

 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" 
+6
ruby-on-rails dependencies bundle passenger spree
source share
1 answer

Not knowing what led to this, I'll just try it.

bundle install spree

It looks like the repo has moved to git: //github.com/spree/spree.git

+1
source share

All Articles