Skip to content

Commit

Permalink
[feature] release 1.0.3 you can choose to save requests to database
Browse files Browse the repository at this point in the history
  • Loading branch information
coderyi committed Sep 25, 2016
1 parent 614a8df commit 74006c6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
19 changes: 13 additions & 6 deletions NetworkEye.podspec
Original file line number Diff line number Diff line change
@@ -1,19 +1,26 @@
Pod::Spec.new do |s|
s.name = "NetworkEye"
s.version = "1.0.1"
s.version = "1.0.3"
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.1" }
s.source = { :git => "https://github.com/coderyi/NetworkEye.git", :tag => "1.0.3" }
s.frameworks = 'Foundation', 'CoreGraphics', 'UIKit'
s.library = "sqlite3"
s.platform = :ios, '7.0'
s.source_files = 'NetworkEye/NetworkEye/**/*.{h,m,png}'
s.requires_arc = true

s.dependency "FMDB/SQLCipher", "~> 2.5"
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



Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@ I think NetworkEye need a logo,I hope some can help me.
#### Podfile

```ruby
platform :ios, '7.0'
pod 'NetworkEye', '~> 1.0.1'

platform :ios, '7.0'
pod 'NetworkEye', '~> 1.0.3'
# pod 'NetworkEye/FMDB', '~> 1.0.3' # NetworkEye with FMDB ,save your requests to database

```


Expand Down

0 comments on commit 74006c6

Please sign in to comment.