Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jusleg/slackify-boilerplate
Rails slackbot boilerplate using slackify
https://github.com/jusleg/slackify-boilerplate
boilerplate rails slack slackbot
Last synced: 2 days ago
JSON representation
Rails slackbot boilerplate using slackify
- Host: GitHub
- URL: https://github.com/jusleg/slackify-boilerplate
- Owner: jusleg
- License: mit
- Created: 2019-03-25T06:38:14.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-23T18:39:09.000Z (over 5 years ago)
- Last Synced: 2024-11-10T23:40:34.354Z (2 months ago)
- Topics: boilerplate, rails, slack, slackbot
- Language: Ruby
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Slackify Boilerplate
Slack + Rails = ❤
This is a small slack bot app to demonstrate how [slackify](https://github.com/jusleg/slackify) works. It has four [message handlers](https://github.com/jusleg/slackify-boilerplate/blob/master/config/handlers.yml):
1. Greetings: say `hi` and it will reply `Hi there 👋`
2. Salutations: say `bye` and the bot will reply `Bye 👋`
3. Coin flip: say `coinflip` and it will flip a coin
4. Repeat: example of capture group. Say `repeat [something]` and it will reply: `you just said: [something]`It also has a [slash command handler](https://github.com/jusleg/slackify-boilerplate/blob/master/app/handlers/slash_command_handler.rb).
To receive events, send them to `/slackify/event` and `/slackify/interactive`
For more info about slackify, head over to the [official documentation](https://jusleg.com/slackify)