-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathZYGCDTimer.podspec
More file actions
23 lines (18 loc) · 808 Bytes
/
ZYGCDTimer.podspec
File metadata and controls
23 lines (18 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'ZYGCDTimer'
s.version = '1.0.0'
s.summary = "A timer that doesn't retain the target and supports being used with GCD queues"
s.homepage = 'https://github.com/ripperhe/ZYGCDTimer'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'ripperhe' => 'ripperhe@qq.com' }
s.source = { :git => 'https://github.com/ripperhe/ZYGCDTimer.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.12'
s.source_files = 'ZYGCDTimer/**/*'
# s.resource_bundles = {
# 'ZYGCDTimer' => ['ZYGCDTimer/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end