-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIProgressIndicator-for-SDWebImage.podspec
More file actions
28 lines (24 loc) · 1.06 KB
/
UIProgressIndicator-for-SDWebImage.podspec
File metadata and controls
28 lines (24 loc) · 1.06 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
#
# Be sure to run `pod lib lint UIProgressIndicator-for-SDWebImage.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "UIProgressIndicator-for-SDWebImage"
s.version = "0.1.0"
s.summary = "The easiest way to add a DACCircularProgress to your SDWebImage"
s.homepage = "https://github.com/Bluezen/UIProgressIndicator-for-SDWebImage"
s.license = 'MIT'
s.author = { "Adrien Long" => "adrien@long.pm" }
s.source = { :git => "https://github.com/Bluezen/UIProgressIndicator-for-SDWebImage.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'UIProgressIndicator-for-SDWebImage'
s.resource_bundles = {
'UIProgressIndicator-for-SDWebImage' => ['Pod/Assets/*.png']
}
# s.frameworks = 'QuartzCore'
s.dependency 'DACircularProgress', '~> 2.0'
s.dependency 'SDWebImage', '~> 3.7.1'
end