forked from JohnEstropia/GCDKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGCDKit.podspec
More file actions
19 lines (17 loc) · 733 Bytes
/
GCDKit.podspec
File metadata and controls
19 lines (17 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "GCDKit"
s.version = "1.2.6"
s.license = "MIT"
s.summary = "GCDKit is Grand Central Dispatch simplified with Swift"
s.homepage = "https://github.com/JohnEstropia/GCDKit"
s.author = { "John Rommel Estropia" => "rommel.estropia@gmail.com" }
s.source = { :git => "https://github.com/JohnEstropia/GCDKit.git", :tag => s.version.to_s }
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source_files = "Sources", "Sources/**/*.{swift}"
s.frameworks = "Foundation"
s.requires_arc = true
s.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS' => '-D USE_FRAMEWORKS' }
end