forked from 3lvis/Networking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Networking.podspec
executable file
·32 lines (31 loc) · 1.12 KB
/
Networking.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
Pod::Spec.new do |s|
s.name = "Networking"
s.version = "5.1.0"
s.summary = "Simple HTTP Networking in Swift a NSURLSession wrapper with image caching support"
s.description = <<-EOS
Simple NSURLSession wrapper with support for image caching and faking network requests
- Super friendly API
- Singleton free
- No external dependencies
- Optimized for unit testing
- Minimal implementation
- Simple request cancellation
- Fake requests easily (mocking/stubbing)
- Runs synchronously in automatic testing environments
- Image downloading and caching
- Free
EOS
s.homepage = "https://github.com/3lvis/Networking"
s.license = 'MIT'
s.author = { "Elvis Nuñez" => "[email protected]" }
s.source = { git: "https://github.com/3lvis/Networking.git", tag: s.version.to_s }
s.social_media_url = 'https://twitter.com/3lvis'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.15'
s.watchos.deployment_target = '5.0'
s.tvos.deployment_target = '11.0'
s.requires_arc = true
s.source_files = 'Sources/**/*'
s.frameworks = 'Foundation'
s.swift_version = '5.0'
end