xcoder 0.1.11 → 0.1.12
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -0
- data/lib/xcode/builder.rb +32 -19
- data/lib/xcode/shell.rb +3 -1
- data/lib/xcode/test/parsers/ocunit_parser.rb +94 -0
- data/lib/xcode/test/report.rb +121 -0
- data/lib/xcode/test/report/suite_result.rb +67 -0
- data/lib/xcode/test/report/test_result.rb +49 -0
- data/lib/xcode/version.rb +1 -1
- data/lib/xcode/workspace.rb +6 -3
- data/spec/TestProject/{TestProjectTests/TestProjectTests-Info.plist → ApplicationTests/ApplicationTests-Info.plist} +0 -0
- data/spec/TestProject/ApplicationTests/ApplicationTests-Prefix.pch +8 -0
- data/spec/TestProject/ApplicationTests/ApplicationTests.h +13 -0
- data/spec/TestProject/ApplicationTests/ApplicationTests.m +32 -0
- data/spec/TestProject/{TestProjectTests → ApplicationTests}/en.lproj/InfoPlist.strings +0 -0
- data/spec/TestProject/{TestProjectTests → LogicTests}/AnotherTest.h +0 -0
- data/spec/TestProject/{TestProjectTests → LogicTests}/AnotherTest.m +0 -0
- data/spec/TestProject/LogicTests/TestProjectTests-Info.plist +22 -0
- data/spec/TestProject/{TestProjectTests → LogicTests}/TestProjectTests.h +0 -0
- data/spec/TestProject/{TestProjectTests → LogicTests}/TestProjectTests.m +0 -0
- data/spec/TestProject/LogicTests/en.lproj/InfoPlist.strings +2 -0
- data/spec/TestProject/TestProject.xcodeproj/project.pbxproj +1329 -556
- data/spec/TestProject/TestProject.xcodeproj/xcshareddata/xcschemes/TestProject.xcscheme +13 -2
- data/spec/TestWorkspace2.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/TestWorkspace2.xcworkspace/xcuserdata/ray.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- data/spec/build_phase_spec.rb +2 -2
- data/spec/builder_spec.rb +51 -10
- data/spec/integration/builder_spec.rb +60 -4
- data/spec/ocunit_parser_spec.rb +164 -0
- data/spec/project_spec.rb +1 -1
- data/spec/workspace_spec.rb +8 -3
- metadata +44 -29
- data/lib/xcode/test/ocunit_report_parser.rb +0 -174
- data/lib/xcode/test/suite_result.rb +0 -39
- data/lib/xcode/test/test_result.rb +0 -43
- data/spec/test_report_spec.rb +0 -147
data/lib/xcode/version.rb
CHANGED
data/lib/xcode/workspace.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'xcode/project'
|
2
|
+
require 'nokogiri'
|
2
3
|
|
3
4
|
module Xcode
|
4
5
|
class Workspace
|
@@ -11,9 +12,11 @@ module Xcode
|
|
11
12
|
@projects = []
|
12
13
|
@path = File.expand_path path
|
13
14
|
|
14
|
-
|
15
|
-
|
16
|
-
|
15
|
+
doc = Nokogiri::XML(open(@path))
|
16
|
+
doc.search("FileRef").each do |file|
|
17
|
+
location = file["location"]
|
18
|
+
if matcher = location.match(/^group:(.+)$/)
|
19
|
+
project_path = "#{workspace_root}/#{matcher[1]}"
|
17
20
|
@projects << Xcode::Project.new(project_path)
|
18
21
|
end
|
19
22
|
end
|
File without changes
|
@@ -0,0 +1,13 @@
|
|
1
|
+
//
|
2
|
+
// ApplicationTests.h
|
3
|
+
// ApplicationTests
|
4
|
+
//
|
5
|
+
// Created by Ray Hilton on 18/04/12.
|
6
|
+
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
#import <SenTestingKit/SenTestingKit.h>
|
10
|
+
|
11
|
+
@interface ApplicationTests : SenTestCase
|
12
|
+
|
13
|
+
@end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
//
|
2
|
+
// ApplicationTests.m
|
3
|
+
// ApplicationTests
|
4
|
+
//
|
5
|
+
// Created by Ray Hilton on 18/04/12.
|
6
|
+
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
#import "ApplicationTests.h"
|
10
|
+
|
11
|
+
@implementation ApplicationTests
|
12
|
+
|
13
|
+
- (void)setUp
|
14
|
+
{
|
15
|
+
[super setUp];
|
16
|
+
|
17
|
+
// Set-up code here.
|
18
|
+
}
|
19
|
+
|
20
|
+
- (void)tearDown
|
21
|
+
{
|
22
|
+
// Tear-down code here.
|
23
|
+
|
24
|
+
[super tearDown];
|
25
|
+
}
|
26
|
+
|
27
|
+
- (void)testExample
|
28
|
+
{
|
29
|
+
STFail(@"Unit tests are not implemented yet in ApplicationTests");
|
30
|
+
}
|
31
|
+
|
32
|
+
@end
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>CFBundleDevelopmentRegion</key>
|
6
|
+
<string>en</string>
|
7
|
+
<key>CFBundleExecutable</key>
|
8
|
+
<string>${EXECUTABLE_NAME}</string>
|
9
|
+
<key>CFBundleIdentifier</key>
|
10
|
+
<string>au.com.rayh.xcoder.${PRODUCT_NAME:rfc1034identifier}</string>
|
11
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
12
|
+
<string>6.0</string>
|
13
|
+
<key>CFBundlePackageType</key>
|
14
|
+
<string>BNDL</string>
|
15
|
+
<key>CFBundleShortVersionString</key>
|
16
|
+
<string>1.0</string>
|
17
|
+
<key>CFBundleSignature</key>
|
18
|
+
<string>????</string>
|
19
|
+
<key>CFBundleVersion</key>
|
20
|
+
<string>1</string>
|
21
|
+
</dict>
|
22
|
+
</plist>
|
File without changes
|
File without changes
|
@@ -1,557 +1,1330 @@
|
|
1
|
-
// !$*UTF8*$!
|
1
|
+
// !$*UTF8*$!"
|
2
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
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
3
|
+
"archiveVersion" = "1";
|
4
|
+
"classes" = {
|
5
|
+
|
6
|
+
};
|
7
|
+
"objectVersion" = "46";
|
8
|
+
"objects" = {
|
9
|
+
"2574D65B0D2FFDB5D0372B4A" = {
|
10
|
+
"fileRef" = "7165D454146B4EA100DE2F0E";
|
11
|
+
"isa" = "PBXBuildFile";
|
12
|
+
};
|
13
|
+
"28C60920A77AB174A952864D" = {
|
14
|
+
"fileRef" = "7165D458146B4EA100DE2F0E";
|
15
|
+
"isa" = "PBXBuildFile";
|
16
|
+
};
|
17
|
+
"57F7ADA229AE63B1ADB8DA79" = {
|
18
|
+
"buildActionMask" = "2147483647";
|
19
|
+
"files" = (
|
20
|
+
|
21
|
+
);
|
22
|
+
"isa" = "PBXResourcesBuildPhase";
|
23
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
24
|
+
};
|
25
|
+
"630E8768C91375E025BDAB9D" = {
|
26
|
+
"explicitFileType" = "wrapper.application";
|
27
|
+
"includeInIndex" = "0";
|
28
|
+
"isa" = "PBXFileReference";
|
29
|
+
"path" = "Specs.app";
|
30
|
+
"sourceTree" = "BUILT_PRODUCTS_DIR";
|
31
|
+
};
|
32
|
+
"70F2C1C35C0D60D44412B5D5" = {
|
33
|
+
"isa" = "PBXFileReference";
|
34
|
+
"lastKnownFileType" = "wrapper.framework";
|
35
|
+
"name" = "CFNetwork.framework";
|
36
|
+
"path" = "System/Library/Frameworks/CFNetwork.framework";
|
37
|
+
"sourceTree" = "SDKROOT";
|
38
|
+
};
|
39
|
+
"7147F902153E347700763224" = {
|
40
|
+
"buildActionMask" = "2147483647";
|
41
|
+
"files" = (
|
42
|
+
"7147F913153E347700763224"
|
43
|
+
);
|
44
|
+
"isa" = "PBXSourcesBuildPhase";
|
45
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
46
|
+
};
|
47
|
+
"7147F903153E347700763224" = {
|
48
|
+
"buildActionMask" = "2147483647";
|
49
|
+
"files" = (
|
50
|
+
"7147F908153E347700763224",
|
51
|
+
"7147F909153E347700763224",
|
52
|
+
"7147F90A153E347700763224"
|
53
|
+
);
|
54
|
+
"isa" = "PBXFrameworksBuildPhase";
|
55
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
56
|
+
};
|
57
|
+
"7147F904153E347700763224" = {
|
58
|
+
"buildActionMask" = "2147483647";
|
59
|
+
"files" = (
|
60
|
+
"7147F910153E347700763224"
|
61
|
+
);
|
62
|
+
"isa" = "PBXResourcesBuildPhase";
|
63
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
64
|
+
};
|
65
|
+
"7147F905153E347700763224" = {
|
66
|
+
"buildActionMask" = "2147483647";
|
67
|
+
"files" = (
|
68
|
+
|
69
|
+
);
|
70
|
+
"inputPaths" = (
|
71
|
+
|
72
|
+
);
|
73
|
+
"isa" = "PBXShellScriptBuildPhase";
|
74
|
+
"outputPaths" = (
|
75
|
+
|
76
|
+
);
|
77
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
78
|
+
"shellPath" = "/bin/sh";
|
79
|
+
"shellScript" = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
|
80
|
+
};
|
81
|
+
"7147F906153E347700763224" = {
|
82
|
+
"buildConfigurationList" = "7147F915153E347700763224";
|
83
|
+
"buildPhases" = (
|
84
|
+
"7147F902153E347700763224",
|
85
|
+
"7147F903153E347700763224",
|
86
|
+
"7147F904153E347700763224",
|
87
|
+
"7147F905153E347700763224"
|
88
|
+
);
|
89
|
+
"buildRules" = (
|
90
|
+
|
91
|
+
);
|
92
|
+
"dependencies" = (
|
93
|
+
|
94
|
+
);
|
95
|
+
"isa" = "PBXNativeTarget";
|
96
|
+
"name" = "ApplicationTests";
|
97
|
+
"productName" = "ApplicationTests";
|
98
|
+
"productReference" = "7147F907153E347700763224";
|
99
|
+
"productType" = "com.apple.product-type.bundle";
|
100
|
+
};
|
101
|
+
"7147F907153E347700763224" = {
|
102
|
+
"explicitFileType" = "wrapper.cfbundle";
|
103
|
+
"includeInIndex" = "0";
|
104
|
+
"isa" = "PBXFileReference";
|
105
|
+
"path" = "ApplicationTests.octest";
|
106
|
+
"sourceTree" = "BUILT_PRODUCTS_DIR";
|
107
|
+
};
|
108
|
+
"7147F908153E347700763224" = {
|
109
|
+
"fileRef" = "7165D46C146B4EA100DE2F0E";
|
110
|
+
"isa" = "PBXBuildFile";
|
111
|
+
};
|
112
|
+
"7147F909153E347700763224" = {
|
113
|
+
"fileRef" = "7165D454146B4EA100DE2F0E";
|
114
|
+
"isa" = "PBXBuildFile";
|
115
|
+
};
|
116
|
+
"7147F90A153E347700763224" = {
|
117
|
+
"fileRef" = "7165D456146B4EA100DE2F0E";
|
118
|
+
"isa" = "PBXBuildFile";
|
119
|
+
};
|
120
|
+
"7147F90B153E347700763224" = {
|
121
|
+
"children" = (
|
122
|
+
"7147F911153E347700763224",
|
123
|
+
"7147F912153E347700763224",
|
124
|
+
"7147F90C153E347700763224"
|
125
|
+
);
|
126
|
+
"isa" = "PBXGroup";
|
127
|
+
"path" = "ApplicationTests";
|
128
|
+
"sourceTree" = "<group>";
|
129
|
+
};
|
130
|
+
"7147F90C153E347700763224" = {
|
131
|
+
"children" = (
|
132
|
+
"7147F90D153E347700763224",
|
133
|
+
"7147F90E153E347700763224",
|
134
|
+
"7147F914153E347700763224"
|
135
|
+
);
|
136
|
+
"isa" = "PBXGroup";
|
137
|
+
"name" = "Supporting Files";
|
138
|
+
"sourceTree" = "<group>";
|
139
|
+
};
|
140
|
+
"7147F90D153E347700763224" = {
|
141
|
+
"isa" = "PBXFileReference";
|
142
|
+
"lastKnownFileType" = "text.plist.xml";
|
143
|
+
"path" = "ApplicationTests-Info.plist";
|
144
|
+
"sourceTree" = "<group>";
|
145
|
+
};
|
146
|
+
"7147F90E153E347700763224" = {
|
147
|
+
"children" = (
|
148
|
+
"7147F90F153E347700763224"
|
149
|
+
);
|
150
|
+
"isa" = "PBXVariantGroup";
|
151
|
+
"name" = "InfoPlist.strings";
|
152
|
+
"sourceTree" = "<group>";
|
153
|
+
};
|
154
|
+
"7147F90F153E347700763224" = {
|
155
|
+
"isa" = "PBXFileReference";
|
156
|
+
"lastKnownFileType" = "text.plist.strings";
|
157
|
+
"name" = "en";
|
158
|
+
"path" = "en.lproj/InfoPlist.strings";
|
159
|
+
"sourceTree" = "<group>";
|
160
|
+
};
|
161
|
+
"7147F910153E347700763224" = {
|
162
|
+
"fileRef" = "7147F90E153E347700763224";
|
163
|
+
"isa" = "PBXBuildFile";
|
164
|
+
};
|
165
|
+
"7147F911153E347700763224" = {
|
166
|
+
"isa" = "PBXFileReference";
|
167
|
+
"lastKnownFileType" = "sourcecode.c.h";
|
168
|
+
"path" = "ApplicationTests.h";
|
169
|
+
"sourceTree" = "<group>";
|
170
|
+
};
|
171
|
+
"7147F912153E347700763224" = {
|
172
|
+
"isa" = "PBXFileReference";
|
173
|
+
"lastKnownFileType" = "sourcecode.c.objc";
|
174
|
+
"path" = "ApplicationTests.m";
|
175
|
+
"sourceTree" = "<group>";
|
176
|
+
};
|
177
|
+
"7147F913153E347700763224" = {
|
178
|
+
"fileRef" = "7147F912153E347700763224";
|
179
|
+
"isa" = "PBXBuildFile";
|
180
|
+
};
|
181
|
+
"7147F914153E347700763224" = {
|
182
|
+
"isa" = "PBXFileReference";
|
183
|
+
"lastKnownFileType" = "sourcecode.c.h";
|
184
|
+
"path" = "ApplicationTests-Prefix.pch";
|
185
|
+
"sourceTree" = "<group>";
|
186
|
+
};
|
187
|
+
"7147F915153E347700763224" = {
|
188
|
+
"buildConfigurations" = (
|
189
|
+
"7147F916153E347700763224",
|
190
|
+
"7147F917153E347700763224"
|
191
|
+
);
|
192
|
+
"defaultConfigurationIsVisible" = "0";
|
193
|
+
"isa" = "XCConfigurationList";
|
194
|
+
};
|
195
|
+
"7147F916153E347700763224" = {
|
196
|
+
"buildSettings" = {
|
197
|
+
"BUNDLE_LOADER" = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
|
198
|
+
"CLANG_ENABLE_OBJC_ARC" = "YES";
|
199
|
+
"FRAMEWORK_SEARCH_PATHS" = (
|
200
|
+
"$(SDKROOT)/Developer/Library/Frameworks",
|
201
|
+
"$(DEVELOPER_LIBRARY_DIR)/Frameworks"
|
202
|
+
);
|
203
|
+
"GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
|
204
|
+
"GCC_PREFIX_HEADER" = "ApplicationTests/ApplicationTests-Prefix.pch";
|
205
|
+
"GCC_WARN_UNINITIALIZED_AUTOS" = "YES";
|
206
|
+
"INFOPLIST_FILE" = "ApplicationTests/ApplicationTests-Info.plist";
|
207
|
+
"IPHONEOS_DEPLOYMENT_TARGET" = "5.1";
|
208
|
+
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
209
|
+
"TEST_HOST" = "$(BUNDLE_LOADER)";
|
210
|
+
"WRAPPER_EXTENSION" = "octest";
|
211
|
+
};
|
212
|
+
"isa" = "XCBuildConfiguration";
|
213
|
+
"name" = "Debug";
|
214
|
+
};
|
215
|
+
"7147F917153E347700763224" = {
|
216
|
+
"buildSettings" = {
|
217
|
+
"CLANG_ENABLE_OBJC_ARC" = "YES";
|
218
|
+
"FRAMEWORK_SEARCH_PATHS" = (
|
219
|
+
"$(SDKROOT)/Developer/Library/Frameworks",
|
220
|
+
"$(DEVELOPER_LIBRARY_DIR)/Frameworks"
|
221
|
+
);
|
222
|
+
"GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
|
223
|
+
"GCC_PREFIX_HEADER" = "ApplicationTests/ApplicationTests-Prefix.pch";
|
224
|
+
"GCC_WARN_UNINITIALIZED_AUTOS" = "YES";
|
225
|
+
"INFOPLIST_FILE" = "ApplicationTests/ApplicationTests-Info.plist";
|
226
|
+
"IPHONEOS_DEPLOYMENT_TARGET" = "5.1";
|
227
|
+
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
228
|
+
"WRAPPER_EXTENSION" = "octest";
|
229
|
+
};
|
230
|
+
"isa" = "XCBuildConfiguration";
|
231
|
+
"name" = "Release";
|
232
|
+
};
|
233
|
+
"7147F918153E34F900763224" = {
|
234
|
+
"children" = (
|
235
|
+
"7147F924153E350400763224",
|
236
|
+
"7147F919153E34F900763224",
|
237
|
+
"7147F91A153E34F900763224",
|
238
|
+
"7147F91E153E34F900763224",
|
239
|
+
"7147F91F153E34F900763224"
|
240
|
+
);
|
241
|
+
"isa" = "PBXGroup";
|
242
|
+
"path" = "LogicTests";
|
243
|
+
"sourceTree" = "<group>";
|
244
|
+
};
|
245
|
+
"7147F919153E34F900763224" = {
|
246
|
+
"fileEncoding" = "4";
|
247
|
+
"isa" = "PBXFileReference";
|
248
|
+
"lastKnownFileType" = "sourcecode.c.h";
|
249
|
+
"path" = "AnotherTest.h";
|
250
|
+
"sourceTree" = "<group>";
|
251
|
+
};
|
252
|
+
"7147F91A153E34F900763224" = {
|
253
|
+
"fileEncoding" = "4";
|
254
|
+
"isa" = "PBXFileReference";
|
255
|
+
"lastKnownFileType" = "sourcecode.c.objc";
|
256
|
+
"path" = "AnotherTest.m";
|
257
|
+
"sourceTree" = "<group>";
|
258
|
+
};
|
259
|
+
"7147F91B153E34F900763224" = {
|
260
|
+
"children" = (
|
261
|
+
"7147F91C153E34F900763224"
|
262
|
+
);
|
263
|
+
"isa" = "PBXVariantGroup";
|
264
|
+
"name" = "InfoPlist.strings";
|
265
|
+
"sourceTree" = "<group>";
|
266
|
+
};
|
267
|
+
"7147F91C153E34F900763224" = {
|
268
|
+
"isa" = "PBXFileReference";
|
269
|
+
"lastKnownFileType" = "text.plist.strings";
|
270
|
+
"name" = "en";
|
271
|
+
"path" = "en.lproj/InfoPlist.strings";
|
272
|
+
"sourceTree" = "<group>";
|
273
|
+
};
|
274
|
+
"7147F91D153E34F900763224" = {
|
275
|
+
"fileEncoding" = "4";
|
276
|
+
"isa" = "PBXFileReference";
|
277
|
+
"lastKnownFileType" = "text.plist.xml";
|
278
|
+
"path" = "TestProjectTests-Info.plist";
|
279
|
+
"sourceTree" = "<group>";
|
280
|
+
};
|
281
|
+
"7147F91E153E34F900763224" = {
|
282
|
+
"fileEncoding" = "4";
|
283
|
+
"isa" = "PBXFileReference";
|
284
|
+
"lastKnownFileType" = "sourcecode.c.h";
|
285
|
+
"path" = "TestProjectTests.h";
|
286
|
+
"sourceTree" = "<group>";
|
287
|
+
};
|
288
|
+
"7147F91F153E34F900763224" = {
|
289
|
+
"fileEncoding" = "4";
|
290
|
+
"isa" = "PBXFileReference";
|
291
|
+
"lastKnownFileType" = "sourcecode.c.objc";
|
292
|
+
"path" = "TestProjectTests.m";
|
293
|
+
"sourceTree" = "<group>";
|
294
|
+
};
|
295
|
+
"7147F920153E34F900763224" = {
|
296
|
+
"fileRef" = "7147F91A153E34F900763224";
|
297
|
+
"isa" = "PBXBuildFile";
|
298
|
+
};
|
299
|
+
"7147F921153E34F900763224" = {
|
300
|
+
"fileRef" = "7147F91B153E34F900763224";
|
301
|
+
"isa" = "PBXBuildFile";
|
302
|
+
};
|
303
|
+
"7147F922153E34F900763224" = {
|
304
|
+
"fileRef" = "7147F91D153E34F900763224";
|
305
|
+
"isa" = "PBXBuildFile";
|
306
|
+
};
|
307
|
+
"7147F923153E34F900763224" = {
|
308
|
+
"fileRef" = "7147F91F153E34F900763224";
|
309
|
+
"isa" = "PBXBuildFile";
|
310
|
+
};
|
311
|
+
"7147F924153E350400763224" = {
|
312
|
+
"children" = (
|
313
|
+
"7147F91B153E34F900763224",
|
314
|
+
"7147F91D153E34F900763224"
|
315
|
+
);
|
316
|
+
"isa" = "PBXGroup";
|
317
|
+
"name" = "Supporting Files";
|
318
|
+
"sourceTree" = "<group>";
|
319
|
+
};
|
320
|
+
"7165D445146B4EA100DE2F0E" = {
|
321
|
+
"children" = (
|
322
|
+
"7165D45A146B4EA100DE2F0E",
|
323
|
+
"7147F918153E34F900763224",
|
324
|
+
"7147F90B153E347700763224",
|
325
|
+
"7165D453146B4EA100DE2F0E",
|
326
|
+
"7165D451146B4EA100DE2F0E",
|
327
|
+
"AC5709608A4B604B2A62F693",
|
328
|
+
"42C6306B0C4EF0451E08B222"
|
329
|
+
);
|
330
|
+
"isa" = "PBXGroup";
|
331
|
+
"sourceTree" = "<group>";
|
332
|
+
};
|
333
|
+
"7165D447146B4EA100DE2F0E" = {
|
334
|
+
"attributes" = {
|
335
|
+
"LastUpgradeCheck" = "0420";
|
336
|
+
};
|
337
|
+
"buildConfigurationList" = "7165D44A146B4EA100DE2F0E";
|
338
|
+
"compatibilityVersion" = "Xcode 3.2";
|
339
|
+
"developmentRegion" = "English";
|
340
|
+
"hasScannedForEncodings" = "0";
|
341
|
+
"isa" = "PBXProject";
|
342
|
+
"knownRegions" = (
|
343
|
+
"en"
|
344
|
+
);
|
345
|
+
"mainGroup" = "7165D445146B4EA100DE2F0E";
|
346
|
+
"productRefGroup" = "7165D451146B4EA100DE2F0E";
|
347
|
+
"projectDirPath" = "";
|
348
|
+
"projectRoot" = "";
|
349
|
+
"targets" = (
|
350
|
+
"7165D44F146B4EA100DE2F0E",
|
351
|
+
"7165D46A146B4EA100DE2F0E",
|
352
|
+
"D111C141DDDD1009668E310E",
|
353
|
+
"7147F906153E347700763224",
|
354
|
+
"566BEB5DE68C5E88642EF09E",
|
355
|
+
"65AB32971E4767F5B3F12FF7",
|
356
|
+
"58214545BF6DA702353B3F50"
|
357
|
+
);
|
358
|
+
};
|
359
|
+
"7165D44A146B4EA100DE2F0E" = {
|
360
|
+
"buildConfigurations" = (
|
361
|
+
"7165D47B146B4EA100DE2F0E",
|
362
|
+
"7165D47C146B4EA100DE2F0E"
|
363
|
+
);
|
364
|
+
"defaultConfigurationIsVisible" = "0";
|
365
|
+
"defaultConfigurationName" = "Release";
|
366
|
+
"isa" = "XCConfigurationList";
|
367
|
+
};
|
368
|
+
"7165D44C146B4EA100DE2F0E" = {
|
369
|
+
"buildActionMask" = "2147483647";
|
370
|
+
"files" = (
|
371
|
+
"7165D461146B4EA100DE2F0E",
|
372
|
+
"7165D465146B4EA100DE2F0E",
|
373
|
+
"896B34DEDCB267B6A64573D2",
|
374
|
+
"AB9B40F7D71EA8F3672A520C"
|
375
|
+
);
|
376
|
+
"isa" = "PBXSourcesBuildPhase";
|
377
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
378
|
+
};
|
379
|
+
"7165D44D146B4EA100DE2F0E" = {
|
380
|
+
"buildActionMask" = "2147483647";
|
381
|
+
"files" = (
|
382
|
+
"7165D455146B4EA100DE2F0E",
|
383
|
+
"7165D457146B4EA100DE2F0E",
|
384
|
+
"7165D459146B4EA100DE2F0E",
|
385
|
+
"7CFB5CB764A4A1DFF2139CB1"
|
386
|
+
);
|
387
|
+
"isa" = "PBXFrameworksBuildPhase";
|
388
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
389
|
+
};
|
390
|
+
"7165D44E146B4EA100DE2F0E" = {
|
391
|
+
"buildActionMask" = "2147483647";
|
392
|
+
"files" = (
|
393
|
+
"7165D45F146B4EA100DE2F0E"
|
394
|
+
);
|
395
|
+
"isa" = "PBXResourcesBuildPhase";
|
396
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
397
|
+
};
|
398
|
+
"7165D44F146B4EA100DE2F0E" = {
|
399
|
+
"buildConfigurationList" = "7165D47D146B4EA100DE2F0E";
|
400
|
+
"buildPhases" = (
|
401
|
+
"7165D44C146B4EA100DE2F0E",
|
402
|
+
"7165D44D146B4EA100DE2F0E",
|
403
|
+
"7165D44E146B4EA100DE2F0E"
|
404
|
+
);
|
405
|
+
"buildRules" = (
|
406
|
+
|
407
|
+
);
|
408
|
+
"dependencies" = (
|
409
|
+
|
410
|
+
);
|
411
|
+
"isa" = "PBXNativeTarget";
|
412
|
+
"name" = "TestProject";
|
413
|
+
"productName" = "TestProject";
|
414
|
+
"productReference" = "7165D450146B4EA100DE2F0E";
|
415
|
+
"productType" = "com.apple.product-type.application";
|
416
|
+
};
|
417
|
+
"7165D450146B4EA100DE2F0E" = {
|
418
|
+
"explicitFileType" = "wrapper.application";
|
419
|
+
"includeInIndex" = "0";
|
420
|
+
"isa" = "PBXFileReference";
|
421
|
+
"path" = "TestProject.app";
|
422
|
+
"sourceTree" = "BUILT_PRODUCTS_DIR";
|
423
|
+
};
|
424
|
+
"7165D451146B4EA100DE2F0E" = {
|
425
|
+
"children" = (
|
426
|
+
"7165D450146B4EA100DE2F0E",
|
427
|
+
"7165D46B146B4EA100DE2F0E",
|
428
|
+
"630E8768C91375E025BDAB9D",
|
429
|
+
"7147F907153E347700763224",
|
430
|
+
"717D8FDF4C30423AAB350467"
|
431
|
+
);
|
432
|
+
"isa" = "PBXGroup";
|
433
|
+
"name" = "Products";
|
434
|
+
"sourceTree" = "<group>";
|
435
|
+
};
|
436
|
+
"7165D453146B4EA100DE2F0E" = {
|
437
|
+
"children" = (
|
438
|
+
"7165D454146B4EA100DE2F0E",
|
439
|
+
"7165D456146B4EA100DE2F0E",
|
440
|
+
"7165D458146B4EA100DE2F0E",
|
441
|
+
"7165D46C146B4EA100DE2F0E",
|
442
|
+
"70F2C1C35C0D60D44412B5D5",
|
443
|
+
"104BB96CB0BED4A4583BC461"
|
444
|
+
);
|
445
|
+
"isa" = "PBXGroup";
|
446
|
+
"name" = "Frameworks";
|
447
|
+
"sourceTree" = "<group>";
|
448
|
+
};
|
449
|
+
"7165D454146B4EA100DE2F0E" = {
|
450
|
+
"isa" = "PBXFileReference";
|
451
|
+
"lastKnownFileType" = "wrapper.framework";
|
452
|
+
"name" = "UIKit.framework";
|
453
|
+
"path" = "System/Library/Frameworks/UIKit.framework";
|
454
|
+
"sourceTree" = "SDKROOT";
|
455
|
+
};
|
456
|
+
"7165D455146B4EA100DE2F0E" = {
|
457
|
+
"fileRef" = "7165D454146B4EA100DE2F0E";
|
458
|
+
"isa" = "PBXBuildFile";
|
459
|
+
};
|
460
|
+
"7165D456146B4EA100DE2F0E" = {
|
461
|
+
"isa" = "PBXFileReference";
|
462
|
+
"lastKnownFileType" = "wrapper.framework";
|
463
|
+
"name" = "Foundation.framework";
|
464
|
+
"path" = "System/Library/Frameworks/Foundation.framework";
|
465
|
+
"sourceTree" = "SDKROOT";
|
466
|
+
};
|
467
|
+
"7165D457146B4EA100DE2F0E" = {
|
468
|
+
"fileRef" = "7165D456146B4EA100DE2F0E";
|
469
|
+
"isa" = "PBXBuildFile";
|
470
|
+
};
|
471
|
+
"7165D458146B4EA100DE2F0E" = {
|
472
|
+
"isa" = "PBXFileReference";
|
473
|
+
"lastKnownFileType" = "wrapper.framework";
|
474
|
+
"name" = "CoreGraphics.framework";
|
475
|
+
"path" = "System/Library/Frameworks/CoreGraphics.framework";
|
476
|
+
"sourceTree" = "SDKROOT";
|
477
|
+
};
|
478
|
+
"7165D459146B4EA100DE2F0E" = {
|
479
|
+
"fileRef" = "7165D458146B4EA100DE2F0E";
|
480
|
+
"isa" = "PBXBuildFile";
|
481
|
+
};
|
482
|
+
"7165D45A146B4EA100DE2F0E" = {
|
483
|
+
"children" = (
|
484
|
+
"7165D463146B4EA100DE2F0E",
|
485
|
+
"7165D464146B4EA100DE2F0E",
|
486
|
+
"7165D45B146B4EA100DE2F0E"
|
487
|
+
);
|
488
|
+
"isa" = "PBXGroup";
|
489
|
+
"path" = "TestProject";
|
490
|
+
"sourceTree" = "<group>";
|
491
|
+
};
|
492
|
+
"7165D45B146B4EA100DE2F0E" = {
|
493
|
+
"children" = (
|
494
|
+
"7165D45C146B4EA100DE2F0E",
|
495
|
+
"7165D45D146B4EA100DE2F0E",
|
496
|
+
"7165D460146B4EA100DE2F0E",
|
497
|
+
"7165D462146B4EA100DE2F0E"
|
498
|
+
);
|
499
|
+
"isa" = "PBXGroup";
|
500
|
+
"name" = "Supporting Files";
|
501
|
+
"sourceTree" = "<group>";
|
502
|
+
};
|
503
|
+
"7165D45C146B4EA100DE2F0E" = {
|
504
|
+
"isa" = "PBXFileReference";
|
505
|
+
"lastKnownFileType" = "text.plist.xml";
|
506
|
+
"path" = "TestProject-Info.plist";
|
507
|
+
"sourceTree" = "<group>";
|
508
|
+
};
|
509
|
+
"7165D45D146B4EA100DE2F0E" = {
|
510
|
+
"children" = (
|
511
|
+
"7165D45E146B4EA100DE2F0E"
|
512
|
+
);
|
513
|
+
"isa" = "PBXVariantGroup";
|
514
|
+
"name" = "InfoPlist.strings";
|
515
|
+
"sourceTree" = "<group>";
|
516
|
+
};
|
517
|
+
"7165D45E146B4EA100DE2F0E" = {
|
518
|
+
"isa" = "PBXFileReference";
|
519
|
+
"lastKnownFileType" = "text.plist.strings";
|
520
|
+
"name" = "en";
|
521
|
+
"path" = "en.lproj/InfoPlist.strings";
|
522
|
+
"sourceTree" = "<group>";
|
523
|
+
};
|
524
|
+
"7165D45F146B4EA100DE2F0E" = {
|
525
|
+
"fileRef" = "7165D45D146B4EA100DE2F0E";
|
526
|
+
"isa" = "PBXBuildFile";
|
527
|
+
};
|
528
|
+
"7165D460146B4EA100DE2F0E" = {
|
529
|
+
"isa" = "PBXFileReference";
|
530
|
+
"lastKnownFileType" = "sourcecode.c.objc";
|
531
|
+
"path" = "main.m";
|
532
|
+
"sourceTree" = "<group>";
|
533
|
+
};
|
534
|
+
"7165D461146B4EA100DE2F0E" = {
|
535
|
+
"fileRef" = "7165D460146B4EA100DE2F0E";
|
536
|
+
"isa" = "PBXBuildFile";
|
537
|
+
};
|
538
|
+
"7165D462146B4EA100DE2F0E" = {
|
539
|
+
"isa" = "PBXFileReference";
|
540
|
+
"lastKnownFileType" = "sourcecode.c.h";
|
541
|
+
"path" = "TestProject-Prefix.pch";
|
542
|
+
"sourceTree" = "<group>";
|
543
|
+
};
|
544
|
+
"7165D463146B4EA100DE2F0E" = {
|
545
|
+
"isa" = "PBXFileReference";
|
546
|
+
"lastKnownFileType" = "sourcecode.c.h";
|
547
|
+
"path" = "AppDelegate.h";
|
548
|
+
"sourceTree" = "<group>";
|
549
|
+
};
|
550
|
+
"7165D464146B4EA100DE2F0E" = {
|
551
|
+
"isa" = "PBXFileReference";
|
552
|
+
"lastKnownFileType" = "sourcecode.c.objc";
|
553
|
+
"path" = "AppDelegate.m";
|
554
|
+
"sourceTree" = "<group>";
|
555
|
+
};
|
556
|
+
"7165D465146B4EA100DE2F0E" = {
|
557
|
+
"fileRef" = "7165D464146B4EA100DE2F0E";
|
558
|
+
"isa" = "PBXBuildFile";
|
559
|
+
};
|
560
|
+
"7165D466146B4EA100DE2F0E" = {
|
561
|
+
"buildActionMask" = "2147483647";
|
562
|
+
"files" = (
|
563
|
+
"7147F920153E34F900763224",
|
564
|
+
"7147F923153E34F900763224"
|
565
|
+
);
|
566
|
+
"isa" = "PBXSourcesBuildPhase";
|
567
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
568
|
+
};
|
569
|
+
"7165D467146B4EA100DE2F0E" = {
|
570
|
+
"buildActionMask" = "2147483647";
|
571
|
+
"files" = (
|
572
|
+
"7165D46D146B4EA100DE2F0E",
|
573
|
+
"7165D46E146B4EA100DE2F0E",
|
574
|
+
"7165D46F146B4EA100DE2F0E"
|
575
|
+
);
|
576
|
+
"isa" = "PBXFrameworksBuildPhase";
|
577
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
578
|
+
};
|
579
|
+
"7165D468146B4EA100DE2F0E" = {
|
580
|
+
"buildActionMask" = "2147483647";
|
581
|
+
"files" = (
|
582
|
+
"7147F921153E34F900763224",
|
583
|
+
"7147F922153E34F900763224"
|
584
|
+
);
|
585
|
+
"isa" = "PBXResourcesBuildPhase";
|
586
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
587
|
+
};
|
588
|
+
"7165D469146B4EA100DE2F0E" = {
|
589
|
+
"buildActionMask" = "2147483647";
|
590
|
+
"files" = (
|
591
|
+
|
592
|
+
);
|
593
|
+
"inputPaths" = (
|
594
|
+
|
595
|
+
);
|
596
|
+
"isa" = "PBXShellScriptBuildPhase";
|
597
|
+
"outputPaths" = (
|
598
|
+
|
599
|
+
);
|
600
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
601
|
+
"shellPath" = "/bin/sh";
|
602
|
+
"shellScript" = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
|
603
|
+
};
|
604
|
+
"7165D46A146B4EA100DE2F0E" = {
|
605
|
+
"buildConfigurationList" = "7165D480146B4EA100DE2F0E";
|
606
|
+
"buildPhases" = (
|
607
|
+
"7165D466146B4EA100DE2F0E",
|
608
|
+
"7165D467146B4EA100DE2F0E",
|
609
|
+
"7165D468146B4EA100DE2F0E",
|
610
|
+
"7165D469146B4EA100DE2F0E"
|
611
|
+
);
|
612
|
+
"buildRules" = (
|
613
|
+
|
614
|
+
);
|
615
|
+
"dependencies" = (
|
616
|
+
"7165D471146B4EA100DE2F0E"
|
617
|
+
);
|
618
|
+
"isa" = "PBXNativeTarget";
|
619
|
+
"name" = "LogicTests";
|
620
|
+
"productName" = "TestProjectTests";
|
621
|
+
"productReference" = "7165D46B146B4EA100DE2F0E";
|
622
|
+
"productType" = "com.apple.product-type.bundle";
|
623
|
+
};
|
624
|
+
"7165D46B146B4EA100DE2F0E" = {
|
625
|
+
"explicitFileType" = "wrapper.cfbundle";
|
626
|
+
"includeInIndex" = "0";
|
627
|
+
"isa" = "PBXFileReference";
|
628
|
+
"path" = "LogicTests.octest";
|
629
|
+
"sourceTree" = "BUILT_PRODUCTS_DIR";
|
630
|
+
};
|
631
|
+
"7165D46C146B4EA100DE2F0E" = {
|
632
|
+
"isa" = "PBXFileReference";
|
633
|
+
"lastKnownFileType" = "wrapper.framework";
|
634
|
+
"name" = "SenTestingKit.framework";
|
635
|
+
"path" = "Library/Frameworks/SenTestingKit.framework";
|
636
|
+
"sourceTree" = "DEVELOPER_DIR";
|
637
|
+
};
|
638
|
+
"7165D46D146B4EA100DE2F0E" = {
|
639
|
+
"fileRef" = "7165D46C146B4EA100DE2F0E";
|
640
|
+
"isa" = "PBXBuildFile";
|
641
|
+
};
|
642
|
+
"7165D46E146B4EA100DE2F0E" = {
|
643
|
+
"fileRef" = "7165D454146B4EA100DE2F0E";
|
644
|
+
"isa" = "PBXBuildFile";
|
645
|
+
};
|
646
|
+
"7165D46F146B4EA100DE2F0E" = {
|
647
|
+
"fileRef" = "7165D456146B4EA100DE2F0E";
|
648
|
+
"isa" = "PBXBuildFile";
|
649
|
+
};
|
650
|
+
"7165D470146B4EA100DE2F0E" = {
|
651
|
+
"containerPortal" = "7165D447146B4EA100DE2F0E";
|
652
|
+
"isa" = "PBXContainerItemProxy";
|
653
|
+
"proxyType" = "1";
|
654
|
+
"remoteGlobalIDString" = "7165D44F146B4EA100DE2F0E";
|
655
|
+
"remoteInfo" = "TestProject";
|
656
|
+
};
|
657
|
+
"7165D471146B4EA100DE2F0E" = {
|
658
|
+
"isa" = "PBXTargetDependency";
|
659
|
+
"target" = "7165D44F146B4EA100DE2F0E";
|
660
|
+
"targetProxy" = "7165D470146B4EA100DE2F0E";
|
661
|
+
};
|
662
|
+
"7165D47B146B4EA100DE2F0E" = {
|
663
|
+
"buildSettings" = {
|
664
|
+
"ALWAYS_SEARCH_USER_PATHS" = "NO";
|
665
|
+
"ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
|
666
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
667
|
+
"COPY_PHASE_STRIP" = "NO";
|
668
|
+
"GCC_C_LANGUAGE_STANDARD" = "gnu99";
|
669
|
+
"GCC_DYNAMIC_NO_PIC" = "NO";
|
670
|
+
"GCC_OPTIMIZATION_LEVEL" = "0";
|
671
|
+
"GCC_PREPROCESSOR_DEFINITIONS" = (
|
672
|
+
"DEBUG=1",
|
673
|
+
"$(inherited)"
|
674
|
+
);
|
675
|
+
"GCC_SYMBOLS_PRIVATE_EXTERN" = "NO";
|
676
|
+
"GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
|
677
|
+
"GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
|
678
|
+
"GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
|
679
|
+
"GCC_WARN_UNUSED_VARIABLE" = "YES";
|
680
|
+
"IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
|
681
|
+
"SDKROOT" = "iphoneos";
|
682
|
+
"TARGETED_DEVICE_FAMILY" = "1,2";
|
683
|
+
};
|
684
|
+
"isa" = "XCBuildConfiguration";
|
685
|
+
"name" = "Debug";
|
686
|
+
};
|
687
|
+
"7165D47C146B4EA100DE2F0E" = {
|
688
|
+
"buildSettings" = {
|
689
|
+
"ALWAYS_SEARCH_USER_PATHS" = "NO";
|
690
|
+
"ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
|
691
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
692
|
+
"COPY_PHASE_STRIP" = "YES";
|
693
|
+
"GCC_C_LANGUAGE_STANDARD" = "gnu99";
|
694
|
+
"GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
|
695
|
+
"GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
|
696
|
+
"GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
|
697
|
+
"GCC_WARN_UNUSED_VARIABLE" = "YES";
|
698
|
+
"IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
|
699
|
+
"OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
|
700
|
+
"SDKROOT" = "iphoneos";
|
701
|
+
"TARGETED_DEVICE_FAMILY" = "1,2";
|
702
|
+
"VALIDATE_PRODUCT" = "YES";
|
703
|
+
};
|
704
|
+
"isa" = "XCBuildConfiguration";
|
705
|
+
"name" = "Release";
|
706
|
+
};
|
707
|
+
"7165D47D146B4EA100DE2F0E" = {
|
708
|
+
"buildConfigurations" = (
|
709
|
+
"7165D47E146B4EA100DE2F0E",
|
710
|
+
"7165D47F146B4EA100DE2F0E"
|
711
|
+
);
|
712
|
+
"defaultConfigurationIsVisible" = "0";
|
713
|
+
"defaultConfigurationName" = "Release";
|
714
|
+
"isa" = "XCConfigurationList";
|
715
|
+
};
|
716
|
+
"7165D47E146B4EA100DE2F0E" = {
|
717
|
+
"buildSettings" = {
|
718
|
+
"GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
|
719
|
+
"GCC_PREFIX_HEADER" = "TestProject/TestProject-Prefix.pch";
|
720
|
+
"INFOPLIST_FILE" = "TestProject/TestProject-Info.plist";
|
721
|
+
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
722
|
+
"WRAPPER_EXTENSION" = "app";
|
723
|
+
};
|
724
|
+
"isa" = "XCBuildConfiguration";
|
725
|
+
"name" = "Debug";
|
726
|
+
};
|
727
|
+
"7165D47F146B4EA100DE2F0E" = {
|
728
|
+
"buildSettings" = {
|
729
|
+
"GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
|
730
|
+
"GCC_PREFIX_HEADER" = "TestProject/TestProject-Prefix.pch";
|
731
|
+
"INFOPLIST_FILE" = "TestProject/TestProject-Info.plist";
|
732
|
+
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
733
|
+
"WRAPPER_EXTENSION" = "app";
|
734
|
+
};
|
735
|
+
"isa" = "XCBuildConfiguration";
|
736
|
+
"name" = "Release";
|
737
|
+
};
|
738
|
+
"7165D480146B4EA100DE2F0E" = {
|
739
|
+
"buildConfigurations" = (
|
740
|
+
"7165D481146B4EA100DE2F0E",
|
741
|
+
"7165D482146B4EA100DE2F0E"
|
742
|
+
);
|
743
|
+
"defaultConfigurationIsVisible" = "0";
|
744
|
+
"defaultConfigurationName" = "Release";
|
745
|
+
"isa" = "XCConfigurationList";
|
746
|
+
};
|
747
|
+
"7165D481146B4EA100DE2F0E" = {
|
748
|
+
"buildSettings" = {
|
749
|
+
"BUNDLE_LOADER" = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
|
750
|
+
"FRAMEWORK_SEARCH_PATHS" = (
|
751
|
+
"$(SDKROOT)/Developer/Library/Frameworks",
|
752
|
+
"$(DEVELOPER_LIBRARY_DIR)/Frameworks"
|
753
|
+
);
|
754
|
+
"GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
|
755
|
+
"GCC_PREFIX_HEADER" = "TestProject/TestProject-Prefix.pch";
|
756
|
+
"INFOPLIST_FILE" = "LogicTests/TestProjectTests-Info.plist";
|
757
|
+
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
758
|
+
"TEST_HOST" = "";
|
759
|
+
"WRAPPER_EXTENSION" = "octest";
|
760
|
+
};
|
761
|
+
"isa" = "XCBuildConfiguration";
|
762
|
+
"name" = "Debug";
|
763
|
+
};
|
764
|
+
"7165D482146B4EA100DE2F0E" = {
|
765
|
+
"buildSettings" = {
|
766
|
+
"BUNDLE_LOADER" = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
|
767
|
+
"FRAMEWORK_SEARCH_PATHS" = (
|
768
|
+
"$(SDKROOT)/Developer/Library/Frameworks",
|
769
|
+
"$(DEVELOPER_LIBRARY_DIR)/Frameworks"
|
770
|
+
);
|
771
|
+
"GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
|
772
|
+
"GCC_PREFIX_HEADER" = "TestProject/TestProject-Prefix.pch";
|
773
|
+
"INFOPLIST_FILE" = "LogicTests/TestProjectTests-Info.plist";
|
774
|
+
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
775
|
+
"TEST_HOST" = "$(BUNDLE_LOADER)";
|
776
|
+
"WRAPPER_EXTENSION" = "octest";
|
777
|
+
};
|
778
|
+
"isa" = "XCBuildConfiguration";
|
779
|
+
"name" = "Release";
|
780
|
+
};
|
781
|
+
"9DD0F856744EE2F634D435BF" = {
|
782
|
+
"buildSettings" = {
|
783
|
+
"ALWAYS_SEARCH_USER_PATHS" = "NO";
|
784
|
+
"ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
|
785
|
+
"CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
|
786
|
+
"COPY_PHASE_STRIP" = "YES";
|
787
|
+
"FRAMEWORK_SEARCH_PATHS" = (
|
788
|
+
"$(inherited)",
|
789
|
+
"\"$(SRCROOT)/Vendor/Frameworks\""
|
790
|
+
);
|
791
|
+
"GCC_C_LANGUAGE_STANDARD" = "gnu99";
|
792
|
+
"GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
|
793
|
+
"GCC_PREFIX_HEADER" = "Specs/Specs-Prefix.pch";
|
794
|
+
"GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
|
795
|
+
"GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
|
796
|
+
"GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
|
797
|
+
"INFOPLIST_FILE" = "Specs/Specs-Info.plist";
|
798
|
+
"IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
|
799
|
+
"OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
|
800
|
+
"OTHER_LDFLAGS" = (
|
801
|
+
"-ObjC",
|
802
|
+
"-all_load",
|
803
|
+
"-lstdc++"
|
804
|
+
);
|
805
|
+
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
806
|
+
"SDKROOT" = "iphoneos";
|
807
|
+
"TARGETED_DEVICE_FAMILY" = "1,2";
|
808
|
+
"VALIDATE_PRODUCT" = "YES";
|
809
|
+
"WRAPPER_EXTENSION" = "app";
|
810
|
+
};
|
811
|
+
"isa" = "XCBuildConfiguration";
|
812
|
+
"name" = "Debug";
|
813
|
+
};
|
814
|
+
"C93D39FEB82CC9442CE94908" = {
|
815
|
+
"buildConfigurations" = (
|
816
|
+
"9DD0F856744EE2F634D435BF",
|
817
|
+
"F3367A702467F6782D255B43"
|
818
|
+
);
|
819
|
+
"defaultConfigurationIsVisible" = "0";
|
820
|
+
"defaultConfigurationName" = "";
|
821
|
+
"isa" = "XCConfigurationList";
|
822
|
+
};
|
823
|
+
"D111C141DDDD1009668E310E" = {
|
824
|
+
"buildConfigurationList" = "C93D39FEB82CC9442CE94908";
|
825
|
+
"buildPhases" = (
|
826
|
+
"DDF08A769D3B5B518C166AC6",
|
827
|
+
"57F7ADA229AE63B1ADB8DA79",
|
828
|
+
"FEE9A62A759B1FFE1A905731"
|
829
|
+
);
|
830
|
+
"buildRules" = (
|
831
|
+
|
832
|
+
);
|
833
|
+
"dependencies" = (
|
834
|
+
|
835
|
+
);
|
836
|
+
"isa" = "PBXNativeTarget";
|
837
|
+
"name" = "Specs";
|
838
|
+
"productName" = "Specs";
|
839
|
+
"productType" = "com.apple.product-type.application";
|
840
|
+
};
|
841
|
+
"DDF08A769D3B5B518C166AC6" = {
|
842
|
+
"buildActionMask" = "2147483647";
|
843
|
+
"files" = (
|
844
|
+
|
845
|
+
);
|
846
|
+
"isa" = "PBXSourcesBuildPhase";
|
847
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
848
|
+
};
|
849
|
+
"F3367A702467F6782D255B43" = {
|
850
|
+
"buildSettings" = {
|
851
|
+
"ALWAYS_SEARCH_USER_PATHS" = "NO";
|
852
|
+
"ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
|
853
|
+
"CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
|
854
|
+
"COPY_PHASE_STRIP" = "YES";
|
855
|
+
"FRAMEWORK_SEARCH_PATHS" = (
|
856
|
+
"$(inherited)",
|
857
|
+
"\"$(SRCROOT)/Vendor/Frameworks\""
|
858
|
+
);
|
859
|
+
"GCC_C_LANGUAGE_STANDARD" = "gnu99";
|
860
|
+
"GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
|
861
|
+
"GCC_PREFIX_HEADER" = "Specs/Specs-Prefix.pch";
|
862
|
+
"GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
|
863
|
+
"GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
|
864
|
+
"GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
|
865
|
+
"INFOPLIST_FILE" = "Specs/Specs-Info.plist";
|
866
|
+
"IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
|
867
|
+
"OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
|
868
|
+
"OTHER_LDFLAGS" = (
|
869
|
+
"-ObjC",
|
870
|
+
"-all_load",
|
871
|
+
"-lstdc++"
|
872
|
+
);
|
873
|
+
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
874
|
+
"SDKROOT" = "iphoneos";
|
875
|
+
"TARGETED_DEVICE_FAMILY" = "1,2";
|
876
|
+
"VALIDATE_PRODUCT" = "YES";
|
877
|
+
"WRAPPER_EXTENSION" = "app";
|
878
|
+
};
|
879
|
+
"isa" = "XCBuildConfiguration";
|
880
|
+
"name" = "Release";
|
881
|
+
};
|
882
|
+
"FD70EF95A64C6CF15FFAA614" = {
|
883
|
+
"fileRef" = "7165D456146B4EA100DE2F0E";
|
884
|
+
"isa" = "PBXBuildFile";
|
885
|
+
};
|
886
|
+
"FEE9A62A759B1FFE1A905731" = {
|
887
|
+
"buildActionMask" = "2147483647";
|
888
|
+
"files" = (
|
889
|
+
"2574D65B0D2FFDB5D0372B4A",
|
890
|
+
"FD70EF95A64C6CF15FFAA614",
|
891
|
+
"28C60920A77AB174A952864D"
|
892
|
+
);
|
893
|
+
"isa" = "PBXFrameworksBuildPhase";
|
894
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
895
|
+
};
|
896
|
+
"566BEB5DE68C5E88642EF09E" = {
|
897
|
+
"isa" = "PBXNativeTarget";
|
898
|
+
"buildConfigurationList" = "4E978B8B93F56FB06E5BFBCA";
|
899
|
+
"buildPhases" = (
|
900
|
+
"0EDFE5575605ACDF9AA1B804",
|
901
|
+
"EDC03EB77E9B48B88E3E054E",
|
902
|
+
"F01B10057811BCE7522626C5"
|
903
|
+
);
|
904
|
+
"buildRules" = (
|
905
|
+
|
906
|
+
);
|
907
|
+
"dependencies" = (
|
908
|
+
|
909
|
+
);
|
910
|
+
"name" = "Specs";
|
911
|
+
"productName" = "Specs";
|
912
|
+
"productReference" = "";
|
913
|
+
"productType" = "com.apple.product-type.application";
|
914
|
+
};
|
915
|
+
"4E978B8B93F56FB06E5BFBCA" = {
|
916
|
+
"isa" = "XCConfigurationList";
|
917
|
+
"buildConfigurations" = (
|
918
|
+
"5DD56BB92762B289DF3E48B5",
|
919
|
+
"36D643D000BCE3F365BECA4D"
|
920
|
+
);
|
921
|
+
"defaultConfigurationIsVisible" = "0";
|
922
|
+
"defaultConfigurationName" = "";
|
923
|
+
};
|
924
|
+
"717D8FDF4C30423AAB350467" = {
|
925
|
+
"isa" = "PBXFileReference";
|
926
|
+
"explicitFileType" = "wrapper.application";
|
927
|
+
"includeInIndex" = 0;
|
928
|
+
"path" = "Specs.app";
|
929
|
+
"sourceTree" = "BUILT_PRODUCTS_DIR";
|
930
|
+
};
|
931
|
+
"AC5709608A4B604B2A62F693" = {
|
932
|
+
"isa" = "PBXGroup";
|
933
|
+
"name" = "Specs";
|
934
|
+
"sourceTree" = "<group>";
|
935
|
+
"children" = (
|
936
|
+
"6EB49C59EFBEF56B01A23607"
|
937
|
+
);
|
938
|
+
};
|
939
|
+
"6EB49C59EFBEF56B01A23607" = {
|
940
|
+
"isa" = "PBXGroup";
|
941
|
+
"name" = "SupportingFiles";
|
942
|
+
"sourceTree" = "<group>";
|
943
|
+
"children" = (
|
944
|
+
"FC4692987FB55060D41DD399",
|
945
|
+
"1F07613D452161966AC98C1F",
|
946
|
+
"14178DD0049F392FE2B4AE9C",
|
947
|
+
"BDAED3EC56B5CE731E41706B"
|
948
|
+
);
|
949
|
+
};
|
950
|
+
"FC4692987FB55060D41DD399" = {
|
951
|
+
"isa" = "PBXFileReference";
|
952
|
+
"path" = "Specs/main.m";
|
953
|
+
"sourceTree" = "<group>";
|
954
|
+
"name" = "main.m";
|
955
|
+
};
|
956
|
+
"0EDFE5575605ACDF9AA1B804" = {
|
957
|
+
"isa" = "PBXSourcesBuildPhase";
|
958
|
+
"buildActionMask" = "2147483647";
|
959
|
+
"files" = (
|
960
|
+
"C53C4507C4848313D64EE1DA"
|
961
|
+
);
|
962
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
963
|
+
};
|
964
|
+
"C53C4507C4848313D64EE1DA" = {
|
965
|
+
"isa" = "PBXBuildFile";
|
966
|
+
"fileRef" = "FC4692987FB55060D41DD399";
|
967
|
+
};
|
968
|
+
"1F07613D452161966AC98C1F" = {
|
969
|
+
"isa" = "PBXFileReference";
|
970
|
+
"path" = "Specs/Specs-Info.plist";
|
971
|
+
"sourceTree" = "<group>";
|
972
|
+
"name" = "Specs-Info.plist";
|
973
|
+
};
|
974
|
+
"14178DD0049F392FE2B4AE9C" = {
|
975
|
+
"isa" = "PBXVariantGroup";
|
976
|
+
"children" = (
|
977
|
+
"E6753DC550573D143A9FEC12"
|
978
|
+
);
|
979
|
+
"name" = "InfoPlist.strings";
|
980
|
+
"sourceTree" = "<group>";
|
981
|
+
"path" = "Specs";
|
982
|
+
};
|
983
|
+
"E6753DC550573D143A9FEC12" = {
|
984
|
+
"isa" = "PBXFileReference";
|
985
|
+
"path" = "en.lproj/InfoPlist.strings";
|
986
|
+
"sourceTree" = "<group>";
|
987
|
+
"name" = "en";
|
988
|
+
};
|
989
|
+
"EDC03EB77E9B48B88E3E054E" = {
|
990
|
+
"isa" = "PBXResourcesBuildPhase";
|
991
|
+
"buildActionMask" = "2147483647";
|
992
|
+
"files" = (
|
993
|
+
"9C7D2C9F6D5E18CB216C01D9"
|
994
|
+
);
|
995
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
996
|
+
};
|
997
|
+
"9C7D2C9F6D5E18CB216C01D9" = {
|
998
|
+
"isa" = "PBXBuildFile";
|
999
|
+
"fileRef" = "14178DD0049F392FE2B4AE9C";
|
1000
|
+
};
|
1001
|
+
"BDAED3EC56B5CE731E41706B" = {
|
1002
|
+
"isa" = "PBXFileReference";
|
1003
|
+
"path" = "Specs/Specs-Prefix.pch";
|
1004
|
+
"sourceTree" = "<group>";
|
1005
|
+
"name" = "Specs-Prefix.pch";
|
1006
|
+
};
|
1007
|
+
"104BB96CB0BED4A4583BC461" = {
|
1008
|
+
"isa" = "PBXFileReference";
|
1009
|
+
"lastKnownFileType" = "wrapper.framework";
|
1010
|
+
"name" = "Cedar-iPhone.framework";
|
1011
|
+
"path" = "Vendor/Frameworks/Cedar-iPhone.framework";
|
1012
|
+
"sourceTree" = "<group>";
|
1013
|
+
};
|
1014
|
+
"F01B10057811BCE7522626C5" = {
|
1015
|
+
"isa" = "PBXFrameworksBuildPhase";
|
1016
|
+
"buildActionMask" = "2147483647";
|
1017
|
+
"files" = (
|
1018
|
+
"AD008D7235CB4B9B0E13DCD2",
|
1019
|
+
"2128AEA5484ED301AE0D3F47",
|
1020
|
+
"7D717CA9D357597EF1FF2774",
|
1021
|
+
"22AF45D4BE9DDDB3D6166425"
|
1022
|
+
);
|
1023
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
1024
|
+
};
|
1025
|
+
"AD008D7235CB4B9B0E13DCD2" = {
|
1026
|
+
"isa" = "PBXBuildFile";
|
1027
|
+
"fileRef" = "104BB96CB0BED4A4583BC461";
|
1028
|
+
};
|
1029
|
+
"2128AEA5484ED301AE0D3F47" = {
|
1030
|
+
"isa" = "PBXBuildFile";
|
1031
|
+
"fileRef" = "7165D454146B4EA100DE2F0E";
|
1032
|
+
};
|
1033
|
+
"7D717CA9D357597EF1FF2774" = {
|
1034
|
+
"isa" = "PBXBuildFile";
|
1035
|
+
"fileRef" = "7165D456146B4EA100DE2F0E";
|
1036
|
+
};
|
1037
|
+
"22AF45D4BE9DDDB3D6166425" = {
|
1038
|
+
"isa" = "PBXBuildFile";
|
1039
|
+
"fileRef" = "7165D458146B4EA100DE2F0E";
|
1040
|
+
};
|
1041
|
+
"5DD56BB92762B289DF3E48B5" = {
|
1042
|
+
"isa" = "XCBuildConfiguration";
|
1043
|
+
"buildSettings" = {
|
1044
|
+
"SDKROOT" = "iphoneos";
|
1045
|
+
"OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
|
1046
|
+
"TARGETED_DEVICE_FAMILY" = "1,2";
|
1047
|
+
"GCC_C_LANGUAGE_STANDARD" = "gnu99";
|
1048
|
+
"ALWAYS_SEARCH_USER_PATHS" = "NO";
|
1049
|
+
"GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
|
1050
|
+
"ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
|
1051
|
+
"GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
|
1052
|
+
"GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
|
1053
|
+
"CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
|
1054
|
+
"GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
|
1055
|
+
"VALIDATE_PRODUCT" = "YES";
|
1056
|
+
"IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
|
1057
|
+
"COPY_PHASE_STRIP" = "YES";
|
1058
|
+
"GCC_PREFIX_HEADER" = "Specs/Specs-Prefix.pch";
|
1059
|
+
"INFOPLIST_FILE" = "Specs/Specs-Info.plist";
|
1060
|
+
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
1061
|
+
"WRAPPER_EXTENSION" = "app";
|
1062
|
+
"OTHER_LDFLAGS" = "-ObjC -all_load -lstdc++";
|
1063
|
+
"FRAMEWORK_SEARCH_PATHS" = (
|
1064
|
+
"$(inherited)",
|
1065
|
+
"\"$(SRCROOT)/Vendor/Frameworks\""
|
1066
|
+
);
|
1067
|
+
};
|
1068
|
+
"name" = "Debug";
|
1069
|
+
};
|
1070
|
+
"36D643D000BCE3F365BECA4D" = {
|
1071
|
+
"isa" = "XCBuildConfiguration";
|
1072
|
+
"buildSettings" = {
|
1073
|
+
"SDKROOT" = "iphoneos";
|
1074
|
+
"OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
|
1075
|
+
"TARGETED_DEVICE_FAMILY" = "1,2";
|
1076
|
+
"GCC_C_LANGUAGE_STANDARD" = "gnu99";
|
1077
|
+
"ALWAYS_SEARCH_USER_PATHS" = "NO";
|
1078
|
+
"GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
|
1079
|
+
"ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
|
1080
|
+
"GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
|
1081
|
+
"GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
|
1082
|
+
"CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
|
1083
|
+
"GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
|
1084
|
+
"VALIDATE_PRODUCT" = "YES";
|
1085
|
+
"IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
|
1086
|
+
"COPY_PHASE_STRIP" = "YES";
|
1087
|
+
"GCC_PREFIX_HEADER" = "Specs/Specs-Prefix.pch";
|
1088
|
+
"INFOPLIST_FILE" = "Specs/Specs-Info.plist";
|
1089
|
+
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
1090
|
+
"WRAPPER_EXTENSION" = "app";
|
1091
|
+
"OTHER_LDFLAGS" = "-ObjC -all_load -lstdc++";
|
1092
|
+
"FRAMEWORK_SEARCH_PATHS" = (
|
1093
|
+
"$(inherited)",
|
1094
|
+
"\"$(SRCROOT)/Vendor/Frameworks\""
|
1095
|
+
);
|
1096
|
+
};
|
1097
|
+
"name" = "Release";
|
1098
|
+
};
|
1099
|
+
"42C6306B0C4EF0451E08B222" = {
|
1100
|
+
"isa" = "PBXGroup";
|
1101
|
+
"name" = "Vendor";
|
1102
|
+
"sourceTree" = "<group>";
|
1103
|
+
"children" = (
|
1104
|
+
"D39B9480FD496D3C6D3508E9",
|
1105
|
+
"B079E3641FF410F6A159725B"
|
1106
|
+
);
|
1107
|
+
};
|
1108
|
+
"D39B9480FD496D3C6D3508E9" = {
|
1109
|
+
"isa" = "PBXGroup";
|
1110
|
+
"name" = "EGORefreshTableHeaderView";
|
1111
|
+
"sourceTree" = "<group>";
|
1112
|
+
"children" = (
|
1113
|
+
"944B5CA9AE913BB9435DCF96",
|
1114
|
+
"F68081D13A02BD73013E2083"
|
1115
|
+
);
|
1116
|
+
};
|
1117
|
+
"944B5CA9AE913BB9435DCF96" = {
|
1118
|
+
"isa" = "PBXFileReference";
|
1119
|
+
"path" = "Vendor/EGORefreshTableHeaderView/EGORefreshTableHeaderView.m";
|
1120
|
+
"sourceTree" = "<group>";
|
1121
|
+
"name" = "EGORefreshTableHeaderView.m";
|
1122
|
+
};
|
1123
|
+
"F68081D13A02BD73013E2083" = {
|
1124
|
+
"isa" = "PBXFileReference";
|
1125
|
+
"path" = "Vendor/EGORefreshTableHeaderView/EGORefreshTableHeaderView.h";
|
1126
|
+
"sourceTree" = "<group>";
|
1127
|
+
"name" = "EGORefreshTableHeaderView.h";
|
1128
|
+
};
|
1129
|
+
"896B34DEDCB267B6A64573D2" = {
|
1130
|
+
"isa" = "PBXBuildFile";
|
1131
|
+
"fileRef" = "944B5CA9AE913BB9435DCF96";
|
1132
|
+
};
|
1133
|
+
"B079E3641FF410F6A159725B" = {
|
1134
|
+
"isa" = "PBXGroup";
|
1135
|
+
"name" = "Reachability";
|
1136
|
+
"sourceTree" = "<group>";
|
1137
|
+
"children" = (
|
1138
|
+
"E85A7A3A78D90CAC47250A92",
|
1139
|
+
"981B82CFE1543552FDCAED28"
|
1140
|
+
);
|
1141
|
+
};
|
1142
|
+
"E85A7A3A78D90CAC47250A92" = {
|
1143
|
+
"isa" = "PBXFileReference";
|
1144
|
+
"path" = "Vendor/Reachability/Reachability.m";
|
1145
|
+
"sourceTree" = "<group>";
|
1146
|
+
"name" = "Reachability.m";
|
1147
|
+
};
|
1148
|
+
"981B82CFE1543552FDCAED28" = {
|
1149
|
+
"isa" = "PBXFileReference";
|
1150
|
+
"path" = "Vendor/Reachability/Reachability.h";
|
1151
|
+
"sourceTree" = "<group>";
|
1152
|
+
"name" = "Reachability.h";
|
1153
|
+
};
|
1154
|
+
"AB9B40F7D71EA8F3672A520C" = {
|
1155
|
+
"isa" = "PBXBuildFile";
|
1156
|
+
"fileRef" = "E85A7A3A78D90CAC47250A92";
|
1157
|
+
};
|
1158
|
+
"7CFB5CB764A4A1DFF2139CB1" = {
|
1159
|
+
"isa" = "PBXBuildFile";
|
1160
|
+
"fileRef" = "70F2C1C35C0D60D44412B5D5";
|
1161
|
+
};
|
1162
|
+
"65AB32971E4767F5B3F12FF7" = {
|
1163
|
+
"isa" = "PBXNativeTarget";
|
1164
|
+
"buildConfigurationList" = "321235C2FF8A1C5D8F0BF226";
|
1165
|
+
"buildPhases" = (
|
1166
|
+
"535D4B8B1C8252BDF5D0555D",
|
1167
|
+
"E137863310846ED24931C695"
|
1168
|
+
);
|
1169
|
+
"buildRules" = (
|
1170
|
+
|
1171
|
+
);
|
1172
|
+
"dependencies" = (
|
1173
|
+
|
1174
|
+
);
|
1175
|
+
"name" = "Library";
|
1176
|
+
"productName" = "";
|
1177
|
+
"productReference" = "";
|
1178
|
+
"productType" = "com.apple.product-type.bundle";
|
1179
|
+
};
|
1180
|
+
"321235C2FF8A1C5D8F0BF226" = {
|
1181
|
+
"isa" = "XCConfigurationList";
|
1182
|
+
"buildConfigurations" = (
|
1183
|
+
"904FB8B8EA1BE2A409F5B892"
|
1184
|
+
);
|
1185
|
+
"defaultConfigurationIsVisible" = "0";
|
1186
|
+
"defaultConfigurationName" = "";
|
1187
|
+
};
|
1188
|
+
"535D4B8B1C8252BDF5D0555D" = {
|
1189
|
+
"isa" = "PBXSourcesBuildPhase";
|
1190
|
+
"buildActionMask" = "2147483647";
|
1191
|
+
"files" = (
|
1192
|
+
"80089621450124F06B08F412"
|
1193
|
+
);
|
1194
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
1195
|
+
};
|
1196
|
+
"80089621450124F06B08F412" = {
|
1197
|
+
"isa" = "PBXBuildFile";
|
1198
|
+
"fileRef" = "7165D464146B4EA100DE2F0E";
|
1199
|
+
};
|
1200
|
+
"E137863310846ED24931C695" = {
|
1201
|
+
"isa" = "PBXHeadersBuildPhase";
|
1202
|
+
"buildActionMask" = "2147483647";
|
1203
|
+
"files" = (
|
1204
|
+
"3953DBAC25E75B57D6DED522",
|
1205
|
+
"B5B10BA312BA1DC0044F43D3"
|
1206
|
+
);
|
1207
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
1208
|
+
};
|
1209
|
+
"3953DBAC25E75B57D6DED522" = {
|
1210
|
+
"isa" = "PBXBuildFile";
|
1211
|
+
"fileRef" = "7165D463146B4EA100DE2F0E";
|
1212
|
+
"settings" = {
|
1213
|
+
"ATTRIBUTES" = (
|
1214
|
+
"Public"
|
1215
|
+
);
|
1216
|
+
};
|
1217
|
+
};
|
1218
|
+
"B5B10BA312BA1DC0044F43D3" = {
|
1219
|
+
"isa" = "PBXBuildFile";
|
1220
|
+
"fileRef" = "7165D462146B4EA100DE2F0E";
|
1221
|
+
};
|
1222
|
+
"904FB8B8EA1BE2A409F5B892" = {
|
1223
|
+
"isa" = "XCBuildConfiguration";
|
1224
|
+
"buildSettings" = {
|
1225
|
+
"SDKROOT" = "iphoneos";
|
1226
|
+
"OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
|
1227
|
+
"TARGETED_DEVICE_FAMILY" = "1,2";
|
1228
|
+
"GCC_C_LANGUAGE_STANDARD" = "gnu99";
|
1229
|
+
"ALWAYS_SEARCH_USER_PATHS" = "NO";
|
1230
|
+
"GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
|
1231
|
+
"ARCHS" = "$(ARCHS_STANDARD_32_BIT) armv6";
|
1232
|
+
"GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
|
1233
|
+
"GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
|
1234
|
+
"CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
|
1235
|
+
"GCC_PRECOMPILE_PREFIX_HEADER" = "NO";
|
1236
|
+
"VALIDATE_PRODUCT" = "YES";
|
1237
|
+
"IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
|
1238
|
+
"COPY_PHASE_STRIP" = "YES";
|
1239
|
+
"GCC_PREFIX_HEADER" = "";
|
1240
|
+
"INFOPLIST_FILE" = "";
|
1241
|
+
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
1242
|
+
"WRAPPER_EXTENSION" = "framework";
|
1243
|
+
"DEAD_CODE_STRIPPING" = "NO";
|
1244
|
+
"DEBUG_INFORMATION_FORMAT" = "dwarf-with-dsym";
|
1245
|
+
"GCC_ENABLE_OBJC_EXCEPTIONS" = "YES";
|
1246
|
+
"GCC_GENERATE_DEBUGGING_SYMBOLS" = "NO";
|
1247
|
+
"GCC_WARN_64_TO_32_BIT_CONVERSION" = "YES";
|
1248
|
+
"INSTALL_PATH" = "$(LOCAL_LIBRARY_DIR)/Bundles";
|
1249
|
+
"LINK_WITH_STANDARD_LIBRARIES" = "NO";
|
1250
|
+
"MACH_O_TYPE" = "mh_object";
|
1251
|
+
"MACOSX_DEPLOYMENT_TARGET" = "10.7";
|
1252
|
+
"VALID_ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
|
1253
|
+
};
|
1254
|
+
"name" = "Release";
|
1255
|
+
};
|
1256
|
+
"58214545BF6DA702353B3F50" = {
|
1257
|
+
"isa" = "PBXAggregateTarget";
|
1258
|
+
"buildConfigurationList" = "31C3DED5AEA103F02B771419";
|
1259
|
+
"buildPhases" = (
|
1260
|
+
"5F4CA7851E60DB3BE876D033"
|
1261
|
+
);
|
1262
|
+
"dependencies" = (
|
1263
|
+
|
1264
|
+
);
|
1265
|
+
"name" = "Universal Library";
|
1266
|
+
"productName" = "Univeral Library";
|
1267
|
+
};
|
1268
|
+
"31C3DED5AEA103F02B771419" = {
|
1269
|
+
"isa" = "XCConfigurationList";
|
1270
|
+
"buildConfigurations" = (
|
1271
|
+
"C4A2F7E596653FE7E40DEEA4"
|
1272
|
+
);
|
1273
|
+
"defaultConfigurationIsVisible" = "0";
|
1274
|
+
"defaultConfigurationName" = "";
|
1275
|
+
};
|
1276
|
+
"3AF50A60F27F1ED34A2F6E1F" = {
|
1277
|
+
"isa" = "PBXTargetDependency";
|
1278
|
+
"target" = "65AB32971E4767F5B3F12FF7";
|
1279
|
+
"targetProxy" = "E22011CEAD881762DA139A01";
|
1280
|
+
};
|
1281
|
+
"E22011CEAD881762DA139A01" = {
|
1282
|
+
"isa" = "PBXContainerItemProxy";
|
1283
|
+
"containerPortal" = "7165D447146B4EA100DE2F0E";
|
1284
|
+
"proxyType" = 1;
|
1285
|
+
"remoteGlobalIDString" = "65AB32971E4767F5B3F12FF7";
|
1286
|
+
"remoteInfo" = "Library";
|
1287
|
+
};
|
1288
|
+
"C4A2F7E596653FE7E40DEEA4" = {
|
1289
|
+
"isa" = "XCBuildConfiguration";
|
1290
|
+
"buildSettings" = {
|
1291
|
+
"SDKROOT" = "iphoneos";
|
1292
|
+
"OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
|
1293
|
+
"TARGETED_DEVICE_FAMILY" = "1,2";
|
1294
|
+
"GCC_C_LANGUAGE_STANDARD" = "gnu99";
|
1295
|
+
"ALWAYS_SEARCH_USER_PATHS" = "NO";
|
1296
|
+
"GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
|
1297
|
+
"ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
|
1298
|
+
"GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
|
1299
|
+
"GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
|
1300
|
+
"CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
|
1301
|
+
"GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
|
1302
|
+
"VALIDATE_PRODUCT" = "YES";
|
1303
|
+
"IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
|
1304
|
+
"COPY_PHASE_STRIP" = "YES";
|
1305
|
+
"GCC_PREFIX_HEADER" = "Release/Release-Prefix.pch";
|
1306
|
+
"INFOPLIST_FILE" = "Release/Release-Info.plist";
|
1307
|
+
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
1308
|
+
"WRAPPER_EXTENSION" = "app";
|
1309
|
+
};
|
1310
|
+
"name" = "Release";
|
1311
|
+
};
|
1312
|
+
"5F4CA7851E60DB3BE876D033" = {
|
1313
|
+
"isa" = "PBXShellScriptBuildPhase";
|
1314
|
+
"buildActionMask" = "2147483647";
|
1315
|
+
"files" = (
|
1316
|
+
|
1317
|
+
);
|
1318
|
+
"inputPaths" = (
|
1319
|
+
|
1320
|
+
);
|
1321
|
+
"outputPaths" = (
|
1322
|
+
|
1323
|
+
);
|
1324
|
+
"shellPath" = "/bin/sh";
|
1325
|
+
"shellScript" = "# Sets the target folders and the final framework product.\nFMK_NAME=Library\nFMK_VERSION=A\n\n# Install dir will be the final output to the framework.\n# The following line create it in the root folder of the current project.\nINSTALL_DIR=${SRCROOT}/Products/${FMK_NAME}.framework\n\n# Working dir will be deleted after the framework creation.\nWRK_DIR=build\nDEVICE_DIR=${WRK_DIR}/Release-iphoneos/${FMK_NAME}.framework\nSIMULATOR_DIR=${WRK_DIR}/Release-iphonesimulator/${FMK_NAME}.framework\n\n# Building both architectures.\nxcodebuild -configuration \"Release\" -target \"${FMK_NAME}\" -sdk iphoneos\nxcodebuild -configuration \"Release\" -target \"${FMK_NAME}\" -sdk iphonesimulator\n\n# Cleaning the oldest.\nif [ -d \"${INSTALL_DIR}\" ]\nthen\nrm -rf \"${INSTALL_DIR}\"\nfi\n\n# Creates and renews the final product folder.\nmkdir -p \"${INSTALL_DIR}\"\nmkdir -p \"${INSTALL_DIR}/Versions\"\nmkdir -p \"${INSTALL_DIR}/Versions/${FMK_VERSION}\"\nmkdir -p \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources\"\nmkdir -p \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Headers\"\n\n# Creates the internal links.\n# It MUST uses relative path, otherwise will not work when the folder is copied/moved.\nln -s \"${FMK_VERSION}\" \"${INSTALL_DIR}/Versions/Current\"\nln -s \"Versions/Current/Headers\" \"${INSTALL_DIR}/Headers\"\nln -s \"Versions/Current/Resources\" \"${INSTALL_DIR}/Resources\"\nln -s \"Versions/Current/${FMK_NAME}\" \"${INSTALL_DIR}/${FMK_NAME}\"\n\n# Copies the headers and resources files to the final product folder.\ncp -R \"${DEVICE_DIR}/Headers/\" \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Headers/\"\ncp -R \"${DEVICE_DIR}/\" \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources/\"\n\n# Removes the binary and header from the resources folder.\nrm -r \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources/Headers\" \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources/${FMK_NAME}\"\n\n# Uses the Lipo Tool to merge both binary files (i386 + armv6/armv7) into one Universal final product.\nlipo -create \"${DEVICE_DIR}/${FMK_NAME}\" \"${SIMULATOR_DIR}/${FMK_NAME}\" -output \"${INSTALL_DIR}/Versions/${FMK_VERSION}/${FMK_NAME}\"\n\nrm -r \"${WRK_DIR}\"";
|
1326
|
+
"runOnlyForDeploymentPostprocessing" = "0";
|
1327
|
+
};
|
1328
|
+
};
|
1329
|
+
"rootObject" = "7165D447146B4EA100DE2F0E";
|
1330
|
+
}
|