forked from changsanjiang/SJUIKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSJUIKit-YYModel.podspec
More file actions
125 lines (101 loc) · 3.67 KB
/
SJUIKit-YYModel.podspec
File metadata and controls
125 lines (101 loc) · 3.67 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#
# Be sure to run `pod lib lint SJUIKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SJUIKit'
s.version = '0.0.0.59'
s.summary = 'SJUIKit.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
`Objective-C` UIKit
DESC
s.homepage = 'https://gitee.com/changsanjiang/SJUIKit'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'changsanjiang@gmail.com' => 'changsanjiang@gmail.com' }
s.source = { :git => 'https://gitee.com/changsanjiang/SJUIKit.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '8.0'
s.source_files = 'SJUIKit/*.{h,m}'
s.subspec 'AsyncLoad' do |ss|
ss.source_files = 'SJUIKit/AsyncLoad/*.{h,m}'
ss.dependency 'SJUIKit/CornerMask'
end
s.subspec 'Queues' do |ss|
ss.source_files = 'SJUIKit/Queues/*.{h,m}'
end
s.subspec 'Base' do |ss|
ss.source_files = 'SJUIKit/Base/*.{h,m}'
ss.dependency 'SJUIKit/ObserverHelper'
ss.subspec 'Core' do |sss|
sss.source_files = 'SJUIKit/Base/Core/*.{h,m}'
end
end
s.subspec 'ObserverHelper' do |ss|
ss.source_files = 'SJUIKit/ObserverHelper/*.{h,m}'
end
s.subspec 'AttributesFactory' do |ss|
ss.source_files = 'SJUIKit/AttributesFactory/*.{h,m}'
ss.subspec 'UIKitText' do |sss|
sss.source_files = 'SJUIKit/AttributesFactory/UIKitText/*.{h,m}'
end
ss.subspec 'Deprecated' do |sss|
sss.source_files = 'SJUIKit/AttributesFactory/Deprecated/*.{h,m}'
end
end
s.subspec 'Refresh' do |ss|
ss.source_files = 'SJUIKit/Refresh/*.{h,m}'
ss.dependency 'MJRefresh'
end
s.subspec 'Date' do |ss|
ss.source_files = 'SJUIKit/Date/*.{h,m}'
end
s.subspec 'UIMaker' do |ss|
ss.source_files = 'SJUIKit/UIMaker/*.{h,m}'
ss.subspec 'Core' do |sss|
sss.source_files = 'SJUIKit/UIMaker/Core/*.{h,m}'
end
end
s.subspec 'Thread' do |ss|
ss.source_files = 'SJUIKit/Thread/*.{h,m}'
end
s.subspec 'CornerMask' do |ss|
ss.source_files = 'SJUIKit/CornerMask/*.{h,m}'
ss.dependency 'SJUIKit/ObserverHelper'
end
s.subspec 'Other' do |ss|
ss.source_files = 'SJUIKit/Other/*.{h,m}'
ss.dependency 'SJUIKit/Date'
end
s.subspec 'Photo' do |ss|
ss.source_files = 'SJUIKit/Photo/*.{h,m}'
end
s.subspec 'SQLite3' do |ss|
ss.source_files = 'SJUIKit/SQLite3/*.{h,m}'
ss.subspec 'Protocol' do |sss|
sss.source_files = 'SJUIKit/SQLite3/Protocol/*.{h,m}'
end
ss.subspec 'Core' do |sss|
sss.source_files = 'SJUIKit/SQLite3/Core/*.{h,m}'
sss.dependency 'SJUIKit/SQLite3/Protocol'
end
ss.dependency 'YYModel'
end
s.subspec 'PageViewController' do |ss|
ss.source_files = 'SJUIKit/PageViewController/*.{h,m}'
ss.subspec 'Core' do |sss|
sss.source_files = 'SJUIKit/PageViewController/Core/*.{h,m}'
end
end
s.subspec 'PlaybackListController' do |ss|
ss.source_files = 'SJUIKit/PlaybackListController/*.{h,m}'
end
end