I've updated a couple of gems and what not, namely upgraded rails to version 3.0.7
The project has quite a few delayed_jobs in it, however now when I come to start the jobs in the terminal with the command:
rake jobs:work
I get an error message saying:
undefined method `task' for #<MyAppName::Application:0x10350ab78>
The rake file current has the follwing in it, in realation to delayed jobs I think:
MyAppName::Application.load_tasks
I was wondering if anyone new how to fix this problem and get delayed jobs running again.
Also as far as I can tell there is no problem with adding the jobs to the db, the problem is purly with starting the tasks on my local machen via the terminal.
Thanks!