isaacseymour / activejob-retry

Automatic retries for ActiveJob
MIT License
138 stars 14 forks source link

resque-scheduler dependency #33

Closed lewispb closed 9 years ago

lewispb commented 9 years ago

Got an error, To be able to schedule jobs with Resque you need the resque-scheduler gem. Please add it to your Gemfile and run bundle install

Do you need to add it to gem spec? Thanks.

isaacseymour commented 9 years ago

Because ActiveJob wraps many queue libraries, it does not depend on any of them (otherwise you'd have to install Sidekiq, Que, etc, when you're only using Resque). ActiveJob-Retry does not have a runtime dependency on any one queue library for the same reason. You should add resque-scheduler to your Gemfile.

lewispb commented 9 years ago

Makes sense thanks.