aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_job/job_wrappers/sucker_punch_wrapper.rb
blob: 80648792ca2c364a3aa510023ccc3334c3507ac2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module ActiveJob
  module JobWrappers
    class SuckerPunchWrapper
      include SuckerPunch::Job

      def perform(job_name, *args)
        job_name.perform(*args)
      end
    end
  end
end