For some reason my deployment has failed due to being unable to find the will_paginate gem, I haven't had a problem with adding new gems to my app and deploying previously.
If you go to My Site you will see the error.
I have tried adding
require "bundler/capistrano"
to my Capfile, but it still fails.
boot.rb
require 'rubygems'
# Set up gems listed in the Gemfile.
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
require 'bundler/setup' if File.exists?(ENV['BUNDLE_GEMFILE'])
Locally I added the gem, ran bundle and everything works..
Anything I can do to troubleshoot this or has anyone seen this before?
Thanks