-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNetKit.podspec
48 lines (40 loc) · 1.45 KB
/
NetKit.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Pod::Spec.new do |spec|
spec.name = "NetKit"
spec.version = "3.0.4"
spec.summary = "A short description of NetKit."
spec.description = <<-DESC
- Singleton free
- No external dependencies
- Simple and Configurable Request
- Data Call
- Resumable Download file request
- Resumable Upload file request
- Cancellable requests
- Network Monitor for network connectivity
- Request Body/Query Parameters Encoding
- SSL Certificate Pinning
- HTTP Basic Authentication
- HTTP Digest Authentication
- Request Body Encryption (SHA256)
- Free
DESC
spec.homepage = "https://github.com/Dilip-Parmar/NetKit"
spec.license = "MIT"
spec.author = { "Dilip Parmar" => "[email protected]" }
spec.authors = { "Dilip Parmar" => "[email protected]" }
# spec.platform = :ios
# spec.platform = :ios, "12.0"
spec.ios.deployment_target = "12.0"
spec.osx.deployment_target = "10.14"
spec.watchos.deployment_target = "5.0"
spec.tvos.deployment_target = "12.0"
spec.source = { :git => "https://github.com/Dilip-Parmar/NetKit.git", :tag => spec.version }
spec.source_files = "Sources", "Sources/**/*.swift"
spec.source_files = "Sources", "Sources/**/**/*.swift"
#spec.exclude_files = "Classes/Exclude"
spec.public_header_files = "iOS/**/*.h"
spec.public_header_files = "OSX/**/*.h"
spec.public_header_files = "tvOS/**/*.h"
spec.public_header_files = "watchOS/**/*.h"
spec.requires_arc = true
end