Top "Rails-activejob" questions

A Ruby On Rails framework for declaring jobs and performing or enqueuing them.

Rails 4.1 with ActiveJob gem - uninitialized constant ActiveJob

I have followed the getting started with active job article by EngineYard. The article states: You'll need Rails 4.2.0beta1 or …

ruby-on-rails rails-activejob
How to test that ActiveJob is enqueued?

I have a create action that calls an ActiveJob if the record is successfully saved. def create @object = Object.new(…

ruby-on-rails rspec rails-activejob
Rails Active Job: perform_later not executing in background

I have a lengthy task that needs to run in the background in my Rails 4.2.6 app. Unfortunately, the job is …

ruby-on-rails rails-activejob