-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathqy_wechat_api.gemspec
33 lines (27 loc) · 1.22 KB
/
qy_wechat_api.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
26
27
28
29
30
31
32
33
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'qy_wechat_api/version'
Gem::Specification.new do |spec|
spec.name = "qy_wechat_api"
spec.version = QyWechatApi::VERSION
spec.authors = ["lanrion"]
spec.email = ["[email protected]"]
spec.summary = %q{企业微信高级API Ruby版本}
spec.description = %q{企业微信高级API Ruby版本}
spec.homepage = "https://github.com/lanrion/qy_wechat_api"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "rest-client", ">= 1.6.7"
# A streaming JSON parsing and encoding library for Ruby (C bindings to yajl)
# https://github.com/brianmario/yajl-ruby
spec.add_dependency "yajl-ruby", ">= 1.2.0"
spec.add_dependency "activesupport"
spec.add_dependency "carrierwave", ">= 0.10.0"
spec.add_dependency 'mini_magick', '>= 3.7.0'
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake"
end