forked from kasketis/netfox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netfox.podspec
22 lines (20 loc) · 1.12 KB
/
netfox.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "netfox"
s.version = "1.21.0"
s.summary = "A lightweight, one line setup, iOS/OSX network debugging library!"
s.description = <<-DESC
A lightweight, one line setup, network debugging library that provides a quick look on all executed network requests performed by your app. It grabs all requests - of course yours, requests from 3rd party libraries (such as AFNetworking or else), UIWebViews, and more. Very useful and handy for network related issues and bugs.
DESC
s.homepage = "https://github.com/kasketis/netfox"
s.screenshots = "https://raw.githubusercontent.com/kasketis/netfox/master/assets/overview1_5_3.gif"
s.license = 'MIT'
s.author = "Christos Kasketis"
s.source = { :git => "https://github.com/kasketis/netfox.git", :tag => "#{s.version}" }
s.swift_versions = '5.0'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.requires_arc = true
s.source_files = "netfox/Core/*.{swift}"
s.ios.source_files = "netfox/iOS/*.swift"
s.osx.source_files = "netfox/OSX/*.{swift,xib}"
end