module CheckerJobs

Constants

VERSION

Public Class Methods

configuration() click to toggle source
# File lib/checker_jobs.rb, line 7
def self.configuration
  @configuration || raise(Unconfigured)
end
configure(&block) click to toggle source
# File lib/checker_jobs.rb, line 11
def self.configure(&block)
  @configuration = Configuration.default.tap do |config|
    block&.call(config)
  end
end