class Intrigue::Ident::CheckFactory

Public Class Methods

all() click to toggle source

Provide the full list of checks

# File lib/check_factory.rb, line 16
def self.all
  @checks
end
register(klass) click to toggle source

Register a new handler

# File lib/check_factory.rb, line 8
def self.register(klass)
  @checks = [] unless @checks
  @checks << klass if klass
end