-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetPulseKit.podspec
More file actions
19 lines (18 loc) · 905 Bytes
/
NetPulseKit.podspec
File metadata and controls
19 lines (18 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "NetPulseKit"
s.version = "1.0.0"
s.summary = "Real-time iOS network quality monitoring."
s.description = <<-DESC
NetPulseKit is a Swift library that monitors connectivity, active interface, expensive/constrained path state,
latency probes, and estimated packet loss based on rolling probe failures.
DESC
s.homepage = "https://github.com/Ahsan-Pitafi/NetPulseKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Ahsan Iqbal" => "ahsan.iqbal.pitafi@gmail.com" }
s.source = { :git => "https://github.com/Ahsan-Pitafi/NetPulseKit.git", :tag => s.version.to_s }
s.ios.deployment_target = "15.0"
s.swift_versions = ["5.9"]
s.source_files = "Sources/NetPulseKit/**/*.{swift}"
s.frameworks = "Network"
s.requires_arc = true
end