module Checkups

TODO: flesh out a manager class that can keep better track of the Checkup classes TODO: \ and if they're being executed, so if something gets skipped for some reason TODO: \ maybe it has a chance of being discovered instead of silently just never TODO: \ being executed.

Constants

VERSION

Attributes

configuration[W]

Public Class Methods

configuration() click to toggle source
# File lib/checkups/configuration.rb, line 7
def configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/checkups/configuration.rb, line 12
def self.configure
  yield(configuration)
end