reevoo/sapience-rb

View on GitHub
lib/sapience/sneakers.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
require "sapience"

module Sneakers
  module Worker
    extend Sapience::Descendants
  end
end

module Sapience
  module Sneakers
    ::Sneakers::Worker.descendants.each do |worker|
      worker.send(:include, Sapience::Loggable)
    end
  end
end