-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLXTool.podspec
42 lines (32 loc) · 941 Bytes
/
LXTool.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
35
36
37
38
39
40
41
42
Pod::Spec.new do |s|
s.name = 'LXTool'
s.version = '0.0.5'
s.license = 'MIT'
s.summary = 'Here are some useful methods!'
s.homepage = 'https://github.com/LX314/LXTool'
s.author = { 'Lucky' => '[email protected]' }
s.source = { :git => 'https://github.com/LX314/LXTool.git', :tag => s.version.to_s }
s.platform = :ios ,'4.3'
s.requires_arc = true
s.public_header_files = 'LXTool.h'
s.source_files = 'LXTool.h'
s.framework = 'UIKit','Foundation'
s.subspec 'Base' do |ss|
ss.source_files = 'LXTool/Base/*'
ss.dependency 'LXTool/Macro'
ss.dependency 'LXTool/Colours'
end
s.subspec 'Colours' do |ss|
ss.source_files = 'LXTool/Colours/*'
end
s.subspec 'Macro' do |ss|
ss.source_files = 'LXTool/Macro.h'
end
s.subspec 'Category' do |ss|
ss.source_files = 'LXTool/Category/*'
end
s.subspec 'Description' do |ss|
ss.source_files = 'LXTool/Category/Description/*'
# ss.ios.frameworks = 'MobileCoreServices', 'CoreGraphics'
end
end