summaryrefslogtreecommitdiff
path: root/lib/custodian/alerts.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-24 14:40:03 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-24 14:40:03 +0000
commit1846a7188b0fa58c8ecc50d12573af92bf2fb39e (patch)
tree2ffeab10f8e977063bb003924ea27ac34b74cdd3 /lib/custodian/alerts.rb
parented4e49422719f5e7b932da3ae1be9ed26a052466 (diff)
Initial/stub implementation of a factory for generating alerting objects.
Diffstat (limited to 'lib/custodian/alerts.rb')
-rw-r--r--lib/custodian/alerts.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/custodian/alerts.rb b/lib/custodian/alerts.rb
new file mode 100644
index 0000000..74d021b
--- /dev/null
+++ b/lib/custodian/alerts.rb
@@ -0,0 +1,20 @@
+#
+# This is just a helper which means that you'll only need to
+# update the list of requires in one-place if you add a new
+# protocol alert-type
+#
+
+
+#
+# The factory
+#
+require 'custodian/alertfactory'
+
+
+#
+# The individual alert-types.
+#
+require 'custodian/alerts/mauve'
+require 'custodian/alerts/smtp'
+
+