Sha256: b6a8773acd0daf218f10d8e976b7ccdeebf640f5d98aac9a2a2a6f31b8134713

Contents?: true

Size: 266 Bytes

Versions: 2

Compression:

Stored size: 266 Bytes

Contents

module AwsAlertMonitor
  module Events

    class Unknown < Event

      def body
        "received an alert: \n\n #{raw_data.to_s}"
      end

      def subject
        "Alert: unknown type"
      end

      def type
        'unknown'
      end

    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
aws-alert-monitor-0.1.0 lib/aws-alert-monitor/events/unknown.rb
aws-alert-monitor-0.0.5 lib/aws-alert-monitor/events/unknown.rb