All Projects → kciter → Simple Slack Bot

kciter / Simple Slack Bot

Licence: mit
You can easily make Slack Bot!! ⭐️

Programming Languages

ruby
36898 projects - #4 most used programming language

Labels

Projects that are alternatives of or similar to Simple Slack Bot

Solarthing
Monitors an Outback MATE and a Renogy Rover - MPPT Charge Controller. Integrates with Grafana, PVOutput and more!
Stars: ✭ 33 (-78.98%)
Mutual labels:  slack-bot
Slacky
🐍 The BEST Slack Selfbot on GitHub | No Bot User, Acts Like It's You! ⭐️
Stars: ✭ 80 (-49.04%)
Mutual labels:  slack-bot
Slack Block Builder
Lightweight, no-dependency JavaScript library for creating Slack Block Kit UIs, with a builder syntax, inspired by SwiftUI.
Stars: ✭ 129 (-17.83%)
Mutual labels:  slack-bot
Marvin
The paranoid bot (framework)
Stars: ✭ 51 (-67.52%)
Mutual labels:  slack-bot
Jbot
Make Slack and Facebook Bots in Java.
Stars: ✭ 1,148 (+631.21%)
Mutual labels:  slack-bot
Slack Machine
A sexy, simple, yet powerful and extendable Slack bot
Stars: ✭ 91 (-42.04%)
Mutual labels:  slack-bot
Slack Ruby Client
A Ruby and command-line client for the Slack Web, Real Time Messaging and Event APIs.
Stars: ✭ 957 (+509.55%)
Mutual labels:  slack-bot
Lita Slack
A Slack adapter for Lita.
Stars: ✭ 138 (-12.1%)
Mutual labels:  slack-bot
Ex mustang
✨ A simple, clueless bot
Stars: ✭ 67 (-57.32%)
Mutual labels:  slack-bot
Quantified Self
Self-knowledge through numbers
Stars: ✭ 118 (-24.84%)
Mutual labels:  slack-bot
Timezone Butler
⏰🤵 A Slack butler who will take care of the timezone differences in your team.
Stars: ✭ 63 (-59.87%)
Mutual labels:  slack-bot
Hubcommander
A Slack bot for GitHub organization management -- and other things too
Stars: ✭ 1,149 (+631.85%)
Mutual labels:  slack-bot
Botonomous
A PHP Framework For Creating Autonomous Slack Bots
Stars: ✭ 109 (-30.57%)
Mutual labels:  slack-bot
Reviewbot
Reviewbot is a Slack bot that shows reviewable pull requests.
Stars: ✭ 40 (-74.52%)
Mutual labels:  slack-bot
Atena
Atena is an initiative of the Impulso Network in collaboration with several Impulsers, with the objective to promote the engagement and to reward the activities and efforts of each person in the Impulso Network.
Stars: ✭ 133 (-15.29%)
Mutual labels:  slack-bot
Obed Bot
🍴 Obed Slack Bot, na požiadanie kontroluje aktuálnu ponuku denného menu reštaurácii. [only for slovak|czech users]
Stars: ✭ 32 (-79.62%)
Mutual labels:  slack-bot
Response
Monzo's real-time incident response and reporting tool ⚡️
Stars: ✭ 1,252 (+697.45%)
Mutual labels:  slack-bot
Slick
Slick, a Slack bot in Go
Stars: ✭ 150 (-4.46%)
Mutual labels:  slack-bot
Norrisbot
a Slack bot that kicks asses (roundhouse-kicks to be accurate...)
Stars: ✭ 134 (-14.65%)
Mutual labels:  slack-bot
Slack Sql
🎉 Bring SQL console to Slack
Stars: ✭ 115 (-26.75%)
Mutual labels:  slack-bot

SimpleSlackBot

Build Status

This library wrapping slack-ruby-client library

Preview

Preview gif

Installation

Add this line to your application's Gemfile:

gem 'simple-slack-bot'

And then execute:

$ bundle

Or install it yourself as:

$ gem install simple-slack-bot

Simple Usage

This is simple!

require 'simple-slack-bot'

bot = SlackBot::Client.new

bot.configure do |config|
  config.join_message = 'Hello!'
  config.debug = true # 
  config.token = 'YOUR SLACK BOT TOKEN'
end

bot.add_command /Hello/ do |data|
  bot.message(data['channel'], "Hello. <@#{data['user']}>!")
end

bot.start!

Refer to the Slack event message for data

License

The MIT License (MIT)

Copyright (c) 2016 Lee Sun-Hyoup

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].