-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLVMAlertHUD.podspec
More file actions
29 lines (24 loc) · 998 Bytes
/
LVMAlertHUD.podspec
File metadata and controls
29 lines (24 loc) · 998 Bytes
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 = "LVMAlertHUD"
s.version = "6"
s.summary = "仿系统API弹框"
s.homepage = "https://github.com/DouKing/LVMAlertHUD"
s.license = "MIT"
s.author = { "wuyikai" => "wyk8916@gmail.com" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/DouKing/LVMAlertHUD.git", :tag => "#{s.version}" }
s.source_files = 'LVMAlertHUD/Source/**/*.{h,m}'
s.resources = 'LVMAlertHUD/Source/**/*.png'
s.requires_arc = true
s.subspec 'AlertController' do |ss|
ss.source_files = 'LVMAlertHUD/Source/AlertController/**/*.{h,m}', 'LVMAlertHUD/Source/Helper/**/*.{h,m}', 'LVMAlertHUD/Source/LVMAlertHeader.h'
ss.dependency 'pop'
end
s.subspec 'StatusBarHUD' do |ss|
ss.source_files = 'LVMAlertHUD/Source/StatusBarHUD/**/*.{h,m}', 'LVMAlertHUD/Source/Resource/*'
end
s.subspec 'Toast' do |ss|
ss.source_files = 'LVMAlertHUD/Source/Toast/**/*.{h,m}'
ss.dependency 'pop'
end
end