-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathR87DownloaderImageView.podspec
More file actions
32 lines (20 loc) · 1.45 KB
/
Copy pathR87DownloaderImageView.podspec
File metadata and controls
32 lines (20 loc) · 1.45 KB
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 = "R87DownloaderImageView"
s.version = "2.0.0"
s.summary = "R87DownloaderImageView is a UIImageView subclass which makes possible to download an image from the provided link."
s.description = <<-DESC
R87DownloaderImageView is a UIImageView subclass which makes possible to download an image from the provided link.
While the download is in progress the default or a custom propgress bar is displayed, the download returns a success block with the downloaded image or a failure block in case of an error.
DESC
s.homepage = "https://github.com/reden87/R87DownloaderImageView"
s.screenshots = "https://camo.githubusercontent.com/e2286c9a0e78c6bfdc2534e4f56027c8041e3a1a/687474703a2f2f726564656e38372e696e666f2f4769744875622f523837496d616765566965772e676966"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Gergő Németh" => "http://reden87.info/" }
s.social_media_url = "http://twitter.com/reden87"
s.ios.deployment_target = '6.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => "https://github.com/reden87/R87DownloaderImageView.git", :tag => s.version.to_s }
s.source_files = "R87DownloaderImageView/*.{h,m}"
s.requires_arc = true
s.frameworks = "Foundation", "UIKit"
end