-
Notifications
You must be signed in to change notification settings - Fork 0
/
StubNetworkKit.podspec
30 lines (24 loc) · 1.14 KB
/
StubNetworkKit.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
Pod::Spec.new do |spec|
spec.name = "StubNetworkKit"
spec.version = ENV['POD_VERSION']
spec.summary = "100% pure Swift library to stub network requests."
spec.description = <<-DESC
**100% pure Swift** library to stub network requests.
**100% pure Swift** means,
- No more Objective-C API
- Testable also in other than Apple platform (e.g. Linux)
DESC
spec.homepage = "https://github.com/417-72KI/StubNetworkKit"
spec.license = "MIT"
spec.author = { "417-72KI" => "417.72ki@gmail.com" }
spec.social_media_url = "https://twitter.com/417_72ki"
spec.ios.deployment_target = "16.0"
spec.osx.deployment_target = "13.0"
# spec.watchos.deployment_target = "9.0"
spec.tvos.deployment_target = "16.0"
spec.source = { :git => "https://github.com/417-72KI/#{spec.name}.git", :tag => "#{spec.version}" }
spec.source_files = 'Sources/StubNetworkKit/**/*.swift'
spec.swift_versions = ['5.10', '5.9']
spec.frameworks = 'Foundation'
spec.dependency 'MultipartFormDataParser', '~> 2.3.0'
end