Sha256: 2d628542207b8be83e3ee7d14832800a76f54be3639f8ec783ed812230c6a537

Contents?: true

Size: 291 Bytes

Versions: 3

Compression:

Stored size: 291 Bytes

Contents

# frozen_string_literal: true

module SmartTodo
  module Dispatchers
    # A simple dispatcher that will output the reminder.
    class Output < Base
      def self.validate_options!(_); end

      # @return void
      def dispatch
        puts slack_message({})
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
smart_todo-1.3.0 lib/smart_todo/dispatchers/output.rb
smart_todo-1.2.0 lib/smart_todo/dispatchers/output.rb
smart_todo-1.1.0 lib/smart_todo/dispatchers/output.rb