-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathSwiftPing.podspec
More file actions
executable file
·27 lines (23 loc) · 898 Bytes
/
SwiftPing.podspec
File metadata and controls
executable file
·27 lines (23 loc) · 898 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
27
Pod::Spec.new do |s|
s.name = "SwiftPing"
s.summary = "SwiftPing:ICMP Ping in swift"
s.version = "1.1.1"
s.homepage = "https://github.com/ankitthakur/SwiftPing"
s.license = 'MIT'
s.author = { "Ankit Thakur" => "ankitthakur85@icloud.com" }
s.source = {
:git => "https://github.com/ankitthakur/SwiftPing.git",
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/ankitthakur'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.2'
s.requires_arc = true
s.ios.source_files = 'Sources/{iOS,Shared}/**/*'
s.tvos.source_files = 'Sources/{iOS,Shared}/**/*'
s.osx.source_files = 'Sources/{Mac,Shared}/**/*'
# s.ios.frameworks = 'UIKit', 'Foundation'
# s.osx.frameworks = 'Cocoa', 'Foundation'
# s.dependency 'Whisper', '~> 1.0'
end