how to update DELAYED_JOB_ACTIVE_RECORD gem?

511 Views Asked by At

In my current project I am using delayed_job(4.0.4) and delayed_job_active_record(4.0.0) gems. Now I want to update delayed_job_active_record gem to latest version.

I checked official doc but we can upgrade delayed job by using following command but not delayed_job_active_record

rails g delayed_job:upgrade.

Please let me know how I need to upgrade delayed_job_active_record gem.

1

There are 1 best solutions below

5
On

In you Gemfile add

gem '#GEM_NAME', '#GEM_VERSION'

eg.

if earlier it was

gem 'delayed_job_active_record', '4.0.0'

change it to

gem 'delayed_job_active_record', '4.0.4'

After that run:

bundle install