I'm trying to run a ruby script from cron, the script uses bundler to manage gem dependencies, since cron does not run in $PWD I get a 'Could not locate Gemfile' error form bundler every time, which makes sense since Gemfile is not in the currrent path when running from cron.
Is there a way to tell bundler to use a Gemfile not in the current path?