A Ruby On Rails framework for declaring jobs and performing or enqueuing them.
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-activejobI have a create action that calls an ActiveJob if the record is successfully saved. def create @object = Object.new(…
ruby-on-rails rspec rails-activejobI 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