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