-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSwiftLiteKit.podspec
More file actions
67 lines (51 loc) · 2.01 KB
/
SwiftLiteKit.podspec
File metadata and controls
67 lines (51 loc) · 2.01 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
#
# Be sure to run `pod lib lint SwiftLiteKit.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SwiftLiteKit'
s.version = '1.0.0'
s.summary = 'Some extension for swift in my work.'
s.ios.deployment_target = '10.0'
s.swift_version = '5.0'
s.description = <<-DESC
Some extension for swift in my work...
DESC
s.homepage = 'https://github.com/moshiwu/SwiftLiteKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'moshiwu' => '183795044@qq.com' }
s.source = { :git => 'https://github.com/moshiwu/SwiftLiteKit.git', :tag => s.version.to_s }
s.default_subspecs = 'Core', 'CoreGraphics', 'Foundation', 'Protocol', 'UIKit', 'Swift'
s.frameworks = 'UIKit'
s.subspec 'Core' do |sp|
sp.source_files = 'SwiftLiteKit/Classes/Core/**/*.swift'
end
s.subspec 'CoreGraphics' do |sp|
sp.source_files = 'SwiftLiteKit/Classes/CoreGraphics/**/*.swift'
end
s.subspec 'Foundation' do |sp|
sp.source_files = 'SwiftLiteKit/Classes/Foundation/**/*.swift'
end
s.subspec 'UIKit' do |sp|
sp.source_files = 'SwiftLiteKit/Classes/UIKit/**/*.swift'
sp.dependency 'YYKit'
end
s.subspec 'Swift' do |sp|
sp.source_files = 'SwiftLiteKit/Classes/Swift/**/*.swift'
end
s.subspec 'Protocol' do |sp|
sp.source_files = 'SwiftLiteKit/Classes/Protocol/**/*.swift'
end
s.subspec 'Logger' do |sp|
sp.source_files = 'SwiftLiteKit/Classes/Logger/**/*.swift'
sp.dependency 'SwiftyBeaver'
end
s.subspec 'YYKit+Extension' do |sp|
sp.source_files = 'SwiftLiteKit/Classes/YYKit+Extension/**/*.swift'
sp.dependency 'SwiftLiteKit/Core'
sp.dependency 'YYKit'
end
end