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