forked from coderyi/NetworkEye
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetworkEye.podspec
More file actions
executable file
·28 lines (22 loc) · 959 Bytes
/
NetworkEye.podspec
File metadata and controls
executable file
·28 lines (22 loc) · 959 Bytes
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
27
28
Pod::Spec.new do |s|
s.name = "NetworkEye"
s.version = "1.0.6"
s.summary = "NetworkEye - a iOS network debug library ,It can monitor HTTP requests within the App and displays information related to the request."
s.homepage = "https://github.com/coderyi/NetworkEye"
s.license = "MIT"
s.authors = { "coderyi" => "coderyi@163.com" }
s.source = { :git => "https://github.com/coderyi/NetworkEye.git", :tag => "1.0.6" }
s.frameworks = 'Foundation', 'CoreGraphics', 'UIKit'
s.platform = :ios, '7.0'
s.requires_arc = true
s.default_subspec = 'standard'
s.subspec 'standard' do |ss|
ss.source_files = 'NetworkEye/NetworkEye/**/*.{h,m,png}'
end
s.subspec 'FMDB' do |ss|
ss.library = "sqlite3"
ss.xcconfig = { 'OTHER_CFLAGS' => '$(inherited) -DFMDB_SQLCipher' }
ss.dependency "FMDB/SQLCipher", "~> 2.5"
ss.source_files = 'NetworkEye/NetworkEye/**/*.{h,m,png}'
end
end