If you have a reason to keep the current version of rake-0.8.7, matt is correct, the best way to do this is to run bundle exec rake cron instead of runing just rake cron. This uses the version of rake specified in your Gemfile instead of using the newest version of the gem you have installed. (nathan.f77 has a good solution below if you don't want to type bundle exec every time you run rake)
Otherwise, if there is no reason not to update rake, you can run
bundle update rake
This will actually update your Gemfile.lock to use rake-0.9.2 (or whatever is the newest version) instead of having to run bundle exec every time.
Note: if you run just bundle update this will update all the gems in your Gemfile instead of just rake, which probably isn't what you want, because if something breaks in your application you won't know which gem update caused it.
The less recommended way to keep rake-0.8.7 without having to use bundle exec is to uninstall the newer versions of rake.
> gem uninstall rake
Select gem to uninstall:
1. rake-0.8.7
2. rake-0.9.2
3. All versions
> 2
Successfully uninstalled rake-0.9.2
This works, but if you are working with multiple apps that use different versions of rake, this can be a pain because you will find yourself constantly having to install and uninstall different versions.
bundle exec rake cronis fixing it properly. Have a look at yehudakatz.com/2011/05/30/… – matt Jun 11 '11 at 19:22@matt. – matt Jun 18 '11 at 0:45