https://github.com/dylhack/twitch_chatter
A Ruby gem for Twitch's IRC websocket
https://github.com/dylhack/twitch_chatter
Last synced: 5 months ago
JSON representation
A Ruby gem for Twitch's IRC websocket
- Host: GitHub
- URL: https://github.com/dylhack/twitch_chatter
- Owner: dylhack
- License: mit
- Created: 2024-05-20T22:18:28.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-30T21:12:56.000Z (over 1 year ago)
- Last Synced: 2025-12-05T23:54:36.864Z (7 months ago)
- Language: Ruby
- Homepage: https://rubydoc.info/gems/twitch_chatter
- Size: 44.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
```sh
bundle add twitch_chatter
```
- [Documentation](https://rubydoc.info/gems/twitch_chatter)
# Example Usage
```ruby
require "twitch_chatter"
bot = Twitch::Bot.new
bot.ready do
puts "Ready!"
end
bot.join(:piratesoftware) do |message|
puts "##{message.channel} #{message.user}: #{message.text}"
end
bot.start
```