diff options
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | lib/active_job/enqueuing.rb | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -82,6 +82,7 @@ by default has been mixed into Active Record classes. We currently have adapters for: +* [Backburner](https://github.com/nesquena/backburner) * [Delayed Job](https://github.com/collectiveidea/delayed_job) * [Que](https://github.com/chanks/que) * [QueueClassic](https://github.com/ryandotsmith/queue_classic) diff --git a/lib/active_job/enqueuing.rb b/lib/active_job/enqueuing.rb index 5ca901516c..80b10cdbcb 100644 --- a/lib/active_job/enqueuing.rb +++ b/lib/active_job/enqueuing.rb @@ -2,7 +2,6 @@ require 'active_job/parameters' module ActiveJob module Enqueuing - # Push a job onto the queue. The arguments must be legal JSON types # (string, int, float, nil, true, false, hash or array) or # ActiveModel::GlobalIdentication instances. Arbitrary Ruby objects |