Sha256: e664f6d023bff5fde27d66379c777c376748c5f3b919e7b73a5beaf7bac26a71

Contents?: true

Size: 296 Bytes

Versions: 2

Compression:

Stored size: 296 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({}, nil)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
smart_todo-1.4.3 lib/smart_todo/dispatchers/output.rb
smart_todo-1.3.1 lib/smart_todo/dispatchers/output.rb