aboutsummaryrefslogtreecommitdiffstats
path: root/test/jobs/hello_job.rb
blob: d0e65f96743b59b8f7c622498d1bea5509cd8039 (plain) (blame)
1
2
3
4
5
class HelloJob < ActiveJob::Base
  def self.perform(greeter = "David")
    $BUFFER << "#{greeter} says hello"
  end
end