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.
In you Gemfile add
eg.
if earlier it was
change it to
After that run: