-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYarp.podspec
21 lines (17 loc) · 990 Bytes
/
Yarp.podspec
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 = "Yarp"
s.version = "1.0.0"
s.summary = "Yarp (Yet another reachability pod) is a reachability framework with a focus on reliability and simplicity."
s.description = <<-DESC
Yarp (Yet another reachability pod) is a reachability framework with a focus on reliability and simplicity. Yarp fully supports IPv6 and IPv4. Yarp allows you to observer changes in reachability using blocks or notifications.
DESC
s.homepage = "https://github.com/vectorform/Yarp"
s.license = 'BSD' #{:type => "BSD", :file => "LICENSE"}
s.author = { "Vectorform" => "[email protected]" }
s.source = { :git => "https://github.com/vectorform/Yarp.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/vectorform'
s.source_files = 'Source/*.swift'
s.platform = :ios, '8.0'
s.requires_arc = true
s.frameworks = 'SystemConfiguration'
end