forked from FabrizioBrancati/Queuer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueuer.podspec
20 lines (18 loc) · 990 Bytes
/
Queuer.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'Queuer'
s.module_name = 'Queuer'
s.version = '1.2.0'
s.summary = 'Queuer is a queue manager, built on top of OperationQueue and Dispatch (aka GCD).'
s.homepage = 'https://github.com/FabrizioBrancati/Queuer'
s.screenshots = 'https://github.fabriziobrancati.com/queuer/resources/queuer-screenshot.png'
s.authors = { 'Fabrizio Brancati' => '[email protected]' }
s.social_media_url = 'https://twitter.com/infinity4all'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/FabrizioBrancati/Queuer.git', :tag => s.version }
s.documentation_url = 'https://github.fabriziobrancati.com/documentation/Queuer/'
s.source_files = 'Sources/**/*.swift'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
end