-
Notifications
You must be signed in to change notification settings - Fork 370
/
Copy pathwechat.gemspec
25 lines (21 loc) · 979 Bytes
/
wechat.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
25
version = File.read(File.expand_path('../VERSION', __FILE__)).strip
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.authors = ['Skinnyworm', 'Eric Guo']
s.email = 'eric.guocz@gmail.com'
s.homepage = 'https://github.com/Eric-Guo/wechat'
s.name = 'wechat'
s.version = version
s.licenses = ['MIT']
s.summary = 'DSL for wechat message handling and API'
s.description = 'API, command and message handling for WeChat in Rails'
s.files = Dir['{bin,lib}/**/*'] + %w(LICENSE Rakefile README.md README-CN.md CHANGELOG.md)
s.executables << 'wechat'
s.add_runtime_dependency 'activesupport', '>= 3.2', '< 5.1.x'
s.add_runtime_dependency 'nokogiri', '>=1.6.0'
s.add_runtime_dependency 'thor'
s.add_runtime_dependency 'http', '~> 1.0', '>= 1.0.1'
s.add_development_dependency 'rspec-rails', '~> 3.4'
s.add_development_dependency 'rails', '>= 3.2'
s.add_development_dependency 'sqlite3'
end