-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththird_party_sync.gemspec
More file actions
25 lines (24 loc) · 1.16 KB
/
third_party_sync.gemspec
File metadata and controls
25 lines (24 loc) · 1.16 KB
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
require File.expand_path('../lib/third_party_sync/version',__FILE__)
Gem::Specification.new do |gem|
gem.authors = "plusor"
gem.email = 'plusor@qq.com'
gem.description = '同步第三方API数据'
gem.summary = '同步第三方API数据'
gem.homepage = 'http://github.com/plusor/third_party_sync'
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "third_party_sync"
gem.require_paths = ['lib']
gem.version = ThirdPartySync::VERSION
gem.license = "MIT"
gem.add_development_dependency 'rake', '~> 0.9.2'
gem.add_development_dependency 'rspec', '~> 2.5'
gem.add_development_dependency 'guard'
gem.add_development_dependency 'guard-rspec'
gem.add_development_dependency 'growl'
gem.add_development_dependency 'debugger'
gem.add_development_dependency 'i18n'
gem.add_development_dependency 'active_support'
gem.add_development_dependency 'sidekiq'
gem.add_development_dependency 'sidekiq-unique-jobs'
end