Module: Checkups
- Defined in:
- lib/checkups/checkup.rb,
lib/checkups.rb,
lib/checkups/version.rb,
lib/checkups/performance.rb,
lib/checkups/configuration.rb,
lib/checkups/sidekiq_worker.rb,
lib/checkups/slack_notifier.rb,
lib/checkups/notification_timer.rb
Overview
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.
Defined Under Namespace
Classes: Checkup, Configuration, IntervalChecker, NotificationTimer, OneCheckupWorker, Performance, SidekiqWorker, SlackNotifier
Constant Summary collapse
- VERSION =
"0.9.0"
Class Attribute Summary collapse
Class Method Summary collapse
Class Attribute Details
.configuration ⇒ Object
7 8 9 |
# File 'lib/checkups/configuration.rb', line 7 def configuration @configuration ||= Configuration.new end |
Class Method Details
.configure {|configuration| ... } ⇒ Object
12 13 14 |
# File 'lib/checkups/configuration.rb', line 12 def self.configure yield(configuration) end |