I’m getting this error with Passenger:
https://github.com/huerlisi/PDFKit.git (at master) is not checked out. Please run `bundle install` (Bundler::GitError)
When I run cap deploy (I’m using capistrano), it’s saying that it’s bundling the gem, so I’m not sure what’s wrong.
If you’re installing gems from a git source, you will need to install them using
bundle installas the error says. The contents of them are usually saved in~/.bundlerand loaded in from there according to the specific version saved inGemfile.lock.What could be happening is that your application does not have a valid
Gemfile.lockto latch on to and uses system gems by default.What does
bundle checkshow on your installed app?It is not uncommon to have gems installed for the wrong version of ruby if you’re using something like
rvm.