I'm trying to deploy a Rails app on an Apache2 server by using Phusion Passenger. While everything works well locally, I am getting the infamous "Bundler::GemNotFound" error while deploying:

Could not find abstract-1.0.0 in any of the sources (Bundler::GemNotFound)

The app is actually live, and you can see the error yourself here

All my gems are installed in my local home folder. Thus the passenger configuration lines from my Apache2 configuration file are as follows:

LoadModule passenger_module /home/regis/.gem/gems/passenger-3.0.7/ext/apache2/mod_passenger.so
PassengerRoot /home/regis/.gem/gems/passenger-3.0.7
PassengerRuby /usr/bin/ruby1.8

I understand you would need more information to analyse the issue at hand, but I have no idea on how to diagnose this further.

link|improve this question

1  
What does typing gem which abstract print out? Have you ran bundle install to install all the gems needed by the app? – Joey May 7 '11 at 14:06
feedback

1 Answer

up vote 12 down vote accepted

Try doing bundle install --path vendor/cache

link|improve this answer
Great, that did it! Does that mean that Passenger is looking for the gems in the vendor/cache folder by default? Is it possible to change this setting? – Régis B. May 7 '11 at 14:12
Pretty much. You can change this by deleting the cache (folder) in vendor. Do bundle install again and it will do it normally. – kobaltz Jun 25 '11 at 10:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.