-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExtSwift.podspec
118 lines (94 loc) · 5.25 KB
/
ExtSwift.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
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
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "ExtSwift"
s.version = "1.0.0"
s.summary = "Extensions for Swift"
# s.description = "Extensions for Swift."
s.homepage = "https://github.com/iwill/ExtSwift"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
s.author = { "Mr. Míng" => "[email protected]" }
s.social_media_url = "https://iwill.im/about/"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = "9.0"
s.tvos.deployment_target = "13.0"
s.osx.deployment_target = "10.11"
s.watchos.deployment_target = "2.0"
s.swift_version = "5.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/iwill/ExtSwift.git", :tag => s.version.to_s }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.source_files = "Sources", "Sources/**/*.{swift}"
# s.exclude_files = "Sources/Exclude"
# s.public_header_files = "Sources/**/*.h"
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.resource = "icon.png"
# s.resources = "Resources/*.png"
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.framework = "Foundation"
# s.frameworks = "Foundation", "UIKit", "WebKit", "CoreGraphics"
# s.library = "iconv"
# s.libraries = "iconv", "xml2"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# s.dependency "ExCodable", "~> 0.2.0"
# ――― Subspecs ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.default_subspecs = ["ExtSwift"]
s.subspec "ExtSwift" do |ss|
ss.source_files = "Sources/**/ExtSwift.swift"
ss.dependency "ExtSwift/boolValue"
ss.dependency "ExtSwift/KVO"
ss.dependency "ExtSwift/Mutable"
ss.dependency "ExtSwift/NameSpace"
ss.dependency "ExtSwift/Operators"
ss.dependency "ExtSwift/SemanticVersion"
ss.dependency "ExtSwift/String+IntIndex"
ss.dependency "ExtSwift/tryIndex"
ss.dependency "ExtSwift/Types"
ss.dependency "ExtSwift/WeakArray"
ss.dependency "ExtSwift/UIKit"
end
s.subspec "boolValue" do |ss|
ss.source_files = "Sources/ExtSwift/**/boolValue.swift"
end
s.subspec "KVO" do |ss|
ss.source_files = "Sources/ExtSwift/**/KVO.swift"
ss.dependency "ExtSwift/WeakArray"
end
s.subspec "Mutable" do |ss|
ss.source_files = "Sources/ExtSwift/**/Mutable.swift"
end
s.subspec "NameSpace" do |ss|
ss.source_files = "Sources/ExtSwift/**/NameSpace.swift"
end
s.subspec "Operators" do |ss|
ss.source_files = "Sources/ExtSwift/**/Operators.swift"
ss.dependency "ExtSwift/boolValue"
end
s.subspec "SemanticVersion" do |ss|
ss.source_files = "Sources/ExtSwift/**/SemanticVersion.swift"
end
s.subspec "String+IntIndex" do |ss|
ss.source_files = "Sources/ExtSwift/**/String+IntIndex.swift"
end
s.subspec "tryIndex" do |ss|
ss.source_files = "Sources/ExtSwift/**/tryIndex.swift"
end
s.subspec "Types" do |ss|
ss.source_files = "Sources/ExtSwift/**/Types.swift"
end
s.subspec "UIKit" do |ss|
ss.source_files = "Sources/ExtSwift/UIKit/**/*.swift"
ss.dependency "ExtSwift/Mutable"
ss.dependency "ExtSwift/NameSpace"
ss.dependency "ExtSwift/tryIndex"
end
s.subspec "WeakArray" do |ss|
ss.source_files = "Sources/ExtSwift/**/WeakArray.swift"
end
s.subspec "_All" do |ss|
ss.source_files = "Sources/ExtSwift/unstable/*.swift"
ss.dependency "ExtSwift/ExtSwift"
end
end