-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSwiftUIKit_pro.podspec
48 lines (26 loc) · 2.69 KB
/
SwiftUIKit_pro.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
Pod::Spec.new do |spec|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.name = "SwiftUIKit_pro"
spec.version = "1.1.0"
spec.summary = "SwiftUIKit combines the element of UIKit with declarative style from SwiftUI. `_pro` surface avoid conflic module name in CocoaPods."
spec.homepage = "https://github.com/sonla58/SwiftUIKit"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.author = { "son.le" => "anhsonleit@gmail.com" }
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.platform = :ios, "11.0"
spec.swift_version = '5.3'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source = { :git => "https://github.com/sonla58/SwiftUIKit.git", :tag => "#{spec.version}" }
# spec.source = { :git => "https://github.com/sonla58/SwiftUIKit.git", :branch => "master" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source_files = "SwiftUIKit/**/*.{swift}"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.framework = "UIKit"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# ――― Subspec ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.subspec 'Core' do |sub|
sub.source_files = "SwiftUIKit/Core/**/*.{swift}"
end
end