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

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