-
Notifications
You must be signed in to change notification settings - Fork 47
/
ApplozicSwift.podspec
30 lines (25 loc) · 1.05 KB
/
ApplozicSwift.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
Pod::Spec.new do |s|
s.name = 'ApplozicSwift'
s.version = '3.0.0'
s.license = { :type => "BSD 3-Clause", :file => "LICENSE" }
s.summary = 'Applozic Swift Kit'
s.homepage = 'https://github.com/AppLozic/ApplozicSwift'
s.social_media_url = 'http://twitter.com/AppLozic'
s.authors = { 'Applozic Inc.' => '[email protected]' }
s.source = { :git => 'https://github.com/AppLozic/ApplozicSwift.git', :tag => s.version }
s.ios.deployment_target = '10.0'
s.swift_version = '4.2'
s.default_subspec = 'Complete'
s.subspec 'RichMessageKit' do |richMessage|
richMessage.source_files = 'RichMessageKit/**/*.swift'
richMessage.resources = 'RichMessageKit/**/*{xcassets}'
end
s.subspec 'Complete' do |complete|
complete.source_files = 'Sources/**/*.swift'
complete.resources = 'Sources/**/*{lproj,storyboard,xib,xcassets,json}'
complete.dependency 'Kingfisher', '~> 5.6.0'
complete.dependency 'MGSwipeTableCell', '~> 1.5.6'
complete.dependency 'Applozic', '~> 6.12.0'
complete.dependency 'ApplozicSwift/RichMessageKit'
end
end