forked from dmytro-anokhin/url-image
-
Notifications
You must be signed in to change notification settings - Fork 1
/
URLImage.podspec
25 lines (16 loc) · 945 Bytes
/
URLImage.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 |spec|
spec.name = "URLImage"
spec.version = "0.9.15"
spec.summary = "SwiftUI Image view that displays an image downloaded from URL."
spec.description = <<-DESC
URLImage is a SwiftUI view that displays an image downloaded from provided URL. URLImage manages downloading remote image and caching it locally, both in memory and on disk, for you.
DESC
spec.homepage = "https://github.com/dmytro-anokhin/url-image"
spec.license = "MIT"
spec.author = { "Dmytro Anokhin" => "[email protected]" }
spec.source = { :git => "https://github.com/dmytro-anokhin/url-image.git", :tag => "#{spec.version}" }
spec.source_files = "Sources", "Sources/**/*.{swift}"
spec.exclude_files = "Tests"
spec.swift_versions = "5.0"
spec.platforms = { :ios => "11.0", :tvos => "11.0", :osx => "10.13", :watchos => "4.0" }
end