How to get rid of Bundler::GemNotFound error at domainfactory

Today I got stuck with an issue using Bundler at domainfactory for the first time. Although a gem was installed and bundle install ran fine, passenger reclaimed:
Could not find activesupport-2.3.11 in any 
of the sources (Bundler::GemNotFound)
Thanks to my friend Stack Overflow, I could get rid of this problem by running:
bundle install --path vendor/cache

No comments yet.