twitch_chatter 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/twitch_chatter.rb +24 -0
- metadata +44 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b7d4ba180e523e3c21f4124b3b12c166b6e21b7af9f8c6a882ee5a01bb22b543
|
4
|
+
data.tar.gz: 9a92e1418e6f7b95b13ae87fd283365c16e0ec2688ec795457679c512c25efb8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 236cea705bb4b56208403dd37dbad1ddf5dc10200a91a9ebdc52a4cbcca9b8424ef853ddef0ef0d32fc3a841b0b1963d4ea1682ab9a84b91298625c33a87d26c
|
7
|
+
data.tar.gz: 8cfe361fb854df8eb88c6ca3abee5b09b81836c1e42ad9462a0fbc4e2874323fbdbbea92f874056d22bc85eca319bbd8955d78a8fe84a33544debc4d44866150
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "async"
|
4
|
+
require "async/http/endpoint"
|
5
|
+
require "async/websocket/client"
|
6
|
+
require_relative "twitch_chatter/concerns"
|
7
|
+
require_relative "twitch_chatter/models"
|
8
|
+
require_relative "twitch_chatter/bot"
|
9
|
+
|
10
|
+
# @author Dylan Hackworth <me@dylhack.dev>
|
11
|
+
# @example
|
12
|
+
# bot = Twitch::Bot.new
|
13
|
+
#
|
14
|
+
# bot.ready do
|
15
|
+
# puts "Ready!"
|
16
|
+
# end
|
17
|
+
#
|
18
|
+
# bot.join(:twitchgaming) do |message|
|
19
|
+
# puts "#{message.channel} #{message.user}: #{message.text}"
|
20
|
+
# end
|
21
|
+
#
|
22
|
+
# bot.start
|
23
|
+
module Twitch
|
24
|
+
end
|
metadata
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: twitch_chatter
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Dylan Hackworth
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-05-21 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: A Ruby gem for Twitch's chat IRC websocket
|
14
|
+
email: me@dylhack.dev
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- lib/twitch_chatter.rb
|
20
|
+
homepage: https://github.com/dylhack/twitch-chat-gem
|
21
|
+
licenses:
|
22
|
+
- MIT
|
23
|
+
metadata:
|
24
|
+
source_code_uri: https://github.com/dylhack/twitch-chat-gem
|
25
|
+
post_install_message:
|
26
|
+
rdoc_options: []
|
27
|
+
require_paths:
|
28
|
+
- lib
|
29
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 3.1.0
|
34
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - ">="
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '0'
|
39
|
+
requirements: []
|
40
|
+
rubygems_version: 3.5.9
|
41
|
+
signing_key:
|
42
|
+
specification_version: 4
|
43
|
+
summary: Read-only Twitch chat client.
|
44
|
+
test_files: []
|