slather 2.6.0 → 2.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +2 -0
- data/CHANGELOG.md +53 -0
- data/assets/slather.css +2 -1
- data/lib/slather/coverage_service/coveralls.rb +56 -1
- data/lib/slather/coverage_service/html_output.rb +51 -2
- data/lib/slather/profdata_coverage_file.rb +42 -2
- data/lib/slather/project.rb +36 -4
- data/lib/slather/version.rb +1 -1
- data/slather.gemspec +2 -2
- data/spec/fixtures/FixtureFramework/FixtureFramework.h +19 -0
- data/spec/fixtures/FixtureFramework/FlashExperiment.swift +7 -0
- data/spec/fixtures/FixtureFramework/Info.plist +24 -0
- data/spec/fixtures/FixtureFrameworkTests/FixtureFrameworkTests.swift +34 -0
- data/spec/fixtures/FixtureFrameworkTests/FlashExperimentTests.swift +9 -0
- data/spec/fixtures/FixtureFrameworkTests/Info.plist +22 -0
- data/spec/fixtures/cobertura.xml +157 -37
- data/spec/fixtures/fixtures.xcodeproj/project.pbxproj +222 -0
- data/spec/fixtures/fixtures.xcodeproj/xcshareddata/xcschemes/fixtures.xcscheme +21 -5
- data/spec/fixtures/fixtures.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- data/spec/slather/coverage_service/html_output_spec.rb +2 -2
- data/spec/slather/profdata_coverage_spec.rb +16 -0
- data/spec/slather/project_spec.rb +10 -6
- metadata +20 -6
data/spec/fixtures/cobertura.xml
CHANGED
@@ -1,58 +1,134 @@
|
|
1
1
|
<?xml version="1.0"?>
|
2
2
|
<!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd">
|
3
|
-
<coverage line-rate="0.7500000000000000" branch-rate="
|
3
|
+
<coverage line-rate="0.7500000000000000" branch-rate="0.6410256410256411" lines-covered="60" lines-valid="80" branches-covered="25" branches-valid="39" complexity="0.0" timestamp="1614041230" version="Slather 2.6.1">
|
4
4
|
<sources>
|
5
|
-
<source>/Users/
|
5
|
+
<source>/Users/hborawski/sandbox/slather</source>
|
6
6
|
</sources>
|
7
7
|
<packages>
|
8
|
-
<package name="spec.fixtures.fixtures" line-rate="0.5000000000000000" branch-rate="
|
8
|
+
<package name="spec.fixtures.fixtures" line-rate="0.5000000000000000" branch-rate="0.5000000000000000" complexity="0.0">
|
9
9
|
<classes>
|
10
|
-
<class name="fixtures.m" filename="spec/fixtures/fixtures/fixtures.m" line-rate="0.5000000000000000" branch-rate="
|
10
|
+
<class name="fixtures.m" filename="spec/fixtures/fixtures/fixtures.m" line-rate="0.5000000000000000" branch-rate="0.5000000000000000" complexity="0.0">
|
11
11
|
<methods/>
|
12
12
|
<lines>
|
13
|
-
<line number="14" branch="
|
13
|
+
<line number="14" branch="true" hits="1" condition-coverage="100% (1/1)">
|
14
|
+
<conditions>
|
15
|
+
<condition number="0" type="jump" coverage="100%"/>
|
16
|
+
</conditions>
|
17
|
+
</line>
|
14
18
|
<line number="15" branch="false" hits="1"/>
|
15
19
|
<line number="16" branch="false" hits="1"/>
|
16
|
-
<line number="19" branch="
|
20
|
+
<line number="19" branch="true" hits="0" condition-coverage="0% (0/1)">
|
21
|
+
<conditions>
|
22
|
+
<condition number="0" type="jump" coverage="0%"/>
|
23
|
+
</conditions>
|
24
|
+
</line>
|
17
25
|
<line number="20" branch="false" hits="0"/>
|
18
26
|
<line number="21" branch="false" hits="0"/>
|
19
27
|
</lines>
|
20
28
|
</class>
|
21
29
|
</classes>
|
22
30
|
</package>
|
23
|
-
<package name="spec.fixtures.fixtures.more_files" line-rate="0.4333333333333333" branch-rate="
|
31
|
+
<package name="spec.fixtures.fixtures.more_files" line-rate="0.4333333333333333" branch-rate="0.5000000000000000" complexity="0.0">
|
24
32
|
<classes>
|
25
|
-
<class name="Branches.m" filename="spec/fixtures/fixtures/more_files/Branches.m" line-rate="0.4333333333333333" branch-rate="
|
33
|
+
<class name="Branches.m" filename="spec/fixtures/fixtures/more_files/Branches.m" line-rate="0.4333333333333333" branch-rate="0.5000000000000000" complexity="0.0">
|
26
34
|
<methods/>
|
27
35
|
<lines>
|
28
|
-
<line number="14" branch="
|
29
|
-
|
36
|
+
<line number="14" branch="true" hits="2" condition-coverage="100% (1/1)">
|
37
|
+
<conditions>
|
38
|
+
<condition number="0" type="jump" coverage="100%"/>
|
39
|
+
</conditions>
|
40
|
+
</line>
|
41
|
+
<line number="15" branch="true" hits="2" condition-coverage="100% (4/4)">
|
42
|
+
<conditions>
|
43
|
+
<condition number="0" type="jump" coverage="100%"/>
|
44
|
+
</conditions>
|
45
|
+
</line>
|
30
46
|
<line number="16" branch="false" hits="1"/>
|
31
47
|
<line number="17" branch="false" hits="1"/>
|
32
|
-
<line number="18" branch="
|
48
|
+
<line number="18" branch="true" hits="1" condition-coverage="50% (2/4)">
|
49
|
+
<conditions>
|
50
|
+
<condition number="0" type="jump" coverage="50%"/>
|
51
|
+
</conditions>
|
52
|
+
</line>
|
33
53
|
<line number="19" branch="false" hits="0"/>
|
34
|
-
<line number="20" branch="
|
35
|
-
|
54
|
+
<line number="20" branch="true" hits="0" condition-coverage="100% (1/1)">
|
55
|
+
<conditions>
|
56
|
+
<condition number="0" type="jump" coverage="100%"/>
|
57
|
+
</conditions>
|
58
|
+
</line>
|
59
|
+
<line number="21" branch="true" hits="1" condition-coverage="100% (1/1)">
|
60
|
+
<conditions>
|
61
|
+
<condition number="0" type="jump" coverage="100%"/>
|
62
|
+
</conditions>
|
63
|
+
</line>
|
36
64
|
<line number="22" branch="false" hits="1"/>
|
37
|
-
<line number="23" branch="
|
65
|
+
<line number="23" branch="true" hits="1" condition-coverage="100% (1/1)">
|
66
|
+
<conditions>
|
67
|
+
<condition number="0" type="jump" coverage="100%"/>
|
68
|
+
</conditions>
|
69
|
+
</line>
|
38
70
|
<line number="24" branch="false" hits="2"/>
|
39
71
|
<line number="25" branch="false" hits="2"/>
|
40
|
-
<line number="26" branch="
|
72
|
+
<line number="26" branch="true" hits="2" condition-coverage="100% (3/3)">
|
73
|
+
<conditions>
|
74
|
+
<condition number="0" type="jump" coverage="100%"/>
|
75
|
+
</conditions>
|
76
|
+
</line>
|
41
77
|
<line number="27" branch="false" hits="2"/>
|
42
|
-
<line number="28" branch="
|
43
|
-
|
44
|
-
|
78
|
+
<line number="28" branch="true" hits="2" condition-coverage="0% (0/1)">
|
79
|
+
<conditions>
|
80
|
+
<condition number="0" type="jump" coverage="0%"/>
|
81
|
+
</conditions>
|
82
|
+
</line>
|
83
|
+
<line number="29" branch="true" hits="0" condition-coverage="0% (0/2)">
|
84
|
+
<conditions>
|
85
|
+
<condition number="0" type="jump" coverage="0%"/>
|
86
|
+
</conditions>
|
87
|
+
</line>
|
88
|
+
<line number="30" branch="true" hits="0" condition-coverage="0% (0/1)">
|
89
|
+
<conditions>
|
90
|
+
<condition number="0" type="jump" coverage="0%"/>
|
91
|
+
</conditions>
|
92
|
+
</line>
|
45
93
|
<line number="31" branch="false" hits="0"/>
|
46
|
-
<line number="32" branch="
|
94
|
+
<line number="32" branch="true" hits="0" condition-coverage="0% (0/1)">
|
95
|
+
<conditions>
|
96
|
+
<condition number="0" type="jump" coverage="0%"/>
|
97
|
+
</conditions>
|
98
|
+
</line>
|
47
99
|
<line number="33" branch="false" hits="0"/>
|
48
|
-
<line number="34" branch="
|
100
|
+
<line number="34" branch="true" hits="0" condition-coverage="0% (0/1)">
|
101
|
+
<conditions>
|
102
|
+
<condition number="0" type="jump" coverage="0%"/>
|
103
|
+
</conditions>
|
104
|
+
</line>
|
49
105
|
<line number="35" branch="false" hits="0"/>
|
50
|
-
<line number="36" branch="
|
51
|
-
|
106
|
+
<line number="36" branch="true" hits="0" condition-coverage="0% (0/1)">
|
107
|
+
<conditions>
|
108
|
+
<condition number="0" type="jump" coverage="0%"/>
|
109
|
+
</conditions>
|
110
|
+
</line>
|
111
|
+
<line number="37" branch="true" hits="0" condition-coverage="0% (0/1)">
|
112
|
+
<conditions>
|
113
|
+
<condition number="0" type="jump" coverage="0%"/>
|
114
|
+
</conditions>
|
115
|
+
</line>
|
52
116
|
<line number="38" branch="false" hits="0"/>
|
53
|
-
<line number="39" branch="
|
54
|
-
|
55
|
-
|
117
|
+
<line number="39" branch="true" hits="0" condition-coverage="0% (0/1)">
|
118
|
+
<conditions>
|
119
|
+
<condition number="0" type="jump" coverage="0%"/>
|
120
|
+
</conditions>
|
121
|
+
</line>
|
122
|
+
<line number="40" branch="true" hits="0" condition-coverage="0% (0/1)">
|
123
|
+
<conditions>
|
124
|
+
<condition number="0" type="jump" coverage="0%"/>
|
125
|
+
</conditions>
|
126
|
+
</line>
|
127
|
+
<line number="41" branch="true" hits="0" condition-coverage="0% (0/1)">
|
128
|
+
<conditions>
|
129
|
+
<condition number="0" type="jump" coverage="0%"/>
|
130
|
+
</conditions>
|
131
|
+
</line>
|
56
132
|
<line number="42" branch="false" hits="0"/>
|
57
133
|
<line number="43" branch="false" hits="0"/>
|
58
134
|
</lines>
|
@@ -64,19 +140,35 @@
|
|
64
140
|
<class name="BranchesTests.m" filename="spec/fixtures/fixturesTests/BranchesTests.m" line-rate="1.0000000000000000" branch-rate="1.0000000000000000" complexity="0.0">
|
65
141
|
<methods/>
|
66
142
|
<lines>
|
67
|
-
<line number="18" branch="
|
143
|
+
<line number="18" branch="true" hits="2" condition-coverage="100% (1/1)">
|
144
|
+
<conditions>
|
145
|
+
<condition number="0" type="jump" coverage="100%"/>
|
146
|
+
</conditions>
|
147
|
+
</line>
|
68
148
|
<line number="19" branch="false" hits="2"/>
|
69
149
|
<line number="20" branch="false" hits="2"/>
|
70
150
|
<line number="21" branch="false" hits="2"/>
|
71
|
-
<line number="23" branch="
|
151
|
+
<line number="23" branch="true" hits="2" condition-coverage="100% (1/1)">
|
152
|
+
<conditions>
|
153
|
+
<condition number="0" type="jump" coverage="100%"/>
|
154
|
+
</conditions>
|
155
|
+
</line>
|
72
156
|
<line number="24" branch="false" hits="2"/>
|
73
157
|
<line number="25" branch="false" hits="2"/>
|
74
158
|
<line number="26" branch="false" hits="2"/>
|
75
|
-
<line number="28" branch="
|
159
|
+
<line number="28" branch="true" hits="1" condition-coverage="100% (1/1)">
|
160
|
+
<conditions>
|
161
|
+
<condition number="0" type="jump" coverage="100%"/>
|
162
|
+
</conditions>
|
163
|
+
</line>
|
76
164
|
<line number="29" branch="false" hits="1"/>
|
77
165
|
<line number="30" branch="false" hits="1"/>
|
78
166
|
<line number="31" branch="false" hits="1"/>
|
79
|
-
<line number="33" branch="
|
167
|
+
<line number="33" branch="true" hits="1" condition-coverage="100% (1/1)">
|
168
|
+
<conditions>
|
169
|
+
<condition number="0" type="jump" coverage="100%"/>
|
170
|
+
</conditions>
|
171
|
+
</line>
|
80
172
|
<line number="34" branch="false" hits="1"/>
|
81
173
|
<line number="35" branch="false" hits="1"/>
|
82
174
|
<line number="36" branch="false" hits="1"/>
|
@@ -85,37 +177,65 @@
|
|
85
177
|
<class name="fixturesTests.m" filename="spec/fixtures/fixturesTests/fixturesTests.m" line-rate="1.0000000000000000" branch-rate="1.0000000000000000" complexity="0.0">
|
86
178
|
<methods/>
|
87
179
|
<lines>
|
88
|
-
<line number="20" branch="
|
180
|
+
<line number="20" branch="true" hits="2" condition-coverage="100% (1/1)">
|
181
|
+
<conditions>
|
182
|
+
<condition number="0" type="jump" coverage="100%"/>
|
183
|
+
</conditions>
|
184
|
+
</line>
|
89
185
|
<line number="21" branch="false" hits="2"/>
|
90
186
|
<line number="22" branch="false" hits="2"/>
|
91
187
|
<line number="23" branch="false" hits="2"/>
|
92
|
-
<line number="26" branch="
|
188
|
+
<line number="26" branch="true" hits="2" condition-coverage="100% (1/1)">
|
189
|
+
<conditions>
|
190
|
+
<condition number="0" type="jump" coverage="100%"/>
|
191
|
+
</conditions>
|
192
|
+
</line>
|
93
193
|
<line number="27" branch="false" hits="2"/>
|
94
194
|
<line number="28" branch="false" hits="2"/>
|
95
195
|
<line number="29" branch="false" hits="2"/>
|
96
|
-
<line number="32" branch="
|
196
|
+
<line number="32" branch="true" hits="1" condition-coverage="100% (1/1)">
|
197
|
+
<conditions>
|
198
|
+
<condition number="0" type="jump" coverage="100%"/>
|
199
|
+
</conditions>
|
200
|
+
</line>
|
97
201
|
<line number="33" branch="false" hits="1"/>
|
98
202
|
<line number="34" branch="false" hits="1"/>
|
99
203
|
<line number="35" branch="false" hits="1"/>
|
100
|
-
<line number="38" branch="
|
204
|
+
<line number="38" branch="true" hits="1" condition-coverage="100% (1/1)">
|
205
|
+
<conditions>
|
206
|
+
<condition number="0" type="jump" coverage="100%"/>
|
207
|
+
</conditions>
|
208
|
+
</line>
|
101
209
|
<line number="39" branch="false" hits="1"/>
|
102
210
|
<line number="40" branch="false" hits="1"/>
|
103
211
|
<line number="41" branch="false" hits="1"/>
|
104
212
|
<line number="42" branch="false" hits="1"/>
|
105
213
|
</lines>
|
106
214
|
</class>
|
107
|
-
<class name="peekaviewTests
|
215
|
+
<class name="peekaviewTests💣.m" filename="spec/fixtures/fixturesTests/peekaviewTests💣.m" line-rate="1.0000000000000000" branch-rate="1.0000000000000000" complexity="0.0">
|
108
216
|
<methods/>
|
109
217
|
<lines>
|
110
|
-
<line number="18" branch="
|
218
|
+
<line number="18" branch="true" hits="1" condition-coverage="100% (1/1)">
|
219
|
+
<conditions>
|
220
|
+
<condition number="0" type="jump" coverage="100%"/>
|
221
|
+
</conditions>
|
222
|
+
</line>
|
111
223
|
<line number="19" branch="false" hits="1"/>
|
112
224
|
<line number="20" branch="false" hits="1"/>
|
113
225
|
<line number="21" branch="false" hits="1"/>
|
114
|
-
<line number="24" branch="
|
226
|
+
<line number="24" branch="true" hits="1" condition-coverage="100% (1/1)">
|
227
|
+
<conditions>
|
228
|
+
<condition number="0" type="jump" coverage="100%"/>
|
229
|
+
</conditions>
|
230
|
+
</line>
|
115
231
|
<line number="25" branch="false" hits="1"/>
|
116
232
|
<line number="26" branch="false" hits="1"/>
|
117
233
|
<line number="27" branch="false" hits="1"/>
|
118
|
-
<line number="30" branch="
|
234
|
+
<line number="30" branch="true" hits="1" condition-coverage="100% (1/1)">
|
235
|
+
<conditions>
|
236
|
+
<condition number="0" type="jump" coverage="100%"/>
|
237
|
+
</conditions>
|
238
|
+
</line>
|
119
239
|
<line number="31" branch="false" hits="1"/>
|
120
240
|
<line number="32" branch="false" hits="1"/>
|
121
241
|
</lines>
|
@@ -35,6 +35,8 @@
|
|
35
35
|
8C9A2046195965F10013B6B3 /* libfixtures.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C9A202D195965F10013B6B3 /* libfixtures.a */; };
|
36
36
|
8C9A204C195965F10013B6B3 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8C9A204A195965F10013B6B3 /* InfoPlist.strings */; };
|
37
37
|
8C9A204E195965F10013B6B3 /* fixturesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C9A204D195965F10013B6B3 /* fixturesTests.m */; };
|
38
|
+
B1E6981225F96B680086A3E2 /* FixtureFramework.h in Headers */ = {isa = PBXBuildFile; fileRef = B1E6980425F96B670086A3E2 /* FixtureFramework.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
39
|
+
B1E6982025F96B930086A3E2 /* FlashExperiment.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1E6981F25F96B930086A3E2 /* FlashExperiment.swift */; };
|
38
40
|
/* End PBXBuildFile section */
|
39
41
|
|
40
42
|
/* Begin PBXContainerItemProxy section */
|
@@ -52,6 +54,20 @@
|
|
52
54
|
remoteGlobalIDString = 8C9A202C195965F10013B6B3;
|
53
55
|
remoteInfo = fixtures;
|
54
56
|
};
|
57
|
+
B1E6982F25F96F490086A3E2 /* PBXContainerItemProxy */ = {
|
58
|
+
isa = PBXContainerItemProxy;
|
59
|
+
containerPortal = 8C9A2025195965F00013B6B3 /* Project object */;
|
60
|
+
proxyType = 1;
|
61
|
+
remoteGlobalIDString = B1E6980125F96B670086A3E2;
|
62
|
+
remoteInfo = FixtureFramework;
|
63
|
+
};
|
64
|
+
B1E6983725F970320086A3E2 /* PBXContainerItemProxy */ = {
|
65
|
+
isa = PBXContainerItemProxy;
|
66
|
+
containerPortal = 8C9A2025195965F00013B6B3 /* Project object */;
|
67
|
+
proxyType = 1;
|
68
|
+
remoteGlobalIDString = B1E6980125F96B670086A3E2;
|
69
|
+
remoteInfo = FixtureFramework;
|
70
|
+
};
|
55
71
|
/* End PBXContainerItemProxy section */
|
56
72
|
|
57
73
|
/* Begin PBXFileReference section */
|
@@ -86,6 +102,13 @@
|
|
86
102
|
8C9A2049195965F10013B6B3 /* fixturesTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "fixturesTests-Info.plist"; sourceTree = "<group>"; };
|
87
103
|
8C9A204B195965F10013B6B3 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
88
104
|
8C9A204D195965F10013B6B3 /* fixturesTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = fixturesTests.m; sourceTree = "<group>"; };
|
105
|
+
B1E6980225F96B670086A3E2 /* FixtureFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FixtureFramework.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
106
|
+
B1E6980425F96B670086A3E2 /* FixtureFramework.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FixtureFramework.h; sourceTree = "<group>"; };
|
107
|
+
B1E6980525F96B670086A3E2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
108
|
+
B1E6980F25F96B680086A3E2 /* FixtureFrameworkTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FixtureFrameworkTests.swift; sourceTree = "<group>"; };
|
109
|
+
B1E6981125F96B680086A3E2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
110
|
+
B1E6981F25F96B930086A3E2 /* FlashExperiment.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FlashExperiment.swift; sourceTree = "<group>"; };
|
111
|
+
B1E6982725F96BD30086A3E2 /* FlashExperimentTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FlashExperimentTests.swift; sourceTree = "<group>"; };
|
89
112
|
/* End PBXFileReference section */
|
90
113
|
|
91
114
|
/* Begin PBXFrameworksBuildPhase section */
|
@@ -124,6 +147,13 @@
|
|
124
147
|
);
|
125
148
|
runOnlyForDeploymentPostprocessing = 0;
|
126
149
|
};
|
150
|
+
B1E697FF25F96B670086A3E2 /* Frameworks */ = {
|
151
|
+
isa = PBXFrameworksBuildPhase;
|
152
|
+
buildActionMask = 2147483647;
|
153
|
+
files = (
|
154
|
+
);
|
155
|
+
runOnlyForDeploymentPostprocessing = 0;
|
156
|
+
};
|
127
157
|
/* End PBXFrameworksBuildPhase section */
|
128
158
|
|
129
159
|
/* Begin PBXGroup section */
|
@@ -155,6 +185,8 @@
|
|
155
185
|
8C9A2036195965F10013B6B3 /* fixtures */,
|
156
186
|
3773307A1CC42A58005EAF65 /* fixturesTwo */,
|
157
187
|
8C9A2047195965F10013B6B3 /* fixturesTests */,
|
188
|
+
B1E6980325F96B670086A3E2 /* FixtureFramework */,
|
189
|
+
B1E6980E25F96B670086A3E2 /* FixtureFrameworkTests */,
|
158
190
|
8C9A202F195965F10013B6B3 /* Frameworks */,
|
159
191
|
8C9A202E195965F10013B6B3 /* Products */,
|
160
192
|
);
|
@@ -167,6 +199,7 @@
|
|
167
199
|
8C9A2040195965F10013B6B3 /* fixturesTests.xctest */,
|
168
200
|
377330791CC42A58005EAF65 /* libfixturesTwo.dylib */,
|
169
201
|
85AE690C1E45F0F900DA2D47 /* fixturesTestsSecond.xctest */,
|
202
|
+
B1E6980225F96B670086A3E2 /* FixtureFramework.framework */,
|
170
203
|
);
|
171
204
|
name = Products;
|
172
205
|
sourceTree = "<group>";
|
@@ -236,6 +269,26 @@
|
|
236
269
|
path = "Supporting Files";
|
237
270
|
sourceTree = "<group>";
|
238
271
|
};
|
272
|
+
B1E6980325F96B670086A3E2 /* FixtureFramework */ = {
|
273
|
+
isa = PBXGroup;
|
274
|
+
children = (
|
275
|
+
B1E6980425F96B670086A3E2 /* FixtureFramework.h */,
|
276
|
+
B1E6980525F96B670086A3E2 /* Info.plist */,
|
277
|
+
B1E6981F25F96B930086A3E2 /* FlashExperiment.swift */,
|
278
|
+
);
|
279
|
+
path = FixtureFramework;
|
280
|
+
sourceTree = "<group>";
|
281
|
+
};
|
282
|
+
B1E6980E25F96B670086A3E2 /* FixtureFrameworkTests */ = {
|
283
|
+
isa = PBXGroup;
|
284
|
+
children = (
|
285
|
+
B1E6980F25F96B680086A3E2 /* FixtureFrameworkTests.swift */,
|
286
|
+
B1E6981125F96B680086A3E2 /* Info.plist */,
|
287
|
+
B1E6982725F96BD30086A3E2 /* FlashExperimentTests.swift */,
|
288
|
+
);
|
289
|
+
path = FixtureFrameworkTests;
|
290
|
+
sourceTree = "<group>";
|
291
|
+
};
|
239
292
|
/* End PBXGroup section */
|
240
293
|
|
241
294
|
/* Begin PBXHeadersBuildPhase section */
|
@@ -260,6 +313,14 @@
|
|
260
313
|
);
|
261
314
|
runOnlyForDeploymentPostprocessing = 0;
|
262
315
|
};
|
316
|
+
B1E697FD25F96B670086A3E2 /* Headers */ = {
|
317
|
+
isa = PBXHeadersBuildPhase;
|
318
|
+
buildActionMask = 2147483647;
|
319
|
+
files = (
|
320
|
+
B1E6981225F96B680086A3E2 /* FixtureFramework.h in Headers */,
|
321
|
+
);
|
322
|
+
runOnlyForDeploymentPostprocessing = 0;
|
323
|
+
};
|
263
324
|
/* End PBXHeadersBuildPhase section */
|
264
325
|
|
265
326
|
/* Begin PBXNativeTarget section */
|
@@ -309,6 +370,7 @@
|
|
309
370
|
buildRules = (
|
310
371
|
);
|
311
372
|
dependencies = (
|
373
|
+
B1E6983025F96F490086A3E2 /* PBXTargetDependency */,
|
312
374
|
);
|
313
375
|
name = fixtures;
|
314
376
|
productName = fixtures;
|
@@ -326,6 +388,7 @@
|
|
326
388
|
buildRules = (
|
327
389
|
);
|
328
390
|
dependencies = (
|
391
|
+
B1E6983825F970320086A3E2 /* PBXTargetDependency */,
|
329
392
|
8C9A2045195965F10013B6B3 /* PBXTargetDependency */,
|
330
393
|
);
|
331
394
|
name = fixturesTests;
|
@@ -333,18 +396,42 @@
|
|
333
396
|
productReference = 8C9A2040195965F10013B6B3 /* fixturesTests.xctest */;
|
334
397
|
productType = "com.apple.product-type.bundle.unit-test";
|
335
398
|
};
|
399
|
+
B1E6980125F96B670086A3E2 /* FixtureFramework */ = {
|
400
|
+
isa = PBXNativeTarget;
|
401
|
+
buildConfigurationList = B1E6981725F96B680086A3E2 /* Build configuration list for PBXNativeTarget "FixtureFramework" */;
|
402
|
+
buildPhases = (
|
403
|
+
B1E697FD25F96B670086A3E2 /* Headers */,
|
404
|
+
B1E697FE25F96B670086A3E2 /* Sources */,
|
405
|
+
B1E697FF25F96B670086A3E2 /* Frameworks */,
|
406
|
+
B1E6980025F96B670086A3E2 /* Resources */,
|
407
|
+
);
|
408
|
+
buildRules = (
|
409
|
+
);
|
410
|
+
dependencies = (
|
411
|
+
);
|
412
|
+
name = FixtureFramework;
|
413
|
+
productName = FixtureFramework;
|
414
|
+
productReference = B1E6980225F96B670086A3E2 /* FixtureFramework.framework */;
|
415
|
+
productType = "com.apple.product-type.framework";
|
416
|
+
};
|
336
417
|
/* End PBXNativeTarget section */
|
337
418
|
|
338
419
|
/* Begin PBXProject section */
|
339
420
|
8C9A2025195965F00013B6B3 /* Project object */ = {
|
340
421
|
isa = PBXProject;
|
341
422
|
attributes = {
|
423
|
+
LastSwiftUpdateCheck = 1240;
|
342
424
|
LastUpgradeCheck = 0510;
|
343
425
|
ORGANIZATIONNAME = marklarr;
|
344
426
|
TargetAttributes = {
|
345
427
|
377330781CC42A58005EAF65 = {
|
346
428
|
CreatedOnToolsVersion = 7.3;
|
347
429
|
};
|
430
|
+
B1E6980125F96B670086A3E2 = {
|
431
|
+
CreatedOnToolsVersion = 12.4;
|
432
|
+
LastSwiftMigration = 1240;
|
433
|
+
ProvisioningStyle = Automatic;
|
434
|
+
};
|
348
435
|
};
|
349
436
|
};
|
350
437
|
buildConfigurationList = 8C9A2028195965F00013B6B3 /* Build configuration list for PBXProject "fixtures" */;
|
@@ -352,6 +439,7 @@
|
|
352
439
|
developmentRegion = English;
|
353
440
|
hasScannedForEncodings = 0;
|
354
441
|
knownRegions = (
|
442
|
+
English,
|
355
443
|
en,
|
356
444
|
);
|
357
445
|
mainGroup = 8C9A2024195965F00013B6B3;
|
@@ -363,6 +451,7 @@
|
|
363
451
|
377330781CC42A58005EAF65 /* fixturesTwo */,
|
364
452
|
8C9A203F195965F10013B6B3 /* fixturesTests */,
|
365
453
|
85AE68FC1E45F0F900DA2D47 /* fixturesTestsSecond */,
|
454
|
+
B1E6980125F96B670086A3E2 /* FixtureFramework */,
|
366
455
|
);
|
367
456
|
};
|
368
457
|
/* End PBXProject section */
|
@@ -384,6 +473,13 @@
|
|
384
473
|
);
|
385
474
|
runOnlyForDeploymentPostprocessing = 0;
|
386
475
|
};
|
476
|
+
B1E6980025F96B670086A3E2 /* Resources */ = {
|
477
|
+
isa = PBXResourcesBuildPhase;
|
478
|
+
buildActionMask = 2147483647;
|
479
|
+
files = (
|
480
|
+
);
|
481
|
+
runOnlyForDeploymentPostprocessing = 0;
|
482
|
+
};
|
387
483
|
/* End PBXResourcesBuildPhase section */
|
388
484
|
|
389
485
|
/* Begin PBXSourcesBuildPhase section */
|
@@ -427,6 +523,14 @@
|
|
427
523
|
);
|
428
524
|
runOnlyForDeploymentPostprocessing = 0;
|
429
525
|
};
|
526
|
+
B1E697FE25F96B670086A3E2 /* Sources */ = {
|
527
|
+
isa = PBXSourcesBuildPhase;
|
528
|
+
buildActionMask = 2147483647;
|
529
|
+
files = (
|
530
|
+
B1E6982025F96B930086A3E2 /* FlashExperiment.swift in Sources */,
|
531
|
+
);
|
532
|
+
runOnlyForDeploymentPostprocessing = 0;
|
533
|
+
};
|
430
534
|
/* End PBXSourcesBuildPhase section */
|
431
535
|
|
432
536
|
/* Begin PBXTargetDependency section */
|
@@ -440,6 +544,16 @@
|
|
440
544
|
target = 8C9A202C195965F10013B6B3 /* fixtures */;
|
441
545
|
targetProxy = 8C9A2044195965F10013B6B3 /* PBXContainerItemProxy */;
|
442
546
|
};
|
547
|
+
B1E6983025F96F490086A3E2 /* PBXTargetDependency */ = {
|
548
|
+
isa = PBXTargetDependency;
|
549
|
+
target = B1E6980125F96B670086A3E2 /* FixtureFramework */;
|
550
|
+
targetProxy = B1E6982F25F96F490086A3E2 /* PBXContainerItemProxy */;
|
551
|
+
};
|
552
|
+
B1E6983825F970320086A3E2 /* PBXTargetDependency */ = {
|
553
|
+
isa = PBXTargetDependency;
|
554
|
+
target = B1E6980125F96B670086A3E2 /* FixtureFramework */;
|
555
|
+
targetProxy = B1E6983725F970320086A3E2 /* PBXContainerItemProxy */;
|
556
|
+
};
|
443
557
|
/* End PBXTargetDependency section */
|
444
558
|
|
445
559
|
/* Begin PBXVariantGroup section */
|
@@ -653,6 +767,105 @@
|
|
653
767
|
};
|
654
768
|
name = Release;
|
655
769
|
};
|
770
|
+
B1E6981325F96B680086A3E2 /* Debug */ = {
|
771
|
+
isa = XCBuildConfiguration;
|
772
|
+
buildSettings = {
|
773
|
+
CLANG_ANALYZER_NONNULL = YES;
|
774
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
775
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
776
|
+
CLANG_ENABLE_MODULES = YES;
|
777
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
778
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
779
|
+
CLANG_WARN_COMMA = YES;
|
780
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
781
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
782
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
783
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
784
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
785
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
786
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
787
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
788
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
789
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
790
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
791
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
792
|
+
CODE_SIGN_STYLE = Automatic;
|
793
|
+
COMBINE_HIDPI_IMAGES = YES;
|
794
|
+
CURRENT_PROJECT_VERSION = 1;
|
795
|
+
DEFINES_MODULE = YES;
|
796
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
797
|
+
DYLIB_CURRENT_VERSION = 1;
|
798
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
799
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
800
|
+
ENABLE_TESTABILITY = YES;
|
801
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
802
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
803
|
+
INFOPLIST_FILE = FixtureFramework/Info.plist;
|
804
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
805
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
|
806
|
+
MACOSX_DEPLOYMENT_TARGET = 11.1;
|
807
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
808
|
+
MTL_FAST_MATH = YES;
|
809
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.onato.FixtureFramework;
|
810
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
811
|
+
SKIP_INSTALL = YES;
|
812
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
813
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
814
|
+
SWIFT_VERSION = 5.0;
|
815
|
+
VERSIONING_SYSTEM = "apple-generic";
|
816
|
+
VERSION_INFO_PREFIX = "";
|
817
|
+
};
|
818
|
+
name = Debug;
|
819
|
+
};
|
820
|
+
B1E6981425F96B680086A3E2 /* Release */ = {
|
821
|
+
isa = XCBuildConfiguration;
|
822
|
+
buildSettings = {
|
823
|
+
CLANG_ANALYZER_NONNULL = YES;
|
824
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
825
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
826
|
+
CLANG_ENABLE_MODULES = YES;
|
827
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
828
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
829
|
+
CLANG_WARN_COMMA = YES;
|
830
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
831
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
832
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
833
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
834
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
835
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
836
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
837
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
838
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
839
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
840
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
841
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
842
|
+
CODE_SIGN_STYLE = Automatic;
|
843
|
+
COMBINE_HIDPI_IMAGES = YES;
|
844
|
+
COPY_PHASE_STRIP = NO;
|
845
|
+
CURRENT_PROJECT_VERSION = 1;
|
846
|
+
DEFINES_MODULE = YES;
|
847
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
848
|
+
DYLIB_CURRENT_VERSION = 1;
|
849
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
850
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
851
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
852
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
853
|
+
INFOPLIST_FILE = FixtureFramework/Info.plist;
|
854
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
855
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
|
856
|
+
MACOSX_DEPLOYMENT_TARGET = 11.1;
|
857
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
858
|
+
MTL_FAST_MATH = YES;
|
859
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.onato.FixtureFramework;
|
860
|
+
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
|
861
|
+
SKIP_INSTALL = YES;
|
862
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
|
863
|
+
SWIFT_VERSION = 5.0;
|
864
|
+
VERSIONING_SYSTEM = "apple-generic";
|
865
|
+
VERSION_INFO_PREFIX = "";
|
866
|
+
};
|
867
|
+
name = Release;
|
868
|
+
};
|
656
869
|
/* End XCBuildConfiguration section */
|
657
870
|
|
658
871
|
/* Begin XCConfigurationList section */
|
@@ -701,6 +914,15 @@
|
|
701
914
|
defaultConfigurationIsVisible = 0;
|
702
915
|
defaultConfigurationName = Release;
|
703
916
|
};
|
917
|
+
B1E6981725F96B680086A3E2 /* Build configuration list for PBXNativeTarget "FixtureFramework" */ = {
|
918
|
+
isa = XCConfigurationList;
|
919
|
+
buildConfigurations = (
|
920
|
+
B1E6981325F96B680086A3E2 /* Debug */,
|
921
|
+
B1E6981425F96B680086A3E2 /* Release */,
|
922
|
+
);
|
923
|
+
defaultConfigurationIsVisible = 0;
|
924
|
+
defaultConfigurationName = Release;
|
925
|
+
};
|
704
926
|
/* End XCConfigurationList section */
|
705
927
|
};
|
706
928
|
rootObject = 8C9A2025195965F00013B6B3 /* Project object */;
|