module OkComputer::Checks

Constants

VERSION

Public Class Methods

register(collection = nil) { |registry| ... } click to toggle source
# File lib/ok_computer/checks.rb, line 18
def self.register(collection = nil)
  registry = Registry.new(collection)
  yield registry if block_given?
  registry
end