1 2 3 4 5 6 7 8
class ReferentialDestroyWorker include Sidekiq::Worker def perform(id) ref = Referential.find id ref.destroy if ref end end