Bundler Problems with Capistrano RoR3

by Simon Morley on January 28, 2012

There’s no doubt I was stuck on this one due to my inability to read the docs carefully.

Whilst deploying an app via git using capistrano, I was continuously stuck after upgrading my gems. The reason? I wasn’t using bundle install…

Do this to upgrade your local and remote applications:

bundle update

bundle install

git add .

git commit -a -m “Some updates….”

git push origin master

cap <<stage>> deploy

 

Previous post: