Nicolas Raoul
Nicolas Raoul

Reputation: 60213

Rake aborted: Don't know how to build task 'jobs:work'

When I run bundle exec rake jobs:work I receive this error:

rake aborted!
Don't know how to build task 'jobs:work'

Anything wrong with the syntax?

Note: I installed delayed_jobs like this:

rails plugin install git://github.com/collectiveidea/delayed_job.git
rails generate migration create_delayed_jobs
[ Fill the migration from https://github.com/collectiveidea/delayed_job ]
bundle exec rake db:migrate

Upvotes: 2

Views: 5643

Answers (1)

Nicolas Raoul
Nicolas Raoul

Reputation: 60213

The solution was to install delayed_jobs as described here: https://github.com/collectiveidea/delayed_job

After this, bundle exec rake jobs:work runs fine.

Upvotes: 3

Related Questions