sshaw/itunes_store_transporter_web

View on GitHub
app/jobs/send_notification_job.rb

Summary

Maintainability
A
0 mins
Test Coverage
SendNotificationJob = Struct.new(:job_id) do
  def perform
    SendNotification.new.send(job_id)
  end

  def queue_name
    "notifications".freeze
  end
end