-
Notifications
You must be signed in to change notification settings - Fork 14
/
CDChatList.podspec
29 lines (23 loc) · 963 Bytes
/
CDChatList.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
Pod::Spec.new do |s|
s.name = 'CDChatList'
s.version = '0.1.1'
s.summary = 'Awesome chatlist component for iOS.'
s.homepage = 'https://github.com/chdo002/CDChatList'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'chdo002' => '[email protected]' }
s.source = { :git => 'https://github.com/chdo002/CDChatList.git', :tag => s.version.to_s }
s.ios.deployment_target = '7.0'
s.source_files = 'CDChatList/Classes/**/**/*.{h,m}'
s.subspec 'CDLabel' do |label|
label.source_files = 'CDChatList/Classes/CDLabel/**/*.{h,m}'
end
s.subspec 'CDChatInputBox' do |input|
input.source_files = 'CDChatList/Classes/CDChatInputBox/**/*.{h,m}'
end
# s.resource_bundles = {
# 'CDChatList' => ['CDChatList/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
s.dependency 'SDWebImage', '4.2.3'
end