I use the path flag to install my gems in a specific location so that I can install different gems for different apps, e.g.
bundle install --path=vendor/bundle
Unfortunately, this seems to confuse the whenever command, which can't find its gem. When I run:
vendor/bundle/ruby/1.9.1/bin/whenever
I get:
/usr/local/rvm/rubies/ruby-1.9.3-p194/lib/ruby/site_ruby/1.9.1/rubygems/dependency.rb:247:in `to_specs': Could not find whenever (>= 0) amongst [...]
The "amongst" list only includes the system-wide gems, not the ones installed in vendor/bundle.
Any suggestions?