forked from kasketis/netfox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
netfox.podspec
22 lines (18 loc) · 1.07 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.8"
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 => '1.8' }
s.platform = :ios, '8.0'
s.platform = :osx, '10.0'
s.requires_arc = true
s.ios.source_files = "netfox/Core/*.swift" , "netfox/iOS/*.swift"
s.osx.source_files = "netfox/Core/*.swift" , "netfox/OSX/*.swift"
end