-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathEmptyPage.podspec
35 lines (27 loc) · 1.03 KB
/
EmptyPage.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
Pod::Spec.new do |s|
s.name = 'EmptyPage'
s.version = '4.1.0'
s.summary = 'iOS - 轻量级空白页占位图框架...'
s.homepage = 'https://github.com/linhay/EmptyPage'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'linhay' => 'is.linhay@outlook.com' }
s.source = { :git => 'https://github.com/linhay/EmptyPage.git', :tag => s.version.to_s }
s.swift_versions = ['5.3']
s.ios.deployment_target = '9.0'
s.requires_arc = true
s.subspec 'core' do |sp|
sp.source_files = ['Sources/core/*.{h,swift}', 'Sources/core/**/*.{h,swift}']
end
s.subspec 'managers' do |sp|
sp.dependency 'EmptyPage/core'
sp.source_files = [
'Sources/managers/*.{h,swift}',
'Sources/managers/**/**/*.{h,swift}',
'Sources/managers/**/*.{h,swift}'
]
end
s.subspec 'templates' do |sp|
sp.dependency 'EmptyPage/core'
sp.source_files = 'Sources/standard/*.{swift}'
end
end