mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
10 lines
195 B
Ruby
10 lines
195 B
Ruby
|
require 'que'
|
||
|
|
||
|
Que::Job.class_eval do
|
||
|
class << self; alias_method :original_enqueue, :enqueue; end
|
||
|
def self.enqueue(*args)
|
||
|
args.pop if args.last.is_a?(Hash)
|
||
|
self.run(*args)
|
||
|
end
|
||
|
end
|