-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHDHUD.podspec
27 lines (27 loc) · 874 Bytes
/
HDHUD.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
Pod::Spec.new do |s|
s.name = 'HDHUD'
s.swift_version = '5.0'
s.version = '2.1.2'
s.license= { :type => "MIT", :file => "LICENSE" }
s.summary = 'A simple and efficient HUD based on swift development'
s.homepage = 'https://github.com/DamonHu/HDHUD'
s.authors = { 'DamonHu' => '[email protected]' }
s.source = { :git => "https://github.com/DamonHu/HDHUD.git", :tag => s.version}
s.requires_arc = true
s.ios.deployment_target = '10.0'
s.subspec 'core' do |cs|
cs.resource_bundles = {
'HDHUD' => ['pod/Assets/*.png','pod/Assets/**/*.png', 'HDHUD/Pod/Assets/*.gif']
}
cs.source_files = "pod/Class/*.swift"
cs.dependency 'SnapKit'
cs.dependency 'ZXKitUtil'
end
# s.subspec 'gif' do |cs|
# cs.dependency 'HDHUD/core'
# cs.dependency 'Kingfisher'
# end
s.default_subspec = "core"
s.frameworks = 'UIKit'
s.documentation_url = 'https://github.com/DamonHu/HDHUD'
end