forked from vapor-community/async
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathasync.podspec
More file actions
19 lines (16 loc) · 897 Bytes
/
async.podspec
File metadata and controls
19 lines (16 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = 'Async'
spec.version = '1.0.0'
spec.license = { :type => 'BSD' }
spec.homepage = 'https://github.com/CodeCraftersIO/async'
spec.authors = { 'Pierluigi Cifani' => 'pcifani@blurredsoftware.com' }
spec.summary = 'ARC and GCD Compatible Reachability Class for iOS and OS X.'
spec.source = { :git => 'https://github.com/CodeCraftersIO/async.git', :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*.{swift,m,h}"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.ios.deployment_target = "11.0"
spec.osx.deployment_target = "10.13"
spec.watchos.deployment_target = "4.0"
spec.tvos.deployment_target = "11.0"
spec.swift_version = "4.0"
end