xcoder 0.1.2 → 0.1.3
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.
- data/Gemfile +1 -0
- data/README.md +2 -0
- data/Rakefile +9 -0
- data/lib/xcode/build_file.rb +4 -2
- data/lib/xcode/build_phase.rb +45 -3
- data/lib/xcode/builder.rb +9 -4
- data/lib/xcode/buildfile.rb +1 -1
- data/lib/xcode/configuration.rb +1 -1
- data/lib/xcode/file_reference.rb +42 -1
- data/lib/xcode/group.rb +81 -3
- data/lib/xcode/keychain.rb +20 -14
- data/lib/xcode/project.rb +37 -6
- data/lib/xcode/registry.rb +14 -0
- data/lib/xcode/target.rb +6 -6
- data/lib/xcode/version.rb +1 -1
- data/spec/Provisioning/Test.keychain +0 -0
- data/spec/TestProject/TestProject.xcodeproj/project.pbxproj +556 -801
- data/spec/build_phase_spec.rb +28 -0
- data/spec/builder_spec.rb +2 -1
- data/spec/group_spec.rb +54 -1
- data/spec/integration/cedar_install_spec.rb +15 -40
- data/spec/keychain_spec.rb +13 -5
- data/spec/project_spec.rb +12 -0
- metadata +15 -12
data/lib/xcode/project.rb
CHANGED
@@ -38,11 +38,26 @@ module Xcode
|
|
38
38
|
# Parse the Xcode project file and create the registry
|
39
39
|
|
40
40
|
@registry = parse_pbxproj
|
41
|
-
@project = Xcode::Resource.new registry.root, @registry
|
41
|
+
@project = Xcode::Resource.new @registry.root, @registry
|
42
42
|
|
43
43
|
@schemes = parse_schemes
|
44
44
|
end
|
45
45
|
|
46
|
+
|
47
|
+
#
|
48
|
+
# @return [Fixnum] the project's object version
|
49
|
+
#
|
50
|
+
def object_version
|
51
|
+
@registry.object_version
|
52
|
+
end
|
53
|
+
|
54
|
+
#
|
55
|
+
# @return [Fixnum] the project's archive version
|
56
|
+
#
|
57
|
+
def archive_version
|
58
|
+
@registry.archive_version
|
59
|
+
end
|
60
|
+
|
46
61
|
#
|
47
62
|
# Returns the main group of the project where all the files reside.
|
48
63
|
#
|
@@ -77,7 +92,9 @@ module Xcode
|
|
77
92
|
#
|
78
93
|
# @param [String] name the group name to find/create
|
79
94
|
#
|
80
|
-
def group(name,&block)
|
95
|
+
def group(name,options = {},&block)
|
96
|
+
# By default create missing groups along the way
|
97
|
+
options = { :create => true }.merge(options)
|
81
98
|
|
82
99
|
current_group = @project.main_group
|
83
100
|
|
@@ -86,11 +103,17 @@ module Xcode
|
|
86
103
|
|
87
104
|
name.split("/").each do |path_component|
|
88
105
|
found_group = current_group.group(path_component).first
|
89
|
-
|
106
|
+
|
107
|
+
if options[:create] and found_group.nil?
|
108
|
+
found_group = current_group.create_group(path_component)
|
109
|
+
end
|
110
|
+
|
90
111
|
current_group = found_group
|
112
|
+
|
113
|
+
break unless current_group
|
91
114
|
end
|
92
115
|
|
93
|
-
current_group.instance_eval(&block) if block_given?
|
116
|
+
current_group.instance_eval(&block) if block_given? and current_group
|
94
117
|
|
95
118
|
current_group
|
96
119
|
end
|
@@ -113,7 +136,11 @@ module Xcode
|
|
113
136
|
#
|
114
137
|
# @return [Group] the 'Products' group of the project.
|
115
138
|
def products_group
|
116
|
-
groups.group('Products').first
|
139
|
+
current_group = groups.group('Products').first
|
140
|
+
|
141
|
+
current_group.instance_eval(&block) if block_given? and current_group
|
142
|
+
|
143
|
+
current_group
|
117
144
|
end
|
118
145
|
|
119
146
|
#
|
@@ -123,7 +150,11 @@ module Xcode
|
|
123
150
|
#
|
124
151
|
# @return [Group] the 'Frameworks' group of the projet.
|
125
152
|
def frameworks_group
|
126
|
-
groups.group('Frameworks').first
|
153
|
+
current_group = groups.group('Frameworks').first
|
154
|
+
|
155
|
+
current_group.instance_eval(&block) if block_given? and current_group
|
156
|
+
|
157
|
+
current_group
|
127
158
|
end
|
128
159
|
|
129
160
|
#
|
data/lib/xcode/registry.rb
CHANGED
@@ -68,6 +68,20 @@ module Xcode
|
|
68
68
|
def objects
|
69
69
|
self['objects']
|
70
70
|
end
|
71
|
+
|
72
|
+
#
|
73
|
+
# @return [Fixnum] the object version
|
74
|
+
#
|
75
|
+
def object_version
|
76
|
+
self['objectVersion'].to_i
|
77
|
+
end
|
78
|
+
|
79
|
+
#
|
80
|
+
# @return [Fixnum] the archive version
|
81
|
+
#
|
82
|
+
def archive_version
|
83
|
+
self['archiveVersion'].to_i
|
84
|
+
end
|
71
85
|
|
72
86
|
#
|
73
87
|
# Retrieve a Resource for the given identifier.
|
data/lib/xcode/target.rb
CHANGED
@@ -116,22 +116,22 @@ module Xcode
|
|
116
116
|
#
|
117
117
|
# @return [BuildPhase] the framework specific build phase of the target.
|
118
118
|
#
|
119
|
-
def framework_build_phase
|
120
|
-
build_phase 'PBXFrameworksBuildPhase'
|
119
|
+
def framework_build_phase(&block)
|
120
|
+
build_phase 'PBXFrameworksBuildPhase', &block
|
121
121
|
end
|
122
122
|
|
123
123
|
#
|
124
124
|
# @return [BuildPhase] the sources specific build phase of the target.
|
125
125
|
#
|
126
|
-
def sources_build_phase
|
127
|
-
build_phase 'PBXSourcesBuildPhase'
|
126
|
+
def sources_build_phase(&block)
|
127
|
+
build_phase 'PBXSourcesBuildPhase', &block
|
128
128
|
end
|
129
129
|
|
130
130
|
#
|
131
131
|
# @return [BuildPhase] the resources specific build phase of the target.
|
132
132
|
#
|
133
|
-
def resources_build_phase
|
134
|
-
build_phase 'PBXResourcesBuildPhase'
|
133
|
+
def resources_build_phase(&block)
|
134
|
+
build_phase 'PBXResourcesBuildPhase', &block
|
135
135
|
end
|
136
136
|
|
137
137
|
def build_phase(type,&block)
|
data/lib/xcode/version.rb
CHANGED
Binary file
|
@@ -1,802 +1,557 @@
|
|
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
|
-
|
558
|
-
"C93D39FEB82CC9442CE94908" = {
|
559
|
-
"isa" = "XCConfigurationList";
|
560
|
-
"buildConfigurations" = (
|
561
|
-
"9DD0F856744EE2F634D435BF",
|
562
|
-
"F3367A702467F6782D255B43"
|
563
|
-
);
|
564
|
-
"defaultConfigurationIsVisible" = "0";
|
565
|
-
"defaultConfigurationName" = "";
|
566
|
-
};
|
567
|
-
"630E8768C91375E025BDAB9D" = {
|
568
|
-
"isa" = "PBXFileReference";
|
569
|
-
"explicitFileType" = "wrapper.application";
|
570
|
-
"includeInIndex" = 0;
|
571
|
-
"path" = "Specs.app";
|
572
|
-
"sourceTree" = "BUILT_PRODUCTS_DIR";
|
573
|
-
};
|
574
|
-
"39DE9119D059DDAF344528F7" = {
|
575
|
-
"isa" = "PBXGroup";
|
576
|
-
"name" = "Specs";
|
577
|
-
"sourceTree" = "<group>";
|
578
|
-
"children" = (
|
579
|
-
"432A2F50EC036E94978893A8"
|
580
|
-
);
|
581
|
-
};
|
582
|
-
"432A2F50EC036E94978893A8" = {
|
583
|
-
"isa" = "PBXGroup";
|
584
|
-
"name" = "Supporting Files";
|
585
|
-
"sourceTree" = "<group>";
|
586
|
-
"children" = (
|
587
|
-
"9A37F09082AA2F5581292B87",
|
588
|
-
"3665D8B8D6C1E1BABC2E47C7",
|
589
|
-
"1E241EF6D65011772619D39A",
|
590
|
-
"174491DC1D841F9ACD7EBE31"
|
591
|
-
);
|
592
|
-
};
|
593
|
-
"9A37F09082AA2F5581292B87" = {
|
594
|
-
"isa" = "PBXFileReference";
|
595
|
-
"path" = "Specs/main.m";
|
596
|
-
"sourceTree" = "<group>";
|
597
|
-
"name" = "main.m";
|
598
|
-
};
|
599
|
-
"DDF08A769D3B5B518C166AC6" = {
|
600
|
-
"isa" = "PBXSourcesBuildPhase";
|
601
|
-
"buildActionMask" = "2147483647";
|
602
|
-
"files" = (
|
603
|
-
"5E29EA438DC1B76305639557"
|
604
|
-
);
|
605
|
-
"runOnlyForDeploymentPostprocessing" = "0";
|
606
|
-
};
|
607
|
-
"5E29EA438DC1B76305639557" = {
|
608
|
-
"isa" = "PBXBuildFile";
|
609
|
-
"fileRef" = "9A37F09082AA2F5581292B87";
|
610
|
-
};
|
611
|
-
"3665D8B8D6C1E1BABC2E47C7" = {
|
612
|
-
"isa" = "PBXFileReference";
|
613
|
-
"path" = "Specs/Specs-Info.plist";
|
614
|
-
"sourceTree" = "<group>";
|
615
|
-
"name" = "Specs-Info.plist";
|
616
|
-
};
|
617
|
-
"1E241EF6D65011772619D39A" = {
|
618
|
-
"isa" = "PBXVariantGroup";
|
619
|
-
"children" = (
|
620
|
-
"D6D233A8CBDA7B3F0FB96015"
|
621
|
-
);
|
622
|
-
"name" = "InfoPlist.strings";
|
623
|
-
"sourceTree" = "<group>";
|
624
|
-
"path" = "Specs";
|
625
|
-
};
|
626
|
-
"D6D233A8CBDA7B3F0FB96015" = {
|
627
|
-
"isa" = "PBXFileReference";
|
628
|
-
"path" = "en.lproj/InfoPlist.strings";
|
629
|
-
"sourceTree" = "<group>";
|
630
|
-
"name" = "en";
|
631
|
-
};
|
632
|
-
"57F7ADA229AE63B1ADB8DA79" = {
|
633
|
-
"isa" = "PBXResourcesBuildPhase";
|
634
|
-
"buildActionMask" = "2147483647";
|
635
|
-
"files" = (
|
636
|
-
"94F2CEAB92BA1079E896EF2E"
|
637
|
-
);
|
638
|
-
"runOnlyForDeploymentPostprocessing" = "0";
|
639
|
-
};
|
640
|
-
"94F2CEAB92BA1079E896EF2E" = {
|
641
|
-
"isa" = "PBXBuildFile";
|
642
|
-
"fileRef" = "1E241EF6D65011772619D39A";
|
643
|
-
};
|
644
|
-
"174491DC1D841F9ACD7EBE31" = {
|
645
|
-
"isa" = "PBXFileReference";
|
646
|
-
"path" = "Specs/Specs-Prefix.pch";
|
647
|
-
"sourceTree" = "<group>";
|
648
|
-
"name" = "Specs-Prefix.pch";
|
649
|
-
};
|
650
|
-
"6C10ABBB52B3D1FA38AB47FF" = {
|
651
|
-
"isa" = "PBXFileReference";
|
652
|
-
"lastKnownFileType" = "wrapper.framework";
|
653
|
-
"name" = "Cedar-iPhone.framework";
|
654
|
-
"path" = "Vendor/Frameworks/Cedar-iPhone.framework";
|
655
|
-
"sourceTree" = "<group>";
|
656
|
-
};
|
657
|
-
"FEE9A62A759B1FFE1A905731" = {
|
658
|
-
"isa" = "PBXFrameworksBuildPhase";
|
659
|
-
"buildActionMask" = "2147483647";
|
660
|
-
"files" = (
|
661
|
-
"6193083E0AAF7C886D587F0A",
|
662
|
-
"2574D65B0D2FFDB5D0372B4A",
|
663
|
-
"FD70EF95A64C6CF15FFAA614",
|
664
|
-
"28C60920A77AB174A952864D"
|
665
|
-
);
|
666
|
-
"runOnlyForDeploymentPostprocessing" = "0";
|
667
|
-
};
|
668
|
-
"6193083E0AAF7C886D587F0A" = {
|
669
|
-
"isa" = "PBXBuildFile";
|
670
|
-
"fileRef" = "6C10ABBB52B3D1FA38AB47FF";
|
671
|
-
};
|
672
|
-
"2574D65B0D2FFDB5D0372B4A" = {
|
673
|
-
"isa" = "PBXBuildFile";
|
674
|
-
"fileRef" = "7165D454146B4EA100DE2F0E";
|
675
|
-
};
|
676
|
-
"FD70EF95A64C6CF15FFAA614" = {
|
677
|
-
"isa" = "PBXBuildFile";
|
678
|
-
"fileRef" = "7165D456146B4EA100DE2F0E";
|
679
|
-
};
|
680
|
-
"28C60920A77AB174A952864D" = {
|
681
|
-
"isa" = "PBXBuildFile";
|
682
|
-
"fileRef" = "7165D458146B4EA100DE2F0E";
|
683
|
-
};
|
684
|
-
"9DD0F856744EE2F634D435BF" = {
|
685
|
-
"isa" = "XCBuildConfiguration";
|
686
|
-
"buildSettings" = {
|
687
|
-
"SDKROOT" = "iphoneos";
|
688
|
-
"OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
|
689
|
-
"TARGETED_DEVICE_FAMILY" = "1,2";
|
690
|
-
"GCC_C_LANGUAGE_STANDARD" = "gnu99";
|
691
|
-
"ALWAYS_SEARCH_USER_PATHS" = "NO";
|
692
|
-
"GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
|
693
|
-
"ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
|
694
|
-
"GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
|
695
|
-
"GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
|
696
|
-
"CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
|
697
|
-
"GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
|
698
|
-
"VALIDATE_PRODUCT" = "YES";
|
699
|
-
"IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
|
700
|
-
"COPY_PHASE_STRIP" = "YES";
|
701
|
-
"GCC_PREFIX_HEADER" = "Specs/Specs-Prefix.pch";
|
702
|
-
"INFOPLIST_FILE" = "Specs/Specs-Info.plist";
|
703
|
-
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
704
|
-
"WRAPPER_EXTENSION" = "app";
|
705
|
-
"OTHER_LDFLAGS" = "-ObjC -all_load -lstdc++";
|
706
|
-
"FRAMEWORK_SEARCH_PATHS" = (
|
707
|
-
"$(inherited)",
|
708
|
-
"\"$(SRCROOT)/Vendor/Frameworks\""
|
709
|
-
);
|
710
|
-
};
|
711
|
-
"name" = "Debug";
|
712
|
-
};
|
713
|
-
"F3367A702467F6782D255B43" = {
|
714
|
-
"isa" = "XCBuildConfiguration";
|
715
|
-
"buildSettings" = {
|
716
|
-
"SDKROOT" = "iphoneos";
|
717
|
-
"OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
|
718
|
-
"TARGETED_DEVICE_FAMILY" = "1,2";
|
719
|
-
"GCC_C_LANGUAGE_STANDARD" = "gnu99";
|
720
|
-
"ALWAYS_SEARCH_USER_PATHS" = "NO";
|
721
|
-
"GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
|
722
|
-
"ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
|
723
|
-
"GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
|
724
|
-
"GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
|
725
|
-
"CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
|
726
|
-
"GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
|
727
|
-
"VALIDATE_PRODUCT" = "YES";
|
728
|
-
"IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
|
729
|
-
"COPY_PHASE_STRIP" = "YES";
|
730
|
-
"GCC_PREFIX_HEADER" = "Specs/Specs-Prefix.pch";
|
731
|
-
"INFOPLIST_FILE" = "Specs/Specs-Info.plist";
|
732
|
-
"PRODUCT_NAME" = "$(TARGET_NAME)";
|
733
|
-
"WRAPPER_EXTENSION" = "app";
|
734
|
-
"OTHER_LDFLAGS" = "-ObjC -all_load -lstdc++";
|
735
|
-
"FRAMEWORK_SEARCH_PATHS" = (
|
736
|
-
"$(inherited)",
|
737
|
-
"\"$(SRCROOT)/Vendor/Frameworks\""
|
738
|
-
);
|
739
|
-
};
|
740
|
-
"name" = "Release";
|
741
|
-
};
|
742
|
-
"08CA042925B6A23E9B5FD749" = {
|
743
|
-
"isa" = "PBXGroup";
|
744
|
-
"name" = "Vendor";
|
745
|
-
"sourceTree" = "<group>";
|
746
|
-
"children" = (
|
747
|
-
"E957185DA6E62BCB773E3215",
|
748
|
-
"210C3E62109555E5E0EECC60"
|
749
|
-
);
|
750
|
-
};
|
751
|
-
"E957185DA6E62BCB773E3215" = {
|
752
|
-
"isa" = "PBXGroup";
|
753
|
-
"name" = "EGORefreshTableHeaderView";
|
754
|
-
"sourceTree" = "<group>";
|
755
|
-
"children" = (
|
756
|
-
"17CD25DE175DD3BEB5EEF9E0",
|
757
|
-
"5528989C051C6A467D2F3062"
|
758
|
-
);
|
759
|
-
};
|
760
|
-
"17CD25DE175DD3BEB5EEF9E0" = {
|
761
|
-
"isa" = "PBXFileReference";
|
762
|
-
"path" = "Vendor/EGORefreshTableHeaderView/EGORefreshTableHeaderView.m";
|
763
|
-
"sourceTree" = "<group>";
|
764
|
-
"name" = "EGORefreshTableHeaderView.m";
|
765
|
-
};
|
766
|
-
"5528989C051C6A467D2F3062" = {
|
767
|
-
"isa" = "PBXFileReference";
|
768
|
-
"path" = "Vendor/EGORefreshTableHeaderView/EGORefreshTableHeaderView.h";
|
769
|
-
"sourceTree" = "<group>";
|
770
|
-
"name" = "EGORefreshTableHeaderView.h";
|
771
|
-
};
|
772
|
-
"210C3E62109555E5E0EECC60" = {
|
773
|
-
"isa" = "PBXGroup";
|
774
|
-
"name" = "Reachability";
|
775
|
-
"sourceTree" = "<group>";
|
776
|
-
"children" = (
|
777
|
-
"1FD478B67ECB2FE21FEDD6E2",
|
778
|
-
"1353A9B12E6EAFF98E85F03D"
|
779
|
-
);
|
780
|
-
};
|
781
|
-
"1FD478B67ECB2FE21FEDD6E2" = {
|
782
|
-
"isa" = "PBXFileReference";
|
783
|
-
"path" = "Vendor/Reachability/Reachability.m";
|
784
|
-
"sourceTree" = "<group>";
|
785
|
-
"name" = "Reachability.m";
|
786
|
-
};
|
787
|
-
"1353A9B12E6EAFF98E85F03D" = {
|
788
|
-
"isa" = "PBXFileReference";
|
789
|
-
"path" = "Vendor/Reachability/Reachability.h";
|
790
|
-
"sourceTree" = "<group>";
|
791
|
-
"name" = "Reachability.h";
|
792
|
-
};
|
793
|
-
"70F2C1C35C0D60D44412B5D5" = {
|
794
|
-
"isa" = "PBXFileReference";
|
795
|
-
"lastKnownFileType" = "wrapper.framework";
|
796
|
-
"name" = "CFNetwork.framework";
|
797
|
-
"path" = "System/Library/Frameworks/CFNetwork.framework";
|
798
|
-
"sourceTree" = "SDKROOT";
|
799
|
-
};
|
800
|
-
};
|
801
|
-
"rootObject" = "7165D447146B4EA100DE2F0E";
|
802
|
-
}
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
2574D65B0D2FFDB5D0372B4A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D454146B4EA100DE2F0E /* UIKit.framework */; };
|
11
|
+
28C60920A77AB174A952864D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D458146B4EA100DE2F0E /* CoreGraphics.framework */; };
|
12
|
+
7165D455146B4EA100DE2F0E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D454146B4EA100DE2F0E /* UIKit.framework */; };
|
13
|
+
7165D457146B4EA100DE2F0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D456146B4EA100DE2F0E /* Foundation.framework */; };
|
14
|
+
7165D459146B4EA100DE2F0E /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D458146B4EA100DE2F0E /* CoreGraphics.framework */; };
|
15
|
+
7165D45F146B4EA100DE2F0E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 7165D45D146B4EA100DE2F0E /* InfoPlist.strings */; };
|
16
|
+
7165D461146B4EA100DE2F0E /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7165D460146B4EA100DE2F0E /* main.m */; };
|
17
|
+
7165D465146B4EA100DE2F0E /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7165D464146B4EA100DE2F0E /* AppDelegate.m */; };
|
18
|
+
7165D46D146B4EA100DE2F0E /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D46C146B4EA100DE2F0E /* SenTestingKit.framework */; };
|
19
|
+
7165D46E146B4EA100DE2F0E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D454146B4EA100DE2F0E /* UIKit.framework */; };
|
20
|
+
7165D46F146B4EA100DE2F0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D456146B4EA100DE2F0E /* Foundation.framework */; };
|
21
|
+
7165D477146B4EA100DE2F0E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 7165D475146B4EA100DE2F0E /* InfoPlist.strings */; };
|
22
|
+
7165D47A146B4EA100DE2F0E /* TestProjectTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 7165D479146B4EA100DE2F0E /* TestProjectTests.m */; };
|
23
|
+
7171EB6F1486E29E00AF2FE3 /* AnotherTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7171EB6C1486DFE000AF2FE3 /* AnotherTest.m */; };
|
24
|
+
FD70EF95A64C6CF15FFAA614 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D456146B4EA100DE2F0E /* Foundation.framework */; };
|
25
|
+
/* End PBXBuildFile section */
|
26
|
+
|
27
|
+
/* Begin PBXContainerItemProxy section */
|
28
|
+
7165D470146B4EA100DE2F0E /* PBXContainerItemProxy */ = {
|
29
|
+
isa = PBXContainerItemProxy;
|
30
|
+
containerPortal = 7165D447146B4EA100DE2F0E /* Project object */;
|
31
|
+
proxyType = 1;
|
32
|
+
remoteGlobalIDString = 7165D44F146B4EA100DE2F0E;
|
33
|
+
remoteInfo = TestProject;
|
34
|
+
};
|
35
|
+
/* End PBXContainerItemProxy section */
|
36
|
+
|
37
|
+
/* Begin PBXFileReference section */
|
38
|
+
630E8768C91375E025BDAB9D /* Specs.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Specs.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
39
|
+
70F2C1C35C0D60D44412B5D5 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
|
40
|
+
7165D450146B4EA100DE2F0E /* TestProject.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestProject.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
41
|
+
7165D454146B4EA100DE2F0E /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
42
|
+
7165D456146B4EA100DE2F0E /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
43
|
+
7165D458146B4EA100DE2F0E /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
44
|
+
7165D45C146B4EA100DE2F0E /* TestProject-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TestProject-Info.plist"; sourceTree = "<group>"; };
|
45
|
+
7165D45E146B4EA100DE2F0E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
46
|
+
7165D460146B4EA100DE2F0E /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
47
|
+
7165D462146B4EA100DE2F0E /* TestProject-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestProject-Prefix.pch"; sourceTree = "<group>"; };
|
48
|
+
7165D463146B4EA100DE2F0E /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
49
|
+
7165D464146B4EA100DE2F0E /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
50
|
+
7165D46B146B4EA100DE2F0E /* TestProjectTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TestProjectTests.octest; sourceTree = BUILT_PRODUCTS_DIR; };
|
51
|
+
7165D46C146B4EA100DE2F0E /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; };
|
52
|
+
7165D474146B4EA100DE2F0E /* TestProjectTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TestProjectTests-Info.plist"; sourceTree = "<group>"; };
|
53
|
+
7165D476146B4EA100DE2F0E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
54
|
+
7165D478146B4EA100DE2F0E /* TestProjectTests.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TestProjectTests.h; sourceTree = "<group>"; };
|
55
|
+
7165D479146B4EA100DE2F0E /* TestProjectTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TestProjectTests.m; sourceTree = "<group>"; };
|
56
|
+
7171EB6B1486DFE000AF2FE3 /* AnotherTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnotherTest.h; sourceTree = "<group>"; };
|
57
|
+
7171EB6C1486DFE000AF2FE3 /* AnotherTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnotherTest.m; sourceTree = "<group>"; };
|
58
|
+
/* End PBXFileReference section */
|
59
|
+
|
60
|
+
/* Begin PBXFrameworksBuildPhase section */
|
61
|
+
7165D44D146B4EA100DE2F0E /* Frameworks */ = {
|
62
|
+
isa = PBXFrameworksBuildPhase;
|
63
|
+
buildActionMask = 2147483647;
|
64
|
+
files = (
|
65
|
+
7165D455146B4EA100DE2F0E /* UIKit.framework in Frameworks */,
|
66
|
+
7165D457146B4EA100DE2F0E /* Foundation.framework in Frameworks */,
|
67
|
+
7165D459146B4EA100DE2F0E /* CoreGraphics.framework in Frameworks */,
|
68
|
+
);
|
69
|
+
runOnlyForDeploymentPostprocessing = 0;
|
70
|
+
};
|
71
|
+
7165D467146B4EA100DE2F0E /* Frameworks */ = {
|
72
|
+
isa = PBXFrameworksBuildPhase;
|
73
|
+
buildActionMask = 2147483647;
|
74
|
+
files = (
|
75
|
+
7165D46D146B4EA100DE2F0E /* SenTestingKit.framework in Frameworks */,
|
76
|
+
7165D46E146B4EA100DE2F0E /* UIKit.framework in Frameworks */,
|
77
|
+
7165D46F146B4EA100DE2F0E /* Foundation.framework in Frameworks */,
|
78
|
+
);
|
79
|
+
runOnlyForDeploymentPostprocessing = 0;
|
80
|
+
};
|
81
|
+
FEE9A62A759B1FFE1A905731 /* Frameworks */ = {
|
82
|
+
isa = PBXFrameworksBuildPhase;
|
83
|
+
buildActionMask = 2147483647;
|
84
|
+
files = (
|
85
|
+
2574D65B0D2FFDB5D0372B4A /* UIKit.framework in Frameworks */,
|
86
|
+
FD70EF95A64C6CF15FFAA614 /* Foundation.framework in Frameworks */,
|
87
|
+
28C60920A77AB174A952864D /* CoreGraphics.framework in Frameworks */,
|
88
|
+
);
|
89
|
+
runOnlyForDeploymentPostprocessing = 0;
|
90
|
+
};
|
91
|
+
/* End PBXFrameworksBuildPhase section */
|
92
|
+
|
93
|
+
/* Begin PBXGroup section */
|
94
|
+
7165D445146B4EA100DE2F0E = {
|
95
|
+
isa = PBXGroup;
|
96
|
+
children = (
|
97
|
+
7165D45A146B4EA100DE2F0E /* TestProject */,
|
98
|
+
7165D472146B4EA100DE2F0E /* TestProjectTests */,
|
99
|
+
7165D453146B4EA100DE2F0E /* Frameworks */,
|
100
|
+
7165D451146B4EA100DE2F0E /* Products */,
|
101
|
+
);
|
102
|
+
sourceTree = "<group>";
|
103
|
+
};
|
104
|
+
7165D451146B4EA100DE2F0E /* Products */ = {
|
105
|
+
isa = PBXGroup;
|
106
|
+
children = (
|
107
|
+
7165D450146B4EA100DE2F0E /* TestProject.app */,
|
108
|
+
7165D46B146B4EA100DE2F0E /* TestProjectTests.octest */,
|
109
|
+
630E8768C91375E025BDAB9D /* Specs.app */,
|
110
|
+
);
|
111
|
+
name = Products;
|
112
|
+
sourceTree = "<group>";
|
113
|
+
};
|
114
|
+
7165D453146B4EA100DE2F0E /* Frameworks */ = {
|
115
|
+
isa = PBXGroup;
|
116
|
+
children = (
|
117
|
+
7165D454146B4EA100DE2F0E /* UIKit.framework */,
|
118
|
+
7165D456146B4EA100DE2F0E /* Foundation.framework */,
|
119
|
+
7165D458146B4EA100DE2F0E /* CoreGraphics.framework */,
|
120
|
+
7165D46C146B4EA100DE2F0E /* SenTestingKit.framework */,
|
121
|
+
70F2C1C35C0D60D44412B5D5 /* CFNetwork.framework */,
|
122
|
+
);
|
123
|
+
name = Frameworks;
|
124
|
+
sourceTree = "<group>";
|
125
|
+
};
|
126
|
+
7165D45A146B4EA100DE2F0E /* TestProject */ = {
|
127
|
+
isa = PBXGroup;
|
128
|
+
children = (
|
129
|
+
7165D463146B4EA100DE2F0E /* AppDelegate.h */,
|
130
|
+
7165D464146B4EA100DE2F0E /* AppDelegate.m */,
|
131
|
+
7165D45B146B4EA100DE2F0E /* Supporting Files */,
|
132
|
+
);
|
133
|
+
path = TestProject;
|
134
|
+
sourceTree = "<group>";
|
135
|
+
};
|
136
|
+
7165D45B146B4EA100DE2F0E /* Supporting Files */ = {
|
137
|
+
isa = PBXGroup;
|
138
|
+
children = (
|
139
|
+
7165D45C146B4EA100DE2F0E /* TestProject-Info.plist */,
|
140
|
+
7165D45D146B4EA100DE2F0E /* InfoPlist.strings */,
|
141
|
+
7165D460146B4EA100DE2F0E /* main.m */,
|
142
|
+
7165D462146B4EA100DE2F0E /* TestProject-Prefix.pch */,
|
143
|
+
);
|
144
|
+
name = "Supporting Files";
|
145
|
+
sourceTree = "<group>";
|
146
|
+
};
|
147
|
+
7165D472146B4EA100DE2F0E /* TestProjectTests */ = {
|
148
|
+
isa = PBXGroup;
|
149
|
+
children = (
|
150
|
+
7165D478146B4EA100DE2F0E /* TestProjectTests.h */,
|
151
|
+
7165D479146B4EA100DE2F0E /* TestProjectTests.m */,
|
152
|
+
7165D473146B4EA100DE2F0E /* Supporting Files */,
|
153
|
+
7171EB6B1486DFE000AF2FE3 /* AnotherTest.h */,
|
154
|
+
7171EB6C1486DFE000AF2FE3 /* AnotherTest.m */,
|
155
|
+
);
|
156
|
+
path = TestProjectTests;
|
157
|
+
sourceTree = "<group>";
|
158
|
+
};
|
159
|
+
7165D473146B4EA100DE2F0E /* Supporting Files */ = {
|
160
|
+
isa = PBXGroup;
|
161
|
+
children = (
|
162
|
+
7165D474146B4EA100DE2F0E /* TestProjectTests-Info.plist */,
|
163
|
+
7165D475146B4EA100DE2F0E /* InfoPlist.strings */,
|
164
|
+
);
|
165
|
+
name = "Supporting Files";
|
166
|
+
sourceTree = "<group>";
|
167
|
+
};
|
168
|
+
/* End PBXGroup section */
|
169
|
+
|
170
|
+
/* Begin PBXNativeTarget section */
|
171
|
+
7165D44F146B4EA100DE2F0E /* TestProject */ = {
|
172
|
+
isa = PBXNativeTarget;
|
173
|
+
buildConfigurationList = 7165D47D146B4EA100DE2F0E /* Build configuration list for PBXNativeTarget "TestProject" */;
|
174
|
+
buildPhases = (
|
175
|
+
7165D44C146B4EA100DE2F0E /* Sources */,
|
176
|
+
7165D44D146B4EA100DE2F0E /* Frameworks */,
|
177
|
+
7165D44E146B4EA100DE2F0E /* Resources */,
|
178
|
+
);
|
179
|
+
buildRules = (
|
180
|
+
);
|
181
|
+
dependencies = (
|
182
|
+
);
|
183
|
+
name = TestProject;
|
184
|
+
productName = TestProject;
|
185
|
+
productReference = 7165D450146B4EA100DE2F0E /* TestProject.app */;
|
186
|
+
productType = "com.apple.product-type.application";
|
187
|
+
};
|
188
|
+
7165D46A146B4EA100DE2F0E /* TestProjectTests */ = {
|
189
|
+
isa = PBXNativeTarget;
|
190
|
+
buildConfigurationList = 7165D480146B4EA100DE2F0E /* Build configuration list for PBXNativeTarget "TestProjectTests" */;
|
191
|
+
buildPhases = (
|
192
|
+
7165D466146B4EA100DE2F0E /* Sources */,
|
193
|
+
7165D467146B4EA100DE2F0E /* Frameworks */,
|
194
|
+
7165D468146B4EA100DE2F0E /* Resources */,
|
195
|
+
7165D469146B4EA100DE2F0E /* ShellScript */,
|
196
|
+
);
|
197
|
+
buildRules = (
|
198
|
+
);
|
199
|
+
dependencies = (
|
200
|
+
7165D471146B4EA100DE2F0E /* PBXTargetDependency */,
|
201
|
+
);
|
202
|
+
name = TestProjectTests;
|
203
|
+
productName = TestProjectTests;
|
204
|
+
productReference = 7165D46B146B4EA100DE2F0E /* TestProjectTests.octest */;
|
205
|
+
productType = "com.apple.product-type.bundle";
|
206
|
+
};
|
207
|
+
D111C141DDDD1009668E310E /* Specs */ = {
|
208
|
+
isa = PBXNativeTarget;
|
209
|
+
buildConfigurationList = C93D39FEB82CC9442CE94908 /* Build configuration list for PBXNativeTarget "Specs" */;
|
210
|
+
buildPhases = (
|
211
|
+
DDF08A769D3B5B518C166AC6 /* Sources */,
|
212
|
+
57F7ADA229AE63B1ADB8DA79 /* Resources */,
|
213
|
+
FEE9A62A759B1FFE1A905731 /* Frameworks */,
|
214
|
+
);
|
215
|
+
buildRules = (
|
216
|
+
);
|
217
|
+
dependencies = (
|
218
|
+
);
|
219
|
+
name = Specs;
|
220
|
+
productName = Specs;
|
221
|
+
productType = "com.apple.product-type.application";
|
222
|
+
};
|
223
|
+
/* End PBXNativeTarget section */
|
224
|
+
|
225
|
+
/* Begin PBXProject section */
|
226
|
+
7165D447146B4EA100DE2F0E /* Project object */ = {
|
227
|
+
isa = PBXProject;
|
228
|
+
attributes = {
|
229
|
+
LastUpgradeCheck = 0420;
|
230
|
+
};
|
231
|
+
buildConfigurationList = 7165D44A146B4EA100DE2F0E /* Build configuration list for PBXProject "TestProject" */;
|
232
|
+
compatibilityVersion = "Xcode 3.2";
|
233
|
+
developmentRegion = English;
|
234
|
+
hasScannedForEncodings = 0;
|
235
|
+
knownRegions = (
|
236
|
+
en,
|
237
|
+
);
|
238
|
+
mainGroup = 7165D445146B4EA100DE2F0E;
|
239
|
+
productRefGroup = 7165D451146B4EA100DE2F0E /* Products */;
|
240
|
+
projectDirPath = "";
|
241
|
+
projectRoot = "";
|
242
|
+
targets = (
|
243
|
+
7165D44F146B4EA100DE2F0E /* TestProject */,
|
244
|
+
7165D46A146B4EA100DE2F0E /* TestProjectTests */,
|
245
|
+
D111C141DDDD1009668E310E /* Specs */,
|
246
|
+
);
|
247
|
+
};
|
248
|
+
/* End PBXProject section */
|
249
|
+
|
250
|
+
/* Begin PBXResourcesBuildPhase section */
|
251
|
+
57F7ADA229AE63B1ADB8DA79 /* Resources */ = {
|
252
|
+
isa = PBXResourcesBuildPhase;
|
253
|
+
buildActionMask = 2147483647;
|
254
|
+
files = (
|
255
|
+
);
|
256
|
+
runOnlyForDeploymentPostprocessing = 0;
|
257
|
+
};
|
258
|
+
7165D44E146B4EA100DE2F0E /* Resources */ = {
|
259
|
+
isa = PBXResourcesBuildPhase;
|
260
|
+
buildActionMask = 2147483647;
|
261
|
+
files = (
|
262
|
+
7165D45F146B4EA100DE2F0E /* InfoPlist.strings in Resources */,
|
263
|
+
);
|
264
|
+
runOnlyForDeploymentPostprocessing = 0;
|
265
|
+
};
|
266
|
+
7165D468146B4EA100DE2F0E /* Resources */ = {
|
267
|
+
isa = PBXResourcesBuildPhase;
|
268
|
+
buildActionMask = 2147483647;
|
269
|
+
files = (
|
270
|
+
7165D477146B4EA100DE2F0E /* InfoPlist.strings in Resources */,
|
271
|
+
);
|
272
|
+
runOnlyForDeploymentPostprocessing = 0;
|
273
|
+
};
|
274
|
+
/* End PBXResourcesBuildPhase section */
|
275
|
+
|
276
|
+
/* Begin PBXShellScriptBuildPhase section */
|
277
|
+
7165D469146B4EA100DE2F0E /* ShellScript */ = {
|
278
|
+
isa = PBXShellScriptBuildPhase;
|
279
|
+
buildActionMask = 2147483647;
|
280
|
+
files = (
|
281
|
+
);
|
282
|
+
inputPaths = (
|
283
|
+
);
|
284
|
+
outputPaths = (
|
285
|
+
);
|
286
|
+
runOnlyForDeploymentPostprocessing = 0;
|
287
|
+
shellPath = /bin/sh;
|
288
|
+
shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
|
289
|
+
};
|
290
|
+
/* End PBXShellScriptBuildPhase section */
|
291
|
+
|
292
|
+
/* Begin PBXSourcesBuildPhase section */
|
293
|
+
7165D44C146B4EA100DE2F0E /* Sources */ = {
|
294
|
+
isa = PBXSourcesBuildPhase;
|
295
|
+
buildActionMask = 2147483647;
|
296
|
+
files = (
|
297
|
+
7165D461146B4EA100DE2F0E /* main.m in Sources */,
|
298
|
+
7165D465146B4EA100DE2F0E /* AppDelegate.m in Sources */,
|
299
|
+
);
|
300
|
+
runOnlyForDeploymentPostprocessing = 0;
|
301
|
+
};
|
302
|
+
7165D466146B4EA100DE2F0E /* Sources */ = {
|
303
|
+
isa = PBXSourcesBuildPhase;
|
304
|
+
buildActionMask = 2147483647;
|
305
|
+
files = (
|
306
|
+
7165D47A146B4EA100DE2F0E /* TestProjectTests.m in Sources */,
|
307
|
+
7171EB6F1486E29E00AF2FE3 /* AnotherTest.m in Sources */,
|
308
|
+
);
|
309
|
+
runOnlyForDeploymentPostprocessing = 0;
|
310
|
+
};
|
311
|
+
DDF08A769D3B5B518C166AC6 /* Sources */ = {
|
312
|
+
isa = PBXSourcesBuildPhase;
|
313
|
+
buildActionMask = 2147483647;
|
314
|
+
files = (
|
315
|
+
);
|
316
|
+
runOnlyForDeploymentPostprocessing = 0;
|
317
|
+
};
|
318
|
+
/* End PBXSourcesBuildPhase section */
|
319
|
+
|
320
|
+
/* Begin PBXTargetDependency section */
|
321
|
+
7165D471146B4EA100DE2F0E /* PBXTargetDependency */ = {
|
322
|
+
isa = PBXTargetDependency;
|
323
|
+
target = 7165D44F146B4EA100DE2F0E /* TestProject */;
|
324
|
+
targetProxy = 7165D470146B4EA100DE2F0E /* PBXContainerItemProxy */;
|
325
|
+
};
|
326
|
+
/* End PBXTargetDependency section */
|
327
|
+
|
328
|
+
/* Begin PBXVariantGroup section */
|
329
|
+
7165D45D146B4EA100DE2F0E /* InfoPlist.strings */ = {
|
330
|
+
isa = PBXVariantGroup;
|
331
|
+
children = (
|
332
|
+
7165D45E146B4EA100DE2F0E /* en */,
|
333
|
+
);
|
334
|
+
name = InfoPlist.strings;
|
335
|
+
sourceTree = "<group>";
|
336
|
+
};
|
337
|
+
7165D475146B4EA100DE2F0E /* InfoPlist.strings */ = {
|
338
|
+
isa = PBXVariantGroup;
|
339
|
+
children = (
|
340
|
+
7165D476146B4EA100DE2F0E /* en */,
|
341
|
+
);
|
342
|
+
name = InfoPlist.strings;
|
343
|
+
sourceTree = "<group>";
|
344
|
+
};
|
345
|
+
/* End PBXVariantGroup section */
|
346
|
+
|
347
|
+
/* Begin XCBuildConfiguration section */
|
348
|
+
7165D47B146B4EA100DE2F0E /* Debug */ = {
|
349
|
+
isa = XCBuildConfiguration;
|
350
|
+
buildSettings = {
|
351
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
352
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
353
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
354
|
+
COPY_PHASE_STRIP = NO;
|
355
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
356
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
357
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
358
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
359
|
+
"DEBUG=1",
|
360
|
+
"$(inherited)",
|
361
|
+
);
|
362
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
363
|
+
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
364
|
+
GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
|
365
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
366
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
367
|
+
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
|
368
|
+
SDKROOT = iphoneos;
|
369
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
370
|
+
};
|
371
|
+
name = Debug;
|
372
|
+
};
|
373
|
+
7165D47C146B4EA100DE2F0E /* Release */ = {
|
374
|
+
isa = XCBuildConfiguration;
|
375
|
+
buildSettings = {
|
376
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
377
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
378
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
379
|
+
COPY_PHASE_STRIP = YES;
|
380
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
381
|
+
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
382
|
+
GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
|
383
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
384
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
385
|
+
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
|
386
|
+
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
|
387
|
+
SDKROOT = iphoneos;
|
388
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
389
|
+
VALIDATE_PRODUCT = YES;
|
390
|
+
};
|
391
|
+
name = Release;
|
392
|
+
};
|
393
|
+
7165D47E146B4EA100DE2F0E /* Debug */ = {
|
394
|
+
isa = XCBuildConfiguration;
|
395
|
+
buildSettings = {
|
396
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
397
|
+
GCC_PREFIX_HEADER = "TestProject/TestProject-Prefix.pch";
|
398
|
+
INFOPLIST_FILE = "TestProject/TestProject-Info.plist";
|
399
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
400
|
+
WRAPPER_EXTENSION = app;
|
401
|
+
};
|
402
|
+
name = Debug;
|
403
|
+
};
|
404
|
+
7165D47F146B4EA100DE2F0E /* Release */ = {
|
405
|
+
isa = XCBuildConfiguration;
|
406
|
+
buildSettings = {
|
407
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
408
|
+
GCC_PREFIX_HEADER = "TestProject/TestProject-Prefix.pch";
|
409
|
+
INFOPLIST_FILE = "TestProject/TestProject-Info.plist";
|
410
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
411
|
+
WRAPPER_EXTENSION = app;
|
412
|
+
};
|
413
|
+
name = Release;
|
414
|
+
};
|
415
|
+
7165D481146B4EA100DE2F0E /* Debug */ = {
|
416
|
+
isa = XCBuildConfiguration;
|
417
|
+
buildSettings = {
|
418
|
+
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
|
419
|
+
FRAMEWORK_SEARCH_PATHS = (
|
420
|
+
"$(SDKROOT)/Developer/Library/Frameworks",
|
421
|
+
"$(DEVELOPER_LIBRARY_DIR)/Frameworks",
|
422
|
+
);
|
423
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
424
|
+
GCC_PREFIX_HEADER = "TestProject/TestProject-Prefix.pch";
|
425
|
+
INFOPLIST_FILE = "TestProjectTests/TestProjectTests-Info.plist";
|
426
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
427
|
+
TEST_HOST = "$(BUNDLE_LOADER)";
|
428
|
+
WRAPPER_EXTENSION = octest;
|
429
|
+
};
|
430
|
+
name = Debug;
|
431
|
+
};
|
432
|
+
7165D482146B4EA100DE2F0E /* Release */ = {
|
433
|
+
isa = XCBuildConfiguration;
|
434
|
+
buildSettings = {
|
435
|
+
BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
|
436
|
+
FRAMEWORK_SEARCH_PATHS = (
|
437
|
+
"$(SDKROOT)/Developer/Library/Frameworks",
|
438
|
+
"$(DEVELOPER_LIBRARY_DIR)/Frameworks",
|
439
|
+
);
|
440
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
441
|
+
GCC_PREFIX_HEADER = "TestProject/TestProject-Prefix.pch";
|
442
|
+
INFOPLIST_FILE = "TestProjectTests/TestProjectTests-Info.plist";
|
443
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
444
|
+
TEST_HOST = "$(BUNDLE_LOADER)";
|
445
|
+
WRAPPER_EXTENSION = octest;
|
446
|
+
};
|
447
|
+
name = Release;
|
448
|
+
};
|
449
|
+
9DD0F856744EE2F634D435BF /* Debug */ = {
|
450
|
+
isa = XCBuildConfiguration;
|
451
|
+
buildSettings = {
|
452
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
453
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
454
|
+
"CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
|
455
|
+
COPY_PHASE_STRIP = YES;
|
456
|
+
FRAMEWORK_SEARCH_PATHS = (
|
457
|
+
"$(inherited)",
|
458
|
+
"\"$(SRCROOT)/Vendor/Frameworks\"",
|
459
|
+
);
|
460
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
461
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
462
|
+
GCC_PREFIX_HEADER = "Specs/Specs-Prefix.pch";
|
463
|
+
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
464
|
+
GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
|
465
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
466
|
+
INFOPLIST_FILE = "Specs/Specs-Info.plist";
|
467
|
+
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
|
468
|
+
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
|
469
|
+
OTHER_LDFLAGS = (
|
470
|
+
"-ObjC",
|
471
|
+
"-all_load",
|
472
|
+
"-lstdc++",
|
473
|
+
);
|
474
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
475
|
+
SDKROOT = iphoneos;
|
476
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
477
|
+
VALIDATE_PRODUCT = YES;
|
478
|
+
WRAPPER_EXTENSION = app;
|
479
|
+
};
|
480
|
+
name = Debug;
|
481
|
+
};
|
482
|
+
F3367A702467F6782D255B43 /* Release */ = {
|
483
|
+
isa = XCBuildConfiguration;
|
484
|
+
buildSettings = {
|
485
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
486
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
487
|
+
"CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
|
488
|
+
COPY_PHASE_STRIP = YES;
|
489
|
+
FRAMEWORK_SEARCH_PATHS = (
|
490
|
+
"$(inherited)",
|
491
|
+
"\"$(SRCROOT)/Vendor/Frameworks\"",
|
492
|
+
);
|
493
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
494
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
495
|
+
GCC_PREFIX_HEADER = "Specs/Specs-Prefix.pch";
|
496
|
+
GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
|
497
|
+
GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
|
498
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
499
|
+
INFOPLIST_FILE = "Specs/Specs-Info.plist";
|
500
|
+
IPHONEOS_DEPLOYMENT_TARGET = 5.0;
|
501
|
+
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
|
502
|
+
OTHER_LDFLAGS = (
|
503
|
+
"-ObjC",
|
504
|
+
"-all_load",
|
505
|
+
"-lstdc++",
|
506
|
+
);
|
507
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
508
|
+
SDKROOT = iphoneos;
|
509
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
510
|
+
VALIDATE_PRODUCT = YES;
|
511
|
+
WRAPPER_EXTENSION = app;
|
512
|
+
};
|
513
|
+
name = Release;
|
514
|
+
};
|
515
|
+
/* End XCBuildConfiguration section */
|
516
|
+
|
517
|
+
/* Begin XCConfigurationList section */
|
518
|
+
7165D44A146B4EA100DE2F0E /* Build configuration list for PBXProject "TestProject" */ = {
|
519
|
+
isa = XCConfigurationList;
|
520
|
+
buildConfigurations = (
|
521
|
+
7165D47B146B4EA100DE2F0E /* Debug */,
|
522
|
+
7165D47C146B4EA100DE2F0E /* Release */,
|
523
|
+
);
|
524
|
+
defaultConfigurationIsVisible = 0;
|
525
|
+
defaultConfigurationName = Release;
|
526
|
+
};
|
527
|
+
7165D47D146B4EA100DE2F0E /* Build configuration list for PBXNativeTarget "TestProject" */ = {
|
528
|
+
isa = XCConfigurationList;
|
529
|
+
buildConfigurations = (
|
530
|
+
7165D47E146B4EA100DE2F0E /* Debug */,
|
531
|
+
7165D47F146B4EA100DE2F0E /* Release */,
|
532
|
+
);
|
533
|
+
defaultConfigurationIsVisible = 0;
|
534
|
+
defaultConfigurationName = Release;
|
535
|
+
};
|
536
|
+
7165D480146B4EA100DE2F0E /* Build configuration list for PBXNativeTarget "TestProjectTests" */ = {
|
537
|
+
isa = XCConfigurationList;
|
538
|
+
buildConfigurations = (
|
539
|
+
7165D481146B4EA100DE2F0E /* Debug */,
|
540
|
+
7165D482146B4EA100DE2F0E /* Release */,
|
541
|
+
);
|
542
|
+
defaultConfigurationIsVisible = 0;
|
543
|
+
defaultConfigurationName = Release;
|
544
|
+
};
|
545
|
+
C93D39FEB82CC9442CE94908 /* Build configuration list for PBXNativeTarget "Specs" */ = {
|
546
|
+
isa = XCConfigurationList;
|
547
|
+
buildConfigurations = (
|
548
|
+
9DD0F856744EE2F634D435BF /* Debug */,
|
549
|
+
F3367A702467F6782D255B43 /* Release */,
|
550
|
+
);
|
551
|
+
defaultConfigurationIsVisible = 0;
|
552
|
+
defaultConfigurationName = "";
|
553
|
+
};
|
554
|
+
/* End XCConfigurationList section */
|
555
|
+
};
|
556
|
+
rootObject = 7165D447146B4EA100DE2F0E /* Project object */;
|
557
|
+
}
|