An open API service indexing awesome lists of open source software.

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

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
```