diff options
| author | Steve Kemp <steve@steve.org.uk> | 2012-11-24 14:40:03 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2012-11-24 14:40:03 +0000 | 
| commit | 1846a7188b0fa58c8ecc50d12573af92bf2fb39e (patch) | |
| tree | 2ffeab10f8e977063bb003924ea27ac34b74cdd3 /lib/custodian/alerts | |
| parent | ed4e49422719f5e7b932da3ae1be9ed26a052466 (diff) | |
  Initial/stub implementation of a factory for generating alerting objects.
Diffstat (limited to 'lib/custodian/alerts')
| -rw-r--r-- | lib/custodian/alerts/mauve.rb | 34 | ||||
| -rw-r--r-- | lib/custodian/alerts/smtp.rb | 34 | 
2 files changed, 68 insertions, 0 deletions
| diff --git a/lib/custodian/alerts/mauve.rb b/lib/custodian/alerts/mauve.rb new file mode 100644 index 0000000..c3e8a76 --- /dev/null +++ b/lib/custodian/alerts/mauve.rb @@ -0,0 +1,34 @@ + + + +# +#  The Mauve-alerter. +# +module Custodian + +  module Alerter + +    class Mauve < AlertFactory + +      # +      # The test this alerter cares about +      # +      attr_reader :test + +      # +      # Constructor +      # +      def initialize( obj ) +        @test = obj +      end + + + +      register_alert_type "mauve" + + + + +    end +  end +end diff --git a/lib/custodian/alerts/smtp.rb b/lib/custodian/alerts/smtp.rb new file mode 100644 index 0000000..21ef791 --- /dev/null +++ b/lib/custodian/alerts/smtp.rb @@ -0,0 +1,34 @@ + + + +# +#  The SMTP-alerter. +# +module Custodian + +  module Alerter + +    class SMTP < AlertFactory + +      # +      # The test this alerter cares about +      # +      attr_reader :test + +      # +      # Constructor +      # +      def initialize( obj ) +        @test = obj +      end + + + +      register_alert_type "smtp" + + + + +    end +  end +end | 
