-
Notifications
You must be signed in to change notification settings - Fork 2
/
fpingx.podspec
26 lines (20 loc) · 940 Bytes
/
fpingx.podspec
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 = 'fpingx'
s.version = '0.1.3'
s.summary = 'A swift wrapper of fping which is a high performance ping tool'
s.description = <<-DESC
A swift wrapper of fping which is a high performance ping tool
DESC
s.homepage = 'https://github.com/jackymelb/fpingx'
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.author = { 'jackymelb' => 'jackymelb@gmail.com' }
s.source = { :git => 'https://github.com/jackymelb/fpingx.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/jackymelb'
s.platform = :ios, :osx
s.swift_version = '5.0'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.source_files = 'fpingx/fpingx.swift', 'fpingx/fpingx.h', 'fping/*'
s.public_header_files = 'fpingx/fpingx.h', 'fping/*.h'
s.frameworks = 'Foundation'
end