-
Notifications
You must be signed in to change notification settings - Fork 18
/
open_taobao.gemspec
25 lines (22 loc) · 953 Bytes
/
open_taobao.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/open_taobao/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["wongyouth"]
gem.email = ["[email protected]"]
gem.description = %q{淘宝开放平台ruby版,支持Rails3+}
gem.summary = %q{Open Taobao API for ruby}
gem.homepage = "http://github.com/wongyouth/open_taobao"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "open_taobao"
gem.license = 'MIT'
gem.require_paths = ["lib"]
gem.version = OpenTaobao::VERSION
gem.add_dependency "multi_json"
gem.add_dependency "faraday"
gem.add_development_dependency "rspec"
gem.add_development_dependency "debugger"
gem.add_development_dependency "autotest"
gem.add_development_dependency "rake"
end