forked from jejacks0n/bitbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbitbot.gemspec
More file actions
24 lines (20 loc) · 841 Bytes
/
bitbot.gemspec
File metadata and controls
24 lines (20 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "bitbot/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "bitbot"
s.version = Bitbot::VERSION
s.authors = ["jejacks0n"]
s.email = ["jejacks0n@gmail.com"]
s.homepage = "http://github.com/jejacks0n/bitbot"
s.summary = "Bitbot: Slack interface with custom responders and Wit.ai support"
s.description = "Write custom responders to integrate with slack for an admin or ops level command interface."
s.license = "MIT"
s.files = Dir["{lib}/**/*"] + ["MIT.LICENSE", "README.md"]
s.required_ruby_version = ">= 2.4"
s.add_dependency "rack"
s.add_dependency "redis"
s.add_dependency "activesupport" # TODO: move to remove this.
end