-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAndyGCD.podspec
More file actions
21 lines (16 loc) · 798 Bytes
/
AndyGCD.podspec
File metadata and controls
21 lines (16 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "AndyGCD"
s.version = "1.1.0"
s.summary = "AndyGCD aimed to make C GCD easier and simpler to use. "
s.description = "AndyGCD aimed to make C GCD、OC Thread easier and simpler to use. Include dispatchQueue、delay、group、timer、semaphore、apply、barrier、LifeFreedomThread and SafeThread"
s.homepage = "https://github.com/lyandy/AndyGCD"
s.license = "MIT"
s.author = { "李扬" => "liyangforever@vip.qq.com" }
s.source = { :git => "https://github.com/lyandy/AndyGCD.git", :tag => s.version }
s.platform = :ios, "8.0"
s.ios.deployment_target = "8.0"
s.public_header_files = 'AndyGCD/**/*.{h}'
s.source_files = 'AndyGCD/**/*.{h,m}'
s.framework = "Foundation"
s.requires_arc = true
end