forked from NikKovIos/SDWebImage-CircularProgressView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSDWebImage-CircularProgressView.podspec
More file actions
22 lines (22 loc) · 1.12 KB
/
SDWebImage-CircularProgressView.podspec
File metadata and controls
22 lines (22 loc) · 1.12 KB
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.1"
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://github.com/NikKovIos/SDWebImage-CircularProgressView/blob/master/Screenshots/NKVProgressView.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Nik Kov" => "nikkovios@gmail.com" }
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