slack-ruby-bot
slack-ruby-bot copied to clipboard
The easiest way to write a Slack bot in Ruby.
Hey @dblock, thanks for all you've done here. According to Slack (https://api.slack.com/changelog/2021-10-rtm-start-to-stop), the `rtm.connect` method will still be supported past September 2022? Indeed if I set that method of connecting...
Hi Team, Issue: when i post a command as a thread message, its automatically getting reposted as a direct message also... payload sent from slack after posting the command -...
IFTT messages are attachments, use fallback text or extract text from those. ``` # ``` Workaround: ```ruby module SlackRubyBot module Hooks class Message alias_method :_call, :call def call(client, data) data.text...
Hi, Seems like there is no way to stop the bot while running commands. It will be nice if the SlackRubyBot::App.instance.run will catch" kill signal" will stop listen to the...
Hey evreyone, i'm using this gem for a personal project, nothing too fancy. I'm stuck trying to get the bot send a message to the general channel when a "broadcast"...
Hi there, I've had a working bot/app for a while, passed a `SLACK_API_TOKEN` env var with the bot user token, and just ran into the following issue today after changing...
I'm writing a command and I want to `client.say` something then reply to that in a thread with more details. At the moment, I have no way of getting the...
Hi there, We are using this gem in a simple project that uses a database. We've noticed that when we let the app idle for some time (unsure exactly for...
Just started using this gem, fantastic! I use @bot [command] but would like to use /[command] just like /giphy [gifname] Is this supported? Thanks!
Slack performs encoding of special characters `&` ``. Those should be unencoded by the app but currently aren't. So when in slack I type `@myBot find students of MSc &...