Skip to content
This repository has been archived by the owner on Oct 15, 2018. It is now read-only.

Latest commit

 

History

History
19 lines (13 loc) · 688 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 688 Bytes

Active Job

Active Job backported to Rails 4.0 and 4.1

gem 'activejob_backport'

And create config/initializers/active_job.rb with:

ActiveJob::Base.queue_adapter = :inline # default queue adapter
# Adapters currently supported: :backburner, :delayed_job, :qu, :que, :queue_classic,
#                               :resque, :sidekiq, :sneakers, :sucker_punch

See how to use Active Job and the official repo

Build Status