-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetStatus.podspec
More file actions
16 lines (16 loc) · 830 Bytes
/
NetStatus.podspec
File metadata and controls
16 lines (16 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |spec|
spec.name = "NetStatus"
spec.version = "1.0.0"
spec.summary = "A small framework to monitor network changes in Swift."
spec.description = <<-DESC
NetStatus is a small and lightweight Swift framework that allows to monitor and being notified for network status changes in a super-easy way!
DESC
spec.homepage = "https://appcoda.com"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "YOUR_NAME" => "YOUR_EMAIL" }
spec.platform = :ios, "12.0"
# spec.source = { :http => 'file:' + __dir__ + "/" }
spec.source = { :git => "https://github.com/grisvladko/NetStatus.git", :tag => "#{spec.version}" }
spec.source_files = "NetStatus/Source/*.{swift}"
spec.swift_version = "5.0"
end