-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathSDWebImage-CircularProgressView.podspec
22 lines (22 loc) · 1.13 KB
/
SDWebImage-CircularProgressView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "SDWebImage-CircularProgressView"
s.version = "0.1.2"
s.summary = "Category for UIImageView. Adds circular, linear or custom progress view. Images downloading by SDWebImage."
s.description = <<-DESC
Progress View to see how much left to download an Image. It can be Circular or Apples Linear progress view. You can customize colors and other properties in data source.
DESC
s.homepage = "https://github.com/NikKovV/SDWebImage-CircularProgressView"
s.screenshots = 'https://raw.githubusercontent.com/NikKovIos/SDWebImage-CircularProgressView/master/Screenshots/NKVProgressView.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Nik Kov" => "[email protected]" }
s.source = {
:git => "https://github.com/NikKovV/SDWebImage-CircularProgressView.git",
:tag => s.version.to_s
}
s.ios.deployment_target = '8.0'
s.source_files = 'Classes/*.{h,m}'
s.requires_arc = true
s.frameworks = 'UIKit'
s.dependency 'SDWebImage', '> 3.7.0'
s.dependency 'DACircularProgress', '~> 2.3'
end