Sha256: 6d2d29395c1035990ea5f77ac283c3ed404d2d834d7bc06d74d99f00513928b8

Contents?: true

Size: 237 Bytes

Versions: 19

Compression:

Stored size: 237 Bytes

Contents

# frozen_string_literal: true

module Twitch
  module Bot
    # Represent a generic Twitch chat event/message
    class Event
      attr_reader :type

      def initialize(type: :unknown)
        @type = type
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
twitch-bot-6.0.0 lib/twitch/bot/event.rb
twitch-bot-5.0.6 lib/twitch/bot/event.rb
twitch-bot-5.0.5 lib/twitch/bot/event.rb
twitch-bot-5.0.4 lib/twitch/bot/event.rb
twitch-bot-5.0.2 lib/twitch/bot/event.rb
twitch-bot-5.0.1 lib/twitch/bot/event.rb
twitch-bot-5.0.0 lib/twitch/bot/event.rb
twitch-bot-4.1.1 lib/twitch/bot/event.rb
twitch-bot-4.1.0 lib/twitch/bot/event.rb
twitch-bot-4.0.1 lib/twitch/bot/event.rb
twitch-bot-4.0.0 lib/twitch/bot/event.rb
twitch-bot-3.2.1 lib/twitch/bot/event.rb
twitch-bot-3.2.0 lib/twitch/bot/event.rb
twitch-bot-3.1.0 lib/twitch/bot/event.rb
twitch-bot-2.1.1 lib/twitch/bot/event.rb
twitch-bot-2.1.0 lib/twitch/bot/event.rb
twitch-bot-2.0.1 lib/twitch/bot/event.rb
twitch-bot-2.0.0 lib/twitch/bot/event.rb
twitch-bot-1.0.0 lib/twitch/bot/event.rb