A Ruby On Rails framework for declaring jobs and performing or enqueuing them.
I'm working on a reset_password method in a Rails API app. When this endpoint is hit, an ActiveJob is …
ruby-on-rails ruby rspec rails-activejobtrying to upgrade to Rails 4.2, using delayed_job_active_record. I've not set the delayed_job backend for test environment …
ruby-on-rails rspec actionmailer delayed-job rails-activejobI found this Schedule one-time jobs in Rails but this only shows how schedule one-time. I am interested in scheduling …
ruby-on-rails ruby-on-rails-4 rails-activejobI am using Rails 5 and ActiveJob to process background tasks. I am trying to pass a object serialized with as_…
ruby datetime ruby-on-rails-5 rails-activejobThe common pattern for interfacing with ActionJob in Rails is to set up a Job with a perform() method that …
ruby-on-rails jobs rails-activejobThis is my first processing jobs asynchronously I am implementing Sidekiq for background processing in my app. I will use …
ruby-on-rails asynchronous sidekiq whenever rails-activejobIs there a way to disable automatic retry with ActiveJob and Sidekiq ? I know that with Sidekiq only, we just …
ruby-on-rails sidekiq rails-activejobI currently have an ActiveJob that I've created and use Sidekiq to queue it. I'm wanting to debug the job, …
ruby-on-rails sidekiq rails-console rails-activejobFrom the Rails API, I found ActiveJob can retry_job interval: my_job_instance.enqueue my_job_instance.enqueue wait: 5.…
sidekiq rails-activejobI have this code to test ActiveJob and ActionMailer with Rspec I don't know how really execute all enqueued job …
ruby-on-rails rspec actionmailer rails-activejob