diff options
author | Zachary Scott <e@zzak.io> | 2014-11-03 19:22:57 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-11-03 19:22:57 -0800 |
commit | c07c0b268e3247ae34e3c5a6f39977b45ec0487f (patch) | |
tree | 31c4d9372fbc2b1a5dbc3a9e435eafa516f67e72 /activejob | |
parent | 73161c5744feed7a6d86c18886a7a34fdc61dfb6 (diff) | |
download | rails-c07c0b268e3247ae34e3c5a6f39977b45ec0487f.tar.gz rails-c07c0b268e3247ae34e3c5a6f39977b45ec0487f.tar.bz2 rails-c07c0b268e3247ae34e3c5a6f39977b45ec0487f.zip |
Document the module which includes `perform_later` for AJ::Enqueuing [ci skip]
Diffstat (limited to 'activejob')
-rw-r--r-- | activejob/lib/active_job/enqueuing.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activejob/lib/active_job/enqueuing.rb b/activejob/lib/active_job/enqueuing.rb index 53d944021a..b87803864c 100644 --- a/activejob/lib/active_job/enqueuing.rb +++ b/activejob/lib/active_job/enqueuing.rb @@ -4,6 +4,7 @@ module ActiveJob module Enqueuing extend ActiveSupport::Concern + # Includes the `perform_later` method for job initialization. module ClassMethods # Push a job onto the queue. The arguments must be legal JSON types # (string, int, float, nil, true, false, hash or array) or |