1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Rename to InlineAdapter to match *Adapter form, even if the queue is embedded in there too

This commit is contained in:
David Heinemeier Hansson 2014-05-18 13:10:34 +02:00
parent 08a2ba99e0
commit 30973e35a0

View file

@ -0,0 +1,11 @@
module ActiveJob
module QueueAdapters
class InlineAdapter
class << self
def queue(job, *args)
job.perform(*args)
end
end
end
end
end