-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLYToolsKit.podspec
33 lines (25 loc) · 1.03 KB
/
LYToolsKit.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
Pod::Spec.new do |s|
s.name = 'LYToolsKit'
s.version = '1.1.0'
s.summary = 'LYToolsKit is Foundation|UI|Utility SDK.'
s.homepage = 'https://github.com/yyly/LYToolsKit'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'yyly' => 'mingyuegucheng@icloud.com' }
s.source = { :git => 'https://github.com/yyly/LYToolsKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'LYToolsKit/LYToolsKit.h'
s.subspec 'Foundation' do |f|
f.source_files = 'LYToolsKit/Foundation/**/*.{h,m}'
# f.xcconfig = {'OTHER_LDFLAGS' => '-ObjC'}
end
s.subspec 'UI' do |u|
u.source_files = 'LYToolsKit/UI/**/*.{h,m}'
end
s.subspec 'Utility' do |ut|
ut.source_files = 'LYToolsKit/Utility/**/*.{h,m}'
end
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end