Sha256: a49d57ffb2aa88c837f4da61fedd3d21ca7c1744f1eb0e3152d171928056aac4

Contents?: true

Size: 553 Bytes

Versions: 1

Compression:

Stored size: 553 Bytes

Contents

# Active Job

Active Job backported to Rails 4.0 and 4.1

```ruby
gem 'activejob_backport'
```

And create `config/initializers/active_job.rb` with:

```ruby
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](http://edgeguides.rubyonrails.org/active_job_basics.html) and the [official repo](https://github.com/rails/rails/tree/master/activejob)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
activejob_backport-0.0.1 README.md