-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathkamigo.gemspec
24 lines (20 loc) · 877 Bytes
/
kamigo.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "kamigo/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "kamigo"
spec.version = Kamigo::VERSION
spec.authors = ["etrex"]
spec.email = ["et284vu065k3@gmail.com"]
spec.homepage = "https://github.com/etrex/kamigo"
spec.summary = "a chatbot framework based on rails"
spec.description = "a chatbot framework based on rails"
spec.license = "MIT"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails", ">= 5.0.0"
spec.add_dependency "kamiliff", '~> 0.36', ">= 0.36.0"
spec.add_dependency "kamiflex", '~> 0.17', ">= 0.17.0"
spec.add_dependency "line-bot-api", '~> 1.28'
spec.add_development_dependency "sqlite3", '~> 1.0'
end