forked from ashleymills/Reachability.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReachabilitySwift.podspec
More file actions
26 lines (24 loc) · 829 Bytes
/
ReachabilitySwift.podspec
File metadata and controls
26 lines (24 loc) · 829 Bytes
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 = 'ReachabilitySwift'
s.version = '5.0.0-beta1'
s.module_name = 'Reachability'
s.homepage = 'https://github.com/ashleymills/Reachability.swift'
s.authors = {
'Ashley Mills' => 'ashleymills@mac.com'
}
s.summary = 'Replacement for Apple\'s Reachability re-written in Swift with callbacks.'
s.license = { :type => 'MIT' }
# Source Info
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.source = {
:git => 'https://github.com/ashleymills/Reachability.swift.git',
:tag => 'v'+s.version.to_s
}
s.source_files = 'Sources/Reachability.swift'
s.framework = 'SystemConfiguration'
s.ios.framework = 'CoreTelephony'
s.requires_arc = true
s.swift_version = '5.0'
end