forked from divar-ir/NetShears
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NetShears.podspec
25 lines (17 loc) · 1011 Bytes
/
NetShears.podspec
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
Pod::Spec.new do |s|
s.name = "NetShears"
s.version = "1.0.0"
s.summary = "iOS Network interceptor framework written in Swift"
s.description = <<-DESC
NetShears adds a Request interceptor mechanisms to be able to modify the HTTP/HTTPS Request before being sent . This mechanism can be used to implement authentication policies, add headers to a request , add log trace or even redirect requests.
DESC
s.homepage = "https://github.com/divar-ir/NetShears"
s.screenshots = "https://raw.githubusercontent.com/divar-ir/NetShears/master/logo.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Mehdi Mirzaie" => "mehdiimrz@gmail.com" }
s.social_media_url = "https://github.com/mehdiimrz"
s.swift_versions = ['5.3']
s.ios.deployment_target = '9.0'
s.source = { :git => "https://github.com/divar-ir/NetShears.git", :tag => s.version }
s.source_files = ["Sources/**/*.swift"]
end