# frozen_string_literal: true module Bullet module ActiveJob def self.included(base) base.class_eval { around_perform { |_job, block| Bullet.profile { block.call } } } end end end