-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNXKit.podspec
26 lines (25 loc) · 1022 Bytes
/
NXKit.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
Pod::Spec.new do |s|
s.name = 'NXKit'
s.version = '1.4.2'
s.summary = 'UI framework'
s.description = <<-DESC
NXKit is a UI framework implemented by Swift language for building native apps more easily。
DESC
s.homepage = 'https://github.com/niegaotao/NXKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'niegaotao' => '[email protected]' }
s.source = { :git => 'https://github.com/niegaotao/NXKit.git', :tag => s.version.to_s }
s.platform = :ios, '13.0'
s.swift_version = '5.0'
s.frameworks = ['UIKit', 'Foundation']
s.subspec 'Foundation' do |ss|
ss.source_files = 'NXKit/Classes/Foundation/*'
ss.resource_bundles = {
'NXKit' => ['NXKit/Assets/*']
}
end
s.subspec 'Extensions' do |ss|
ss.source_files = 'NXKit/Classes/Extensions/*'
ss.dependency 'NXKit/Foundation'
end
end