-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathKRKit.podspec
52 lines (41 loc) · 1.54 KB
/
KRKit.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
43
44
45
46
47
48
49
50
51
52
#
# Be sure to run `pod lib lint KRKit.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "KRKit"
s.version = "1.0"
s.summary = "A short description of KRKit."
s.description = <<-DESC
An optional longer description of KRKit
* Markdown format.
* Don't worry about the indent, we strip it!
DESC
s.homepage = "https://github.com/36Kr-Mobile/KRKit"
s.license = 'MIT'
s.author = { "aidenluo" => "[email protected]" }
s.source = { :git => "https://github.com/36Kr-Mobile/KRKit.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.ios.deployment_target = '7.0'
s.source_files = 'KRKit/KRKit/Source/KRKit.h'
s.public_header_files = 'KRKit/KRKit/Source/KRKit.h'
s.subspec 'Categories' do |ss|
ss.subspec 'Foundation' do |sss|
sss.source_files = 'KRKit/KRKit/Source/Categories/Foundation/*.{h,m}'
end
ss.subspec 'UIKit' do |sss|
sss.source_files = 'KRKit/KRKit/Source/Categories/UIKit/*.{h,m}'
end
end
s.subspec 'Macro' do |ss|
ss.source_files = 'KRKit/KRKit/Source/Macro/*.{h,m}'
end
s.subspec 'UI Component' do |ss|
ss.source_files = 'KRKit/KRKit/Source/UI Component/*.{h,m}'
end
end