class KwargsJob
Public Instance Methods
perform(argument: 1)
click to toggle source
# File activejob/test/jobs/kwargs_job.rb, line 6 def perform(argument: 1) JobBuffer.add("Job with argument: #{argument}") end