tobi / delayed_job

Database backed asynchronous priority queue -- Extracted from Shopify
http://tobi.github.com/delayed_job
MIT License
2.15k stars 1.25k forks source link

Rake tasks not loading when used as a Gem #1

Open fetchapp opened 15 years ago

fetchapp commented 15 years ago

I had to paste the rake tasks jobs:work and jobs:clear into my local rakefile.

richievos commented 14 years ago

You need to require the rake tasks in your app. This is actually working as designed by rails.

Add the following to your Rakefile: require 'delayed/tasks'

eet-nu commented 14 years ago

Would be nice to mention this in the readme?