aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/jobs/translated_hello_job.rb
blob: a0a68b40409b1e5ea6c6e7d078630d171d72ec02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require_relative "../support/job_buffer"

class TranslatedHelloJob < ActiveJob::Base
  def perform(greeter = "David")
    translations = { en: "Hello", de: "Guten Tag" }
    hello        = translations[I18n.locale]

    JobBuffer.add("#{greeter} says #{hello}")
  end
end