-
Notifications
You must be signed in to change notification settings - Fork 0
/
APNSubGroupOperationQueue.podspec
26 lines (19 loc) · 1.11 KB
/
APNSubGroupOperationQueue.podspec
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
Pod::Spec.new do |s|
s.name = "APNSubGroupOperationQueue"
s.version = "4.0.0"
s.summary = "Serial processing sub groups inside your concurrent NSOperationQueue."
s.description = "APNSubGroupOperationQueue is a µFramework consisting of `NSOperationQueue` subclasses (Swift & Obj-C) which allow scheduling operations in serial subgroups inside a concurrent queue"
s.homepage = "https://github.com/p4checo/APNSubGroupOperationQueue"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'André Pacheco Neves' => 'p4checo + @ + gmail + . + com' }
s.social_media_url = 'https://twitter.com/p4checo'
s.module_name = 'APNSubGroupOperationQueue'
s.swift_version = '5.0'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'
s.source = { :git => "https://github.com/p4checo/APNSubGroupOperationQueue.git", :tag => s.version }
s.source_files = "Sources/**/*.swift"
s.framework = "Foundation"
end