-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleAsyncImage.podspec
More file actions
23 lines (22 loc) · 1.07 KB
/
SimpleAsyncImage.podspec
File metadata and controls
23 lines (22 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.platform = :ios, "13.0"
s.swift_version = '5.0'
s.name = "SimpleAsyncImage"
s.version = "1.0.3"
s.summary = "Simple iOS 13 AsyncImage"
s.description = <<-DESC
iOS >= 13 AsyncImage with the following characteristics:
- Loads the image when te view appears in the screen
- Cancel download request when it disappears
- (optional) in-memory cache to avoid too many URLRequest
- Thread safe
- Concurrency handling to avoid duplicate URLRequest
- Automatically reload when connectivity is regained
- Automatic retry when URLRequest fails
DESC
s.homepage = "https://github.com/MarcBiosca/AsyncImage.git"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "MarcBiosca" => "marc@dostresdos.com" }
s.source = { :git => "https://github.com/MarcBiosca/AsyncImage.git", :tag => "#{s.version}" }
s.source_files = 'Sources/AsyncImage/**/*'
end