-
Notifications
You must be signed in to change notification settings - Fork 11
/
CDDGroupAvatar.podspec
41 lines (27 loc) · 1.18 KB
/
CDDGroupAvatar.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Pod::Spec.new do |s|
s.name = 'CDDGroupAvatar'
s.version = '1.5.6'
s.summary = 'iOS 群头像 / Easy to use'
s.description = <<-DESC
iOS 群头像功能,像加载一张图片那么简单。
DESC
s.homepage = 'https://github.com/RocketsChen/CDDGroupAvatar'
s.license = 'MIT' #开源协议
s.authors = {'RcoketsChen' => '1062749739@qq.com'}
s.platform = :ios, '9.0'
s.source = {:git => 'https://github.com/RocketsChen/CDDGroupAvatar.git', :tag => '1.5.6'}
s.requires_arc = true
s.frameworks = 'UIKit'
s.default_subspec = 'Cache'
s.subspec 'NoCache' do |ss|
ss.source_files = 'CDDGroupAvatar' , 'CDDGroupAvatar/AvatarConfig/*' , 'CDDGroupAvatar/NoCacheGroupAvatar/*'
end
s.subspec 'Cache' do |ss|
ss.source_files = 'CDDGroupAvatar' , 'CDDGroupAvatar/AvatarConfig/*' , 'CDDGroupAvatar/CacheGroupAvatar/*'
s.dependency 'SDWebImage'
end
s.subspec 'Core' do |ss|
ss.source_files = 'CDDGroupAvatar' , 'CDDGroupAvatar/AvatarConfig/*' , 'CDDGroupAvatar/NoCacheGroupAvatar/*' , 'CDDGroupAvatar/CacheGroupAvatar/*'
s.dependency 'SDWebImage'
end
end