aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs/gid_job.rb
blob: c43e25a796b588e844fac6113e6174dc9e0f6df1 (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
require_relative "../support/job_buffer"

class GidJob < ActiveJob::Base
  def perform(person)
    JobBuffer.add("Person with ID: #{person.id}")
  end
end