-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1420 lines (1402 loc) · 77.6 KB
/
project.pbxproj
File metadata and controls
1420 lines (1402 loc) · 77.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
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
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXAggregateTarget section */
4B25BE4A1291C43400821DC1 /* Objection-iOS */ = {
isa = PBXAggregateTarget;
buildConfigurationList = 4B25BE4D1291C45200821DC1 /* Build configuration list for PBXAggregateTarget "Objection-iOS" */;
buildPhases = (
4B25BE4F1291C4FB00821DC1 /* Build Static Libs */,
4B25BE511291C51E00821DC1 /* Build Universal Lib */,
4B25BE571291C58800821DC1 /* Copy Header Files */,
);
dependencies = (
);
name = "Objection-iOS";
productName = "Objection-iPhone";
};
/* End PBXAggregateTarget section */
/* Begin PBXBuildFile section */
4B2D26A01AC1E54400FF802F /* Nimble.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B833A881AC1B5FE00C84F00 /* Nimble.framework */; };
4B2D26A11AC1E54400FF802F /* Quick.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B833A951AC1B60C00C84F00 /* Quick.framework */; };
4B42580A13F56CC0006BC001 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AACBBE490F95108600F1A2B1 /* Foundation.framework */; };
4B42581113F56CC1006BC001 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 4B42580F13F56CC1006BC001 /* InfoPlist.strings */; };
4B42585A13F56D41006BC001 /* Fixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BF451AC12919CAD006EB2D5 /* Fixtures.m */; };
4B42585B13F56D41006BC001 /* SpecHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B53482E12F31E93000480AB /* SpecHelper.m */; };
4B42585C13F56D41006BC001 /* ModuleFixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B81F90C135D0ACF00221A88 /* ModuleFixtures.m */; };
4B42585D13F56D41006BC001 /* BasicUsageSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BF4516B129199AF006EB2D5 /* BasicUsageSpecs.m */; };
4B42585E13F56D41006BC001 /* InjectionErrorsSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BF451E21291AD28006EB2D5 /* InjectionErrorsSpecs.m */; };
4B42585F13F56D41006BC001 /* InheritanceSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B7300D712AA8F3400903427 /* InheritanceSpecs.m */; };
4B42586013F56D41006BC001 /* ModuleUsageSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B95819612AE593F00CBF1EB /* ModuleUsageSpecs.m */; };
4B42586113F56D41006BC001 /* JSObjectionProviderEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B81F8DC135D06C200221A88 /* JSObjectionProviderEntry.m */; };
4B42586213F56D41006BC001 /* JSObjectionEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B4B21A71342B79E00833077 /* JSObjectionEntry.m */; };
4B42586313F56D41006BC001 /* NSObject+Objection.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B53471812F316A4000480AB /* NSObject+Objection.m */; };
4B42586413F56D41006BC001 /* JSObjectionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B496E6A12B0F3E50053F2A3 /* JSObjectionUtils.m */; };
4B42586513F56D41006BC001 /* JSObjectionInjectorEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BED511E12AA8BCC00CA6B36 /* JSObjectionInjectorEntry.m */; };
4B42586613F56D42006BC001 /* JSObjectionInjector.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BED511F12AA8BCC00CA6B36 /* JSObjectionInjector.m */; };
4B42586713F56D42006BC001 /* JSObjectionBindingEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BED512012AA8BCC00CA6B36 /* JSObjectionBindingEntry.m */; };
4B42586813F56D42006BC001 /* JSObjectionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B957EC512ADE03900CBF1EB /* JSObjectionModule.m */; };
4B42586913F56D42006BC001 /* JSObjection.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B9D310213DF613500C81C45 /* JSObjection.m */; };
4B42586C13F56D96006BC001 /* InjectionErrorFixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B25BD4A1291BBE700821DC1 /* InjectionErrorFixtures.m */; };
4B42587713F56EA3006BC001 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B42587613F56EA3006BC001 /* Cocoa.framework */; };
4B42588113F56EA3006BC001 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 4B42587F13F56EA3006BC001 /* InfoPlist.strings */; };
4B4258CD13F56F44006BC001 /* Fixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BF451AC12919CAD006EB2D5 /* Fixtures.m */; };
4B4258CE13F56F44006BC001 /* InjectionErrorFixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B25BD4A1291BBE700821DC1 /* InjectionErrorFixtures.m */; };
4B4258CF13F56F45006BC001 /* SpecHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B53482E12F31E93000480AB /* SpecHelper.m */; };
4B4258D013F56F45006BC001 /* ModuleFixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B81F90C135D0ACF00221A88 /* ModuleFixtures.m */; };
4B4258D113F56F45006BC001 /* BasicUsageSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BF4516B129199AF006EB2D5 /* BasicUsageSpecs.m */; };
4B4258D213F56F45006BC001 /* InjectionErrorsSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BF451E21291AD28006EB2D5 /* InjectionErrorsSpecs.m */; };
4B4258D313F56F45006BC001 /* InheritanceSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B7300D712AA8F3400903427 /* InheritanceSpecs.m */; };
4B4258D413F56F45006BC001 /* ModuleUsageSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B95819612AE593F00CBF1EB /* ModuleUsageSpecs.m */; };
4B4258D513F56F45006BC001 /* JSObjectionProviderEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B81F8DC135D06C200221A88 /* JSObjectionProviderEntry.m */; };
4B4258D613F56F45006BC001 /* JSObjectionEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B4B21A71342B79E00833077 /* JSObjectionEntry.m */; };
4B4258D713F56F45006BC001 /* NSObject+Objection.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B53471812F316A4000480AB /* NSObject+Objection.m */; };
4B4258D813F56F45006BC001 /* JSObjectionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B496E6A12B0F3E50053F2A3 /* JSObjectionUtils.m */; };
4B4258D913F56F45006BC001 /* JSObjectionInjectorEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BED511E12AA8BCC00CA6B36 /* JSObjectionInjectorEntry.m */; };
4B4258DA13F56F45006BC001 /* JSObjectionInjector.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BED511F12AA8BCC00CA6B36 /* JSObjectionInjector.m */; };
4B4258DB13F56F45006BC001 /* JSObjectionBindingEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BED512012AA8BCC00CA6B36 /* JSObjectionBindingEntry.m */; };
4B4258DC13F56F45006BC001 /* JSObjectionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B957EC512ADE03900CBF1EB /* JSObjectionModule.m */; };
4B4258DD13F56F45006BC001 /* JSObjection.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B9D310213DF613500C81C45 /* JSObjection.m */; };
4B4258DF13F56F51006BC001 /* OCHamcrest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B4258DE13F56F51006BC001 /* OCHamcrest.framework */; };
4B4289311567F3EC004F73D3 /* InitializerSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B4289301567F3EC004F73D3 /* InitializerSpecs.m */; };
4B4289321567F3EC004F73D3 /* InitializerSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B4289301567F3EC004F73D3 /* InitializerSpecs.m */; };
4B428935156806E6004F73D3 /* InitializerFixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B428934156806E6004F73D3 /* InitializerFixtures.m */; };
4B428936156806E6004F73D3 /* InitializerFixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B428934156806E6004F73D3 /* InitializerFixtures.m */; };
4B496E6C12B0F3E50053F2A3 /* JSObjectionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B496E6A12B0F3E50053F2A3 /* JSObjectionUtils.m */; };
4B496E6D12B0F3E50053F2A3 /* JSObjectionUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B496E6A12B0F3E50053F2A3 /* JSObjectionUtils.m */; };
4B4B21A41342B78E00833077 /* JSObjectionEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B4B21A31342B78E00833077 /* JSObjectionEntry.h */; };
4B4B21A51342B78E00833077 /* JSObjectionEntry.h in Copy Header Files */ = {isa = PBXBuildFile; fileRef = 4B4B21A31342B78E00833077 /* JSObjectionEntry.h */; };
4B4B21A61342B78E00833077 /* JSObjectionEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B4B21A31342B78E00833077 /* JSObjectionEntry.h */; settings = {ATTRIBUTES = (Public, ); }; };
4B4B21A91342B79E00833077 /* JSObjectionEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B4B21A71342B79E00833077 /* JSObjectionEntry.m */; };
4B4B21AC1342B79E00833077 /* JSObjectionEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B4B21A71342B79E00833077 /* JSObjectionEntry.m */; };
4B4F7B5814577AB50064EBFB /* JSObjectFactory.h in Copy Header Files */ = {isa = PBXBuildFile; fileRef = 4BE7875E145647EF00BD705E /* JSObjectFactory.h */; };
4B53383317AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B53383117AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.h */; };
4B53383417AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.h in Copy Header Files */ = {isa = PBXBuildFile; fileRef = 4B53383117AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.h */; };
4B53383517AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B53383117AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.h */; };
4B53383617AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B53383217AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m */; };
4B53383717AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m in Copy Header Files */ = {isa = PBXBuildFile; fileRef = 4B53383217AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m */; };
4B53383817AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B53383217AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m */; };
4B53383917AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B53383217AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m */; };
4B53383A17AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B53383217AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m */; };
4B53471112F3165F000480AB /* NSObject+Objection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B53470E12F3165F000480AB /* NSObject+Objection.h */; settings = {ATTRIBUTES = (Public, ); }; };
4B53471312F3165F000480AB /* NSObject+Objection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B53470E12F3165F000480AB /* NSObject+Objection.h */; };
4B53471512F31660000480AB /* NSObject+Objection.h in Copy Header Files */ = {isa = PBXBuildFile; fileRef = 4B53470E12F3165F000480AB /* NSObject+Objection.h */; };
4B53471A12F316A4000480AB /* NSObject+Objection.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B53471812F316A4000480AB /* NSObject+Objection.m */; };
4B53471B12F316A4000480AB /* NSObject+Objection.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B53471812F316A4000480AB /* NSObject+Objection.m */; };
4B75FA771AC1E3FD00060FE1 /* Stub.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B75FA761AC1E3FD00060FE1 /* Stub.swift */; };
4B75FA781AC1E3FD00060FE1 /* Stub.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B75FA761AC1E3FD00060FE1 /* Stub.swift */; };
4B81F8D0135D06A300221A88 /* JSObjectionProviderEntry.h in Copy Header Files */ = {isa = PBXBuildFile; fileRef = 4B81F8CE135D06A300221A88 /* JSObjectionProviderEntry.h */; };
4B81F8D2135D06A300221A88 /* JSObjectionProviderEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B81F8CE135D06A300221A88 /* JSObjectionProviderEntry.h */; };
4B81F8D5135D06A300221A88 /* JSObjectionProviderEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B81F8CE135D06A300221A88 /* JSObjectionProviderEntry.h */; settings = {ATTRIBUTES = (Public, ); }; };
4B81F8DE135D06C200221A88 /* JSObjectionProviderEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B81F8DC135D06C200221A88 /* JSObjectionProviderEntry.m */; };
4B81F8E0135D06C200221A88 /* JSObjectionProviderEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B81F8DC135D06C200221A88 /* JSObjectionProviderEntry.m */; };
4B81FA3A135D245B00221A88 /* Objection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B957EE612ADE26500CBF1EB /* Objection.h */; };
4B81FA3B135D245B00221A88 /* JSObjectionInjectorEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BED512F12AA8BF300CA6B36 /* JSObjectionInjectorEntry.h */; };
4B81FA3C135D245B00221A88 /* JSObjectionInjector.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BED513012AA8BF300CA6B36 /* JSObjectionInjector.h */; };
4B81FA3D135D245B00221A88 /* JSObjectionBindingEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BED513112AA8BF300CA6B36 /* JSObjectionBindingEntry.h */; };
4B81FA3E135D245B00221A88 /* JSObjectionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B957EC212ADDFC500CBF1EB /* JSObjectionModule.h */; };
4B833AA11AC1B62200C84F00 /* Quick.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B833A951AC1B60C00C84F00 /* Quick.framework */; };
4B833AA61AC1BFCB00C84F00 /* Nimble.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B833A841AC1B5FE00C84F00 /* Nimble.framework */; };
4B83A7E41A1FC19000C59E05 /* OCHamcrestIOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B83A7E31A1FC19000C59E05 /* OCHamcrestIOS.framework */; };
4B8899FA1AC1EB7C00B548E9 /* OCHamcrest.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4B4258DE13F56F51006BC001 /* OCHamcrest.framework */; };
4B957EC312ADDFC500CBF1EB /* JSObjectionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B957EC212ADDFC500CBF1EB /* JSObjectionModule.h */; settings = {ATTRIBUTES = (Public, ); }; };
4B957EC712ADE03900CBF1EB /* JSObjectionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B957EC512ADE03900CBF1EB /* JSObjectionModule.m */; };
4B957EC812ADE05D00CBF1EB /* JSObjectionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B957EC512ADE03900CBF1EB /* JSObjectionModule.m */; };
4B957EE712ADE26500CBF1EB /* Objection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B957EE612ADE26500CBF1EB /* Objection.h */; settings = {ATTRIBUTES = (Public, ); }; };
4B9582C212AE753800CBF1EB /* Objection.h in Copy Header Files */ = {isa = PBXBuildFile; fileRef = 4B957EE612ADE26500CBF1EB /* Objection.h */; };
4B9582C312AE755000CBF1EB /* JSObjectionModule.h in Copy Header Files */ = {isa = PBXBuildFile; fileRef = 4B957EC212ADDFC500CBF1EB /* JSObjectionModule.h */; };
4B9D30FF13DF5FAC00C81C45 /* JSObjectionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9D30FE13DF5FAC00C81C45 /* JSObjectionUtils.h */; };
4B9D310013DF5FAC00C81C45 /* JSObjectionUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9D30FE13DF5FAC00C81C45 /* JSObjectionUtils.h */; settings = {ATTRIBUTES = (Public, ); }; };
4B9D310313DF613600C81C45 /* JSObjection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9D310113DF613500C81C45 /* JSObjection.h */; };
4B9D310413DF613600C81C45 /* JSObjection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9D310113DF613500C81C45 /* JSObjection.h */; settings = {ATTRIBUTES = (Public, ); }; };
4B9D310513DF613600C81C45 /* JSObjection.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B9D310213DF613500C81C45 /* JSObjection.m */; };
4B9D310713DF613600C81C45 /* JSObjection.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B9D310213DF613500C81C45 /* JSObjection.m */; };
4B9D311413DF79FE00C81C45 /* JSObjectionUtils.h in Copy Header Files */ = {isa = PBXBuildFile; fileRef = 4B9D30FE13DF5FAC00C81C45 /* JSObjectionUtils.h */; };
4B9D311513DF79FE00C81C45 /* JSObjection.h in Copy Header Files */ = {isa = PBXBuildFile; fileRef = 4B9D310113DF613500C81C45 /* JSObjection.h */; };
4BA620D01C06BEAE00DB87B6 /* InjectImplementsProtocolSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BA620CF1C06BEAE00DB87B6 /* InjectImplementsProtocolSpecs.m */; };
4BA620D11C06BEAE00DB87B6 /* InjectImplementsProtocolSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BA620CF1C06BEAE00DB87B6 /* InjectImplementsProtocolSpecs.m */; };
4BA6DD1F12AAB3CD00CFFD70 /* JSObjectionInjectorEntry.h in Copy Header Files */ = {isa = PBXBuildFile; fileRef = 4BED512F12AA8BF300CA6B36 /* JSObjectionInjectorEntry.h */; };
4BA6DD2012AAB3CD00CFFD70 /* JSObjectionInjector.h in Copy Header Files */ = {isa = PBXBuildFile; fileRef = 4BED513012AA8BF300CA6B36 /* JSObjectionInjector.h */; };
4BA6DD2112AAB3CD00CFFD70 /* JSObjectionBindingEntry.h in Copy Header Files */ = {isa = PBXBuildFile; fileRef = 4BED513112AA8BF300CA6B36 /* JSObjectionBindingEntry.h */; };
4BB07D751668679A00D9BA1E /* AddAndRemoveModulesSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BB07D741668679A00D9BA1E /* AddAndRemoveModulesSpecs.m */; };
4BB07D761668679A00D9BA1E /* AddAndRemoveModulesSpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BB07D741668679A00D9BA1E /* AddAndRemoveModulesSpecs.m */; };
4BE78760145647EF00BD705E /* JSObjectFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BE7875E145647EF00BD705E /* JSObjectFactory.h */; };
4BE78761145647EF00BD705E /* JSObjectFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BE7875E145647EF00BD705E /* JSObjectFactory.h */; settings = {ATTRIBUTES = (Public, ); }; };
4BE78762145647EF00BD705E /* JSObjectFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BE7875F145647EF00BD705E /* JSObjectFactory.m */; };
4BE78763145647EF00BD705E /* JSObjectFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BE7875F145647EF00BD705E /* JSObjectFactory.m */; };
4BE78764145647EF00BD705E /* JSObjectFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BE7875F145647EF00BD705E /* JSObjectFactory.m */; };
4BE78765145647EF00BD705E /* JSObjectFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BE7875F145647EF00BD705E /* JSObjectFactory.m */; };
4BED512412AA8BCC00CA6B36 /* JSObjectionInjectorEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BED511E12AA8BCC00CA6B36 /* JSObjectionInjectorEntry.m */; };
4BED512512AA8BCC00CA6B36 /* JSObjectionInjector.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BED511F12AA8BCC00CA6B36 /* JSObjectionInjector.m */; };
4BED512612AA8BCC00CA6B36 /* JSObjectionBindingEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BED512012AA8BCC00CA6B36 /* JSObjectionBindingEntry.m */; };
4BED512A12AA8BCC00CA6B36 /* JSObjectionInjectorEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BED511E12AA8BCC00CA6B36 /* JSObjectionInjectorEntry.m */; };
4BED512B12AA8BCC00CA6B36 /* JSObjectionInjector.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BED511F12AA8BCC00CA6B36 /* JSObjectionInjector.m */; };
4BED512C12AA8BCC00CA6B36 /* JSObjectionBindingEntry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BED512012AA8BCC00CA6B36 /* JSObjectionBindingEntry.m */; };
4BED513212AA8BF300CA6B36 /* JSObjectionInjectorEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BED512F12AA8BF300CA6B36 /* JSObjectionInjectorEntry.h */; settings = {ATTRIBUTES = (Public, ); }; };
4BED513312AA8BF300CA6B36 /* JSObjectionInjector.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BED513012AA8BF300CA6B36 /* JSObjectionInjector.h */; settings = {ATTRIBUTES = (Public, ); }; };
4BED513412AA8BF300CA6B36 /* JSObjectionBindingEntry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BED513112AA8BF300CA6B36 /* JSObjectionBindingEntry.h */; settings = {ATTRIBUTES = (Public, ); }; };
D2AAC07E0554694100DB5193 /* CircularDependencySpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = D2AAC07E0554694100DB5192 /* CircularDependencySpecs.m */; };
D2AAC07E0554694100DB5194 /* CircularDependencySpecs.m in Sources */ = {isa = PBXBuildFile; fileRef = D2AAC07E0554694100DB5192 /* CircularDependencySpecs.m */; };
D2AAC07E0554694100DB5196 /* CircularDependencyFixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = D2AAC07E0554694100DB5195 /* CircularDependencyFixtures.m */; };
D2AAC07E0554694100DB5197 /* CircularDependencyFixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = D2AAC07E0554694100DB5195 /* CircularDependencyFixtures.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
4B2D269C1AC1E53B00FF802F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A8B1AC1B60C00C84F00 /* Quick.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = DAEB6B8D1943873100289F44;
remoteInfo = "Quick-OSX";
};
4B2D269E1AC1E53B00FF802F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A7C1AC1B5FE00C84F00 /* Nimble.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 1F925EAC195C0D6300ED456B;
remoteInfo = "Nimble-OSX";
};
4B833A831AC1B5FE00C84F00 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A7C1AC1B5FE00C84F00 /* Nimble.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 1F1A74291940169200FFFC47;
remoteInfo = "Nimble-iOS";
};
4B833A851AC1B5FE00C84F00 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A7C1AC1B5FE00C84F00 /* Nimble.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 1F1A74341940169200FFFC47;
remoteInfo = "Nimble-iOSTests";
};
4B833A871AC1B5FE00C84F00 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A7C1AC1B5FE00C84F00 /* Nimble.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 1F925EAD195C0D6300ED456B;
remoteInfo = "Nimble-OSX";
};
4B833A891AC1B5FE00C84F00 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A7C1AC1B5FE00C84F00 /* Nimble.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 1F925EB7195C0D6300ED456B;
remoteInfo = "Nimble-OSXTests";
};
4B833A941AC1B60C00C84F00 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A8B1AC1B60C00C84F00 /* Quick.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = DAEB6B8E1943873100289F44;
remoteInfo = "Quick-OSX";
};
4B833A961AC1B60C00C84F00 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A8B1AC1B60C00C84F00 /* Quick.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = DAEB6B991943873100289F44;
remoteInfo = "Quick-OSXTests";
};
4B833A981AC1B60C00C84F00 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A8B1AC1B60C00C84F00 /* Quick.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = DA5663E81A4C8D8500193C88;
remoteInfo = "QuickFocused-OSXTests";
};
4B833A9A1AC1B60C00C84F00 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A8B1AC1B60C00C84F00 /* Quick.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 5A5D117C19473F2100F6D13D;
remoteInfo = "Quick-iOS";
};
4B833A9C1AC1B60C00C84F00 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A8B1AC1B60C00C84F00 /* Quick.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 5A5D118619473F2100F6D13D;
remoteInfo = "Quick-iOSTests";
};
4B833A9E1AC1B60C00C84F00 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A8B1AC1B60C00C84F00 /* Quick.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = DA9876B21A4C70EB0004AA17;
remoteInfo = "QuickFocused-iOSTests";
};
4B833AA71AC1D68900C84F00 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A8B1AC1B60C00C84F00 /* Quick.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 5A5D117B19473F2100F6D13D;
remoteInfo = "Quick-iOS";
};
4B833AA91AC1D68900C84F00 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4B833A7C1AC1B5FE00C84F00 /* Nimble.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 1F1A74281940169200FFFC47;
remoteInfo = "Nimble-iOS";
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
4B25BE571291C58800821DC1 /* Copy Header Files */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 12;
dstPath = "${BUILD_DIR}/${CONFIGURATION}-iphoneuniversal/${PRODUCT_NAME}.framework/Versions/A/Headers/";
dstSubfolderSpec = 0;
files = (
4B9D311413DF79FE00C81C45 /* JSObjectionUtils.h in Copy Header Files */,
4B9D311513DF79FE00C81C45 /* JSObjection.h in Copy Header Files */,
4B9582C312AE755000CBF1EB /* JSObjectionModule.h in Copy Header Files */,
4B4F7B5814577AB50064EBFB /* JSObjectFactory.h in Copy Header Files */,
4B9582C212AE753800CBF1EB /* Objection.h in Copy Header Files */,
4BA6DD1F12AAB3CD00CFFD70 /* JSObjectionInjectorEntry.h in Copy Header Files */,
4BA6DD2012AAB3CD00CFFD70 /* JSObjectionInjector.h in Copy Header Files */,
4BA6DD2112AAB3CD00CFFD70 /* JSObjectionBindingEntry.h in Copy Header Files */,
4B53471512F31660000480AB /* NSObject+Objection.h in Copy Header Files */,
4B4B21A51342B78E00833077 /* JSObjectionEntry.h in Copy Header Files */,
4B81F8D0135D06A300221A88 /* JSObjectionProviderEntry.h in Copy Header Files */,
4B53383417AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.h in Copy Header Files */,
4B53383717AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m in Copy Header Files */,
);
name = "Copy Header Files";
runOnlyForDeploymentPostprocessing = 0;
};
4B8899F91AC1EB5A00B548E9 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 12;
dstPath = "";
dstSubfolderSpec = 16;
files = (
4B8899FA1AC1EB7C00B548E9 /* OCHamcrest.framework in CopyFiles */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
4B25BD491291BBE700821DC1 /* InjectionErrorFixtures.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InjectionErrorFixtures.h; sourceTree = "<group>"; };
4B25BD4A1291BBE700821DC1 /* InjectionErrorFixtures.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InjectionErrorFixtures.m; sourceTree = "<group>"; };
4B42580813F56CC0006BC001 /* Specs-iOS.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Specs-iOS.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
4B42580E13F56CC0006BC001 /* Specs-iOS-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Specs-iOS-Info.plist"; sourceTree = "<group>"; };
4B42581013F56CC1006BC001 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
4B42581213F56CC1006BC001 /* Specs-iOS-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Specs-iOS-Prefix.pch"; sourceTree = "<group>"; };
4B42587513F56EA3006BC001 /* Specs-OSX.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Specs-OSX.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
4B42587613F56EA3006BC001 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
4B42587913F56EA3006BC001 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
4B42587A13F56EA3006BC001 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
4B42587B13F56EA3006BC001 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
4B42587E13F56EA3006BC001 /* Specs-OSX-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Specs-OSX-Info.plist"; sourceTree = "<group>"; };
4B42588013F56EA3006BC001 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
4B42588213F56EA3006BC001 /* Specs-OSX-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Specs-OSX-Prefix.pch"; sourceTree = "<group>"; };
4B4258DE13F56F51006BC001 /* OCHamcrest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OCHamcrest.framework; path = Vendor/OCHamcrest.framework; sourceTree = "<group>"; };
4B4289301567F3EC004F73D3 /* InitializerSpecs.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InitializerSpecs.m; sourceTree = "<group>"; };
4B428933156806E6004F73D3 /* InitializerFixtures.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InitializerFixtures.h; sourceTree = "<group>"; };
4B428934156806E6004F73D3 /* InitializerFixtures.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InitializerFixtures.m; sourceTree = "<group>"; };
4B496E6A12B0F3E50053F2A3 /* JSObjectionUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSObjectionUtils.m; sourceTree = "<group>"; };
4B4B21A31342B78E00833077 /* JSObjectionEntry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSObjectionEntry.h; sourceTree = "<group>"; };
4B4B21A71342B79E00833077 /* JSObjectionEntry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = JSObjectionEntry.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
4B53383117AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSObjectionRuntimePropertyReflector.h; sourceTree = "<group>"; };
4B53383217AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSObjectionRuntimePropertyReflector.m; sourceTree = "<group>"; };
4B53470E12F3165F000480AB /* NSObject+Objection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Objection.h"; sourceTree = "<group>"; };
4B53471812F316A4000480AB /* NSObject+Objection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Objection.m"; sourceTree = "<group>"; };
4B53482E12F31E93000480AB /* SpecHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SpecHelper.m; sourceTree = "<group>"; };
4B7300D712AA8F3400903427 /* InheritanceSpecs.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InheritanceSpecs.m; sourceTree = "<group>"; };
4B75FA761AC1E3FD00060FE1 /* Stub.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Stub.swift; path = ../Stub.swift; sourceTree = "<group>"; };
4B81F8CE135D06A300221A88 /* JSObjectionProviderEntry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSObjectionProviderEntry.h; sourceTree = "<group>"; };
4B81F8DC135D06C200221A88 /* JSObjectionProviderEntry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSObjectionProviderEntry.m; sourceTree = "<group>"; };
4B81F90B135D0ACF00221A88 /* ModuleFixtures.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModuleFixtures.h; sourceTree = "<group>"; };
4B81F90C135D0ACF00221A88 /* ModuleFixtures.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModuleFixtures.m; sourceTree = "<group>"; };
4B833A7C1AC1B5FE00C84F00 /* Nimble.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Nimble.xcodeproj; path = Vendor/Nimble/Nimble.xcodeproj; sourceTree = "<group>"; };
4B833A8B1AC1B60C00C84F00 /* Quick.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Quick.xcodeproj; path = Vendor/Quick/Quick.xcodeproj; sourceTree = "<group>"; };
4B83A7E31A1FC19000C59E05 /* OCHamcrestIOS.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OCHamcrestIOS.framework; path = Vendor/OCHamcrestIOS.framework; sourceTree = "<group>"; };
4B957EC212ADDFC500CBF1EB /* JSObjectionModule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSObjectionModule.h; sourceTree = "<group>"; };
4B957EC512ADE03900CBF1EB /* JSObjectionModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSObjectionModule.m; sourceTree = "<group>"; };
4B957EE612ADE26500CBF1EB /* Objection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Objection.h; sourceTree = "<group>"; };
4B95819612AE593F00CBF1EB /* ModuleUsageSpecs.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModuleUsageSpecs.m; sourceTree = "<group>"; };
4B9D30FE13DF5FAC00C81C45 /* JSObjectionUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSObjectionUtils.h; sourceTree = "<group>"; };
4B9D310113DF613500C81C45 /* JSObjection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSObjection.h; sourceTree = "<group>"; };
4B9D310213DF613500C81C45 /* JSObjection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSObjection.m; sourceTree = "<group>"; };
4BA620CF1C06BEAE00DB87B6 /* InjectImplementsProtocolSpecs.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InjectImplementsProtocolSpecs.m; sourceTree = "<group>"; };
4BA9CFF412AA86E600674F0E /* OCHamcrest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OCHamcrest.framework; path = Vendor/OCHamcrest.framework; sourceTree = "<group>"; };
4BB07D741668679A00D9BA1E /* AddAndRemoveModulesSpecs.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddAndRemoveModulesSpecs.m; sourceTree = "<group>"; };
4BB428A116D3205C00710F1E /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; };
4BE7875E145647EF00BD705E /* JSObjectFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSObjectFactory.h; sourceTree = "<group>"; };
4BE7875F145647EF00BD705E /* JSObjectFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = JSObjectFactory.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
4BED511612AA8B7A00CA6B36 /* Objection.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Objection.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4BED511712AA8B7A00CA6B36 /* Objection-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Objection-Info.plist"; sourceTree = "<group>"; };
4BED511E12AA8BCC00CA6B36 /* JSObjectionInjectorEntry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JSObjectionInjectorEntry.m; sourceTree = "<group>"; };
4BED511F12AA8BCC00CA6B36 /* JSObjectionInjector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = JSObjectionInjector.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
4BED512012AA8BCC00CA6B36 /* JSObjectionBindingEntry.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = JSObjectionBindingEntry.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
4BED512F12AA8BF300CA6B36 /* JSObjectionInjectorEntry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSObjectionInjectorEntry.h; sourceTree = "<group>"; };
4BED513012AA8BF300CA6B36 /* JSObjectionInjector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSObjectionInjector.h; sourceTree = "<group>"; };
4BED513112AA8BF300CA6B36 /* JSObjectionBindingEntry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSObjectionBindingEntry.h; sourceTree = "<group>"; };
4BF4514C129198C6006EB2D5 /* SpecHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpecHelper.h; sourceTree = "<group>"; };
4BF4516B129199AF006EB2D5 /* BasicUsageSpecs.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BasicUsageSpecs.m; sourceTree = "<group>"; };
4BF451AB12919CAD006EB2D5 /* Fixtures.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Fixtures.h; sourceTree = "<group>"; };
4BF451AC12919CAD006EB2D5 /* Fixtures.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Fixtures.m; sourceTree = "<group>"; };
4BF451E21291AD28006EB2D5 /* InjectionErrorsSpecs.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InjectionErrorsSpecs.m; sourceTree = "<group>"; };
AACBBE490F95108600F1A2B1 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
D2AAC07E0554694100DB518D /* libObjection-StaticLib.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libObjection-StaticLib.a"; sourceTree = BUILT_PRODUCTS_DIR; };
D2AAC07E0554694100DB5192 /* CircularDependencySpecs.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CircularDependencySpecs.m; sourceTree = "<group>"; };
D2AAC07E0554694100DB5195 /* CircularDependencyFixtures.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CircularDependencyFixtures.m; sourceTree = "<group>"; };
D2AAC07E0554694100DB5198 /* CircularDependencyFixtures.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CircularDependencyFixtures.h; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
4B42580413F56CC0006BC001 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
4B833AA11AC1B62200C84F00 /* Quick.framework in Frameworks */,
4B833AA61AC1BFCB00C84F00 /* Nimble.framework in Frameworks */,
4B83A7E41A1FC19000C59E05 /* OCHamcrestIOS.framework in Frameworks */,
4B42580A13F56CC0006BC001 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4B42587113F56EA3006BC001 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
4B2D26A01AC1E54400FF802F /* Nimble.framework in Frameworks */,
4B2D26A11AC1E54400FF802F /* Quick.framework in Frameworks */,
4B4258DF13F56F51006BC001 /* OCHamcrest.framework in Frameworks */,
4B42587713F56EA3006BC001 /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4BED511412AA8B7A00CA6B36 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
D2AAC07C0554694100DB518D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
034768DFFF38A50411DB9C8B /* Products */ = {
isa = PBXGroup;
children = (
D2AAC07E0554694100DB518D /* libObjection-StaticLib.a */,
4BED511612AA8B7A00CA6B36 /* Objection.framework */,
4B42580813F56CC0006BC001 /* Specs-iOS.xctest */,
4B42587513F56EA3006BC001 /* Specs-OSX.xctest */,
);
name = Products;
sourceTree = "<group>";
};
0867D691FE84028FC02AAC07 /* Objection */ = {
isa = PBXGroup;
children = (
4BF45123129197F3006EB2D5 /* Specs */,
4BED512E12AA8BD600CA6B36 /* Headers */,
08FB77AEFE84172EC02AAC07 /* Source */,
0867D69AFE84028FC02AAC07 /* Frameworks */,
034768DFFF38A50411DB9C8B /* Products */,
4BED511712AA8B7A00CA6B36 /* Objection-Info.plist */,
);
name = Objection;
sourceTree = "<group>";
};
0867D69AFE84028FC02AAC07 /* Frameworks */ = {
isa = PBXGroup;
children = (
4B833A8B1AC1B60C00C84F00 /* Quick.xcodeproj */,
4B833A7C1AC1B5FE00C84F00 /* Nimble.xcodeproj */,
4B83A7E31A1FC19000C59E05 /* OCHamcrestIOS.framework */,
4B4258DE13F56F51006BC001 /* OCHamcrest.framework */,
AACBBE490F95108600F1A2B1 /* Foundation.framework */,
4BA9CFF412AA86E600674F0E /* OCHamcrest.framework */,
4B42587613F56EA3006BC001 /* Cocoa.framework */,
4BB428A116D3205C00710F1E /* SenTestingKit.framework */,
4B42587813F56EA3006BC001 /* Other Frameworks */,
);
name = Frameworks;
sourceTree = "<group>";
};
08FB77AEFE84172EC02AAC07 /* Source */ = {
isa = PBXGroup;
children = (
4B81F8DC135D06C200221A88 /* JSObjectionProviderEntry.m */,
4B4B21A71342B79E00833077 /* JSObjectionEntry.m */,
4B53471812F316A4000480AB /* NSObject+Objection.m */,
4B496E6A12B0F3E50053F2A3 /* JSObjectionUtils.m */,
4BED511E12AA8BCC00CA6B36 /* JSObjectionInjectorEntry.m */,
4BED511F12AA8BCC00CA6B36 /* JSObjectionInjector.m */,
4BED512012AA8BCC00CA6B36 /* JSObjectionBindingEntry.m */,
4B957EC512ADE03900CBF1EB /* JSObjectionModule.m */,
4B9D310213DF613500C81C45 /* JSObjection.m */,
4BE7875F145647EF00BD705E /* JSObjectFactory.m */,
4B53383217AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m */,
);
path = Source;
sourceTree = "<group>";
};
4B42580C13F56CC0006BC001 /* Specs-iOS */ = {
isa = PBXGroup;
children = (
4B42580D13F56CC0006BC001 /* Supporting Files */,
);
path = "Specs-iOS";
sourceTree = SOURCE_ROOT;
};
4B42580D13F56CC0006BC001 /* Supporting Files */ = {
isa = PBXGroup;
children = (
4B42580E13F56CC0006BC001 /* Specs-iOS-Info.plist */,
4B42580F13F56CC1006BC001 /* InfoPlist.strings */,
4B42581213F56CC1006BC001 /* Specs-iOS-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
4B42587813F56EA3006BC001 /* Other Frameworks */ = {
isa = PBXGroup;
children = (
4B42587913F56EA3006BC001 /* AppKit.framework */,
4B42587A13F56EA3006BC001 /* CoreData.framework */,
4B42587B13F56EA3006BC001 /* Foundation.framework */,
);
name = "Other Frameworks";
sourceTree = "<group>";
};
4B42587C13F56EA3006BC001 /* Specs-OSX */ = {
isa = PBXGroup;
children = (
4B42587D13F56EA3006BC001 /* Supporting Files */,
);
path = "Specs-OSX";
sourceTree = SOURCE_ROOT;
};
4B42587D13F56EA3006BC001 /* Supporting Files */ = {
isa = PBXGroup;
children = (
4B42587E13F56EA3006BC001 /* Specs-OSX-Info.plist */,
4B42587F13F56EA3006BC001 /* InfoPlist.strings */,
4B42588213F56EA3006BC001 /* Specs-OSX-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
4B833A7D1AC1B5FE00C84F00 /* Products */ = {
isa = PBXGroup;
children = (
4B833A841AC1B5FE00C84F00 /* Nimble.framework */,
4B833A861AC1B5FE00C84F00 /* NimbleTests.xctest */,
4B833A881AC1B5FE00C84F00 /* Nimble.framework */,
4B833A8A1AC1B5FE00C84F00 /* NimbleTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
4B833A8C1AC1B60C00C84F00 /* Products */ = {
isa = PBXGroup;
children = (
4B833A951AC1B60C00C84F00 /* Quick.framework */,
4B833A971AC1B60C00C84F00 /* Quick-OSXTests.xctest */,
4B833A991AC1B60C00C84F00 /* QuickFocused-OSXTests.xctest */,
4B833A9B1AC1B60C00C84F00 /* Quick.framework */,
4B833A9D1AC1B60C00C84F00 /* Quick-iOSTests.xctest */,
4B833A9F1AC1B60C00C84F00 /* QuickFocused-iOSTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
4BED512E12AA8BD600CA6B36 /* Headers */ = {
isa = PBXGroup;
children = (
4BE7875E145647EF00BD705E /* JSObjectFactory.h */,
4B9D30FE13DF5FAC00C81C45 /* JSObjectionUtils.h */,
4B4B21A31342B78E00833077 /* JSObjectionEntry.h */,
4B957EE612ADE26500CBF1EB /* Objection.h */,
4BED512F12AA8BF300CA6B36 /* JSObjectionInjectorEntry.h */,
4BED513012AA8BF300CA6B36 /* JSObjectionInjector.h */,
4BED513112AA8BF300CA6B36 /* JSObjectionBindingEntry.h */,
4B957EC212ADDFC500CBF1EB /* JSObjectionModule.h */,
4B53470E12F3165F000480AB /* NSObject+Objection.h */,
4B81F8CE135D06A300221A88 /* JSObjectionProviderEntry.h */,
4B53383117AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.h */,
4B9D310113DF613500C81C45 /* JSObjection.h */,
);
name = Headers;
path = Source;
sourceTree = "<group>";
};
4BF45123129197F3006EB2D5 /* Specs */ = {
isa = PBXGroup;
children = (
4B42587C13F56EA3006BC001 /* Specs-OSX */,
4B42580C13F56CC0006BC001 /* Specs-iOS */,
4BF452461291AFEA006EB2D5 /* Helpers */,
D2AAC07E0554694100DB5192 /* CircularDependencySpecs.m */,
4BF4516B129199AF006EB2D5 /* BasicUsageSpecs.m */,
4BF451E21291AD28006EB2D5 /* InjectionErrorsSpecs.m */,
4B7300D712AA8F3400903427 /* InheritanceSpecs.m */,
4B95819612AE593F00CBF1EB /* ModuleUsageSpecs.m */,
4B4289301567F3EC004F73D3 /* InitializerSpecs.m */,
4BB07D741668679A00D9BA1E /* AddAndRemoveModulesSpecs.m */,
4BA620CF1C06BEAE00DB87B6 /* InjectImplementsProtocolSpecs.m */,
);
path = Specs;
sourceTree = "<group>";
};
4BF452461291AFEA006EB2D5 /* Helpers */ = {
isa = PBXGroup;
children = (
4B75FA761AC1E3FD00060FE1 /* Stub.swift */,
D2AAC07E0554694100DB5198 /* CircularDependencyFixtures.h */,
D2AAC07E0554694100DB5195 /* CircularDependencyFixtures.m */,
4BF4514C129198C6006EB2D5 /* SpecHelper.h */,
4BF451AB12919CAD006EB2D5 /* Fixtures.h */,
4BF451AC12919CAD006EB2D5 /* Fixtures.m */,
4B25BD491291BBE700821DC1 /* InjectionErrorFixtures.h */,
4B25BD4A1291BBE700821DC1 /* InjectionErrorFixtures.m */,
4B53482E12F31E93000480AB /* SpecHelper.m */,
4B81F90B135D0ACF00221A88 /* ModuleFixtures.h */,
4B81F90C135D0ACF00221A88 /* ModuleFixtures.m */,
4B428933156806E6004F73D3 /* InitializerFixtures.h */,
4B428934156806E6004F73D3 /* InitializerFixtures.m */,
);
name = Helpers;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
4BED511112AA8B7A00CA6B36 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
4BED513212AA8BF300CA6B36 /* JSObjectionInjectorEntry.h in Headers */,
4BED513312AA8BF300CA6B36 /* JSObjectionInjector.h in Headers */,
4BED513412AA8BF300CA6B36 /* JSObjectionBindingEntry.h in Headers */,
4B957EC312ADDFC500CBF1EB /* JSObjectionModule.h in Headers */,
4B957EE712ADE26500CBF1EB /* Objection.h in Headers */,
4B53471112F3165F000480AB /* NSObject+Objection.h in Headers */,
4B4B21A61342B78E00833077 /* JSObjectionEntry.h in Headers */,
4B9D310013DF5FAC00C81C45 /* JSObjectionUtils.h in Headers */,
4B81F8D5135D06A300221A88 /* JSObjectionProviderEntry.h in Headers */,
4BE78761145647EF00BD705E /* JSObjectFactory.h in Headers */,
4B9D310413DF613600C81C45 /* JSObjection.h in Headers */,
4B53383517AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D2AAC07A0554694100DB518D /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
4B81FA3A135D245B00221A88 /* Objection.h in Headers */,
4B81FA3B135D245B00221A88 /* JSObjectionInjectorEntry.h in Headers */,
4B81FA3C135D245B00221A88 /* JSObjectionInjector.h in Headers */,
4B81FA3D135D245B00221A88 /* JSObjectionBindingEntry.h in Headers */,
4B81FA3E135D245B00221A88 /* JSObjectionModule.h in Headers */,
4B53471312F3165F000480AB /* NSObject+Objection.h in Headers */,
4B4B21A41342B78E00833077 /* JSObjectionEntry.h in Headers */,
4B81F8D2135D06A300221A88 /* JSObjectionProviderEntry.h in Headers */,
4B9D30FF13DF5FAC00C81C45 /* JSObjectionUtils.h in Headers */,
4B9D310313DF613600C81C45 /* JSObjection.h in Headers */,
4BE78760145647EF00BD705E /* JSObjectFactory.h in Headers */,
4B53383317AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
4B42580713F56CC0006BC001 /* Specs-iOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = 4B42581713F56CC1006BC001 /* Build configuration list for PBXNativeTarget "Specs-iOS" */;
buildPhases = (
4B42580313F56CC0006BC001 /* Sources */,
4B42580413F56CC0006BC001 /* Frameworks */,
4B42580513F56CC0006BC001 /* Resources */,
);
buildRules = (
);
dependencies = (
4B833AA81AC1D68900C84F00 /* PBXTargetDependency */,
4B833AAA1AC1D68900C84F00 /* PBXTargetDependency */,
);
name = "Specs-iOS";
productName = "Specs-iOS";
productReference = 4B42580813F56CC0006BC001 /* Specs-iOS.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
4B42587413F56EA3006BC001 /* Specs-OSX */ = {
isa = PBXNativeTarget;
buildConfigurationList = 4B42588713F56EA3006BC001 /* Build configuration list for PBXNativeTarget "Specs-OSX" */;
buildPhases = (
4B42587013F56EA3006BC001 /* Sources */,
4B42587113F56EA3006BC001 /* Frameworks */,
4B42587213F56EA3006BC001 /* Resources */,
4B8899F91AC1EB5A00B548E9 /* CopyFiles */,
);
buildRules = (
);
dependencies = (
4B2D269D1AC1E53B00FF802F /* PBXTargetDependency */,
4B2D269F1AC1E53B00FF802F /* PBXTargetDependency */,
);
name = "Specs-OSX";
productName = "Specs-OSX";
productReference = 4B42587513F56EA3006BC001 /* Specs-OSX.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
4BED511512AA8B7A00CA6B36 /* Objection */ = {
isa = PBXNativeTarget;
buildConfigurationList = 4BED511A12AA8B7A00CA6B36 /* Build configuration list for PBXNativeTarget "Objection" */;
buildPhases = (
4BED511112AA8B7A00CA6B36 /* Headers */,
4BED511212AA8B7A00CA6B36 /* Resources */,
4BED511312AA8B7A00CA6B36 /* Sources */,
4BED511412AA8B7A00CA6B36 /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = Objection;
productName = Objection;
productReference = 4BED511612AA8B7A00CA6B36 /* Objection.framework */;
productType = "com.apple.product-type.framework";
};
D2AAC07D0554694100DB518D /* Objection-StaticLib */ = {
isa = PBXNativeTarget;
buildConfigurationList = 1DEB921E08733DC00010E9CD /* Build configuration list for PBXNativeTarget "Objection-StaticLib" */;
buildPhases = (
D2AAC07A0554694100DB518D /* Headers */,
D2AAC07B0554694100DB518D /* Sources */,
D2AAC07C0554694100DB518D /* Frameworks */,
);
buildRules = (
);
dependencies = (
);
name = "Objection-StaticLib";
productName = Objection;
productReference = D2AAC07E0554694100DB518D /* libObjection-StaticLib.a */;
productType = "com.apple.product-type.library.static";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
0867D690FE84028FC02AAC07 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0640;
};
buildConfigurationList = 1DEB922208733DC00010E9CD /* Build configuration list for PBXProject "Objection" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
Japanese,
French,
German,
en,
);
mainGroup = 0867D691FE84028FC02AAC07 /* Objection */;
productRefGroup = 034768DFFF38A50411DB9C8B /* Products */;
projectDirPath = "";
projectReferences = (
{
ProductGroup = 4B833A7D1AC1B5FE00C84F00 /* Products */;
ProjectRef = 4B833A7C1AC1B5FE00C84F00 /* Nimble.xcodeproj */;
},
{
ProductGroup = 4B833A8C1AC1B60C00C84F00 /* Products */;
ProjectRef = 4B833A8B1AC1B60C00C84F00 /* Quick.xcodeproj */;
},
);
projectRoot = "";
targets = (
D2AAC07D0554694100DB518D /* Objection-StaticLib */,
4B25BE4A1291C43400821DC1 /* Objection-iOS */,
4BED511512AA8B7A00CA6B36 /* Objection */,
4B42580713F56CC0006BC001 /* Specs-iOS */,
4B42587413F56EA3006BC001 /* Specs-OSX */,
);
};
/* End PBXProject section */
/* Begin PBXReferenceProxy section */
4B833A841AC1B5FE00C84F00 /* Nimble.framework */ = {
isa = PBXReferenceProxy;
fileType = wrapper.framework;
path = Nimble.framework;
remoteRef = 4B833A831AC1B5FE00C84F00 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
4B833A861AC1B5FE00C84F00 /* NimbleTests.xctest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = NimbleTests.xctest;
remoteRef = 4B833A851AC1B5FE00C84F00 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
4B833A881AC1B5FE00C84F00 /* Nimble.framework */ = {
isa = PBXReferenceProxy;
fileType = wrapper.framework;
path = Nimble.framework;
remoteRef = 4B833A871AC1B5FE00C84F00 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
4B833A8A1AC1B5FE00C84F00 /* NimbleTests.xctest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = NimbleTests.xctest;
remoteRef = 4B833A891AC1B5FE00C84F00 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
4B833A951AC1B60C00C84F00 /* Quick.framework */ = {
isa = PBXReferenceProxy;
fileType = wrapper.framework;
path = Quick.framework;
remoteRef = 4B833A941AC1B60C00C84F00 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
4B833A971AC1B60C00C84F00 /* Quick-OSXTests.xctest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = "Quick-OSXTests.xctest";
remoteRef = 4B833A961AC1B60C00C84F00 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
4B833A991AC1B60C00C84F00 /* QuickFocused-OSXTests.xctest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = "QuickFocused-OSXTests.xctest";
remoteRef = 4B833A981AC1B60C00C84F00 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
4B833A9B1AC1B60C00C84F00 /* Quick.framework */ = {
isa = PBXReferenceProxy;
fileType = wrapper.framework;
path = Quick.framework;
remoteRef = 4B833A9A1AC1B60C00C84F00 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
4B833A9D1AC1B60C00C84F00 /* Quick-iOSTests.xctest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = "Quick-iOSTests.xctest";
remoteRef = 4B833A9C1AC1B60C00C84F00 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
4B833A9F1AC1B60C00C84F00 /* QuickFocused-iOSTests.xctest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = "QuickFocused-iOSTests.xctest";
remoteRef = 4B833A9E1AC1B60C00C84F00 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
/* End PBXReferenceProxy section */
/* Begin PBXResourcesBuildPhase section */
4B42580513F56CC0006BC001 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4B42581113F56CC1006BC001 /* InfoPlist.strings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4B42587213F56EA3006BC001 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4B42588113F56EA3006BC001 /* InfoPlist.strings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4BED511212AA8B7A00CA6B36 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
4B25BE4F1291C4FB00821DC1 /* Build Static Libs */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Build Static Libs";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "xcodebuild -project ${PROJECT_NAME}.xcodeproj -sdk iphonesimulator -target ${PROJECT_NAME}-StaticLib -configuration ${CONFIGURATION} clean build\nxcodebuild -project ${PROJECT_NAME}.xcodeproj -sdk iphoneos -target ${PROJECT_NAME}-StaticLib -configuration ${CONFIGURATION} clean build";
};
4B25BE511291C51E00821DC1 /* Build Universal Lib */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 12;
files = (
);
inputPaths = (
);
name = "Build Universal Lib";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "SIMULATOR_LIBRARY_PATH=\"${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/lib${PROJECT_NAME}-StaticLib.a\" &&\n\tDEVICE_LIBRARY_PATH=\"${BUILD_DIR}/${CONFIGURATION}-iphoneos/lib${PROJECT_NAME}-StaticLib.a\" &&\n\tUNIVERSAL_LIBRARY_DIR=\"${BUILD_DIR}/${CONFIGURATION}-iphoneuniversal\" &&\n\tUNIVERSAL_LIBRARY_PATH=\"${UNIVERSAL_LIBRARY_DIR}/${PRODUCT_NAME}\" &&\n\tFRAMEWORK=\"${UNIVERSAL_LIBRARY_DIR}/${PRODUCT_NAME}.framework\" &&\n\n# Create framework directory structure.\n\trm -rf \"${FRAMEWORK}\" &&\n\tmkdir -p \"${UNIVERSAL_LIBRARY_DIR}\" &&\n\tmkdir -p \"${FRAMEWORK}/Versions/A/Headers\" &&\n\tmkdir -p \"${FRAMEWORK}/Versions/A/Resources\" &&\n\n# Generate universal binary from desktop, device, and simulator builds.\n\tlipo \"${SIMULATOR_LIBRARY_PATH}\" \"${DEVICE_LIBRARY_PATH}\" -create -output \"${UNIVERSAL_LIBRARY_PATH}\" &&\n\n# Move files to appropriate locations in framework paths.\n\tcp \"${UNIVERSAL_LIBRARY_PATH}\" \"${FRAMEWORK}/Versions/A\" &&\n\tln -s \"A\" \"${FRAMEWORK}/Versions/Current\" &&\n\tln -s \"Versions/Current/Headers\" \"${FRAMEWORK}/Headers\" &&\n\tln -s \"Versions/Current/Resources\" \"${FRAMEWORK}/Resources\" &&\n\tln -s \"Versions/Current/${PRODUCT_NAME}\" \"${FRAMEWORK}/${PRODUCT_NAME}\" &&\n\tcp \"${SRCROOT}/${PROJECT_NAME}-Info.plist\" \"${FRAMEWORK}/Resources/Info.plist\"\n\n";
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
4B42580313F56CC0006BC001 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4B42586C13F56D96006BC001 /* InjectionErrorFixtures.m in Sources */,
4B42585A13F56D41006BC001 /* Fixtures.m in Sources */,
4B42585B13F56D41006BC001 /* SpecHelper.m in Sources */,
4B42585C13F56D41006BC001 /* ModuleFixtures.m in Sources */,
4B42585D13F56D41006BC001 /* BasicUsageSpecs.m in Sources */,
4B42585E13F56D41006BC001 /* InjectionErrorsSpecs.m in Sources */,
4B42585F13F56D41006BC001 /* InheritanceSpecs.m in Sources */,
4B42586013F56D41006BC001 /* ModuleUsageSpecs.m in Sources */,
4B42586113F56D41006BC001 /* JSObjectionProviderEntry.m in Sources */,
4BA620D01C06BEAE00DB87B6 /* InjectImplementsProtocolSpecs.m in Sources */,
4B42586213F56D41006BC001 /* JSObjectionEntry.m in Sources */,
4B42586313F56D41006BC001 /* NSObject+Objection.m in Sources */,
4B42586413F56D41006BC001 /* JSObjectionUtils.m in Sources */,
4B42586513F56D41006BC001 /* JSObjectionInjectorEntry.m in Sources */,
4B42586613F56D42006BC001 /* JSObjectionInjector.m in Sources */,
4B42586713F56D42006BC001 /* JSObjectionBindingEntry.m in Sources */,
4B42586813F56D42006BC001 /* JSObjectionModule.m in Sources */,
4B75FA771AC1E3FD00060FE1 /* Stub.swift in Sources */,
4B42586913F56D42006BC001 /* JSObjection.m in Sources */,
4BE78764145647EF00BD705E /* JSObjectFactory.m in Sources */,
D2AAC07E0554694100DB5193 /* CircularDependencySpecs.m in Sources */,
D2AAC07E0554694100DB5196 /* CircularDependencyFixtures.m in Sources */,
4B4289311567F3EC004F73D3 /* InitializerSpecs.m in Sources */,
4B428935156806E6004F73D3 /* InitializerFixtures.m in Sources */,
4BB07D751668679A00D9BA1E /* AddAndRemoveModulesSpecs.m in Sources */,
4B53383917AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4B42587013F56EA3006BC001 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4B4258CD13F56F44006BC001 /* Fixtures.m in Sources */,
4B4258CE13F56F44006BC001 /* InjectionErrorFixtures.m in Sources */,
4B4258CF13F56F45006BC001 /* SpecHelper.m in Sources */,
4B4258D013F56F45006BC001 /* ModuleFixtures.m in Sources */,
4B4258D113F56F45006BC001 /* BasicUsageSpecs.m in Sources */,
4B4258D213F56F45006BC001 /* InjectionErrorsSpecs.m in Sources */,
4B4258D313F56F45006BC001 /* InheritanceSpecs.m in Sources */,
4B4258D413F56F45006BC001 /* ModuleUsageSpecs.m in Sources */,
4B4258D513F56F45006BC001 /* JSObjectionProviderEntry.m in Sources */,
4BA620D11C06BEAE00DB87B6 /* InjectImplementsProtocolSpecs.m in Sources */,
4B4258D613F56F45006BC001 /* JSObjectionEntry.m in Sources */,
4B4258D713F56F45006BC001 /* NSObject+Objection.m in Sources */,
4B4258D813F56F45006BC001 /* JSObjectionUtils.m in Sources */,
4B4258D913F56F45006BC001 /* JSObjectionInjectorEntry.m in Sources */,
4B4258DA13F56F45006BC001 /* JSObjectionInjector.m in Sources */,
4B4258DB13F56F45006BC001 /* JSObjectionBindingEntry.m in Sources */,
4B4258DC13F56F45006BC001 /* JSObjectionModule.m in Sources */,
4B75FA781AC1E3FD00060FE1 /* Stub.swift in Sources */,
4B4258DD13F56F45006BC001 /* JSObjection.m in Sources */,
4BE78765145647EF00BD705E /* JSObjectFactory.m in Sources */,
D2AAC07E0554694100DB5194 /* CircularDependencySpecs.m in Sources */,
D2AAC07E0554694100DB5197 /* CircularDependencyFixtures.m in Sources */,
4B4289321567F3EC004F73D3 /* InitializerSpecs.m in Sources */,
4B428936156806E6004F73D3 /* InitializerFixtures.m in Sources */,
4BB07D761668679A00D9BA1E /* AddAndRemoveModulesSpecs.m in Sources */,
4B53383A17AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4BED511312AA8B7A00CA6B36 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4BED512412AA8BCC00CA6B36 /* JSObjectionInjectorEntry.m in Sources */,
4BED512512AA8BCC00CA6B36 /* JSObjectionInjector.m in Sources */,
4BED512612AA8BCC00CA6B36 /* JSObjectionBindingEntry.m in Sources */,
4B957EC712ADE03900CBF1EB /* JSObjectionModule.m in Sources */,
4B496E6C12B0F3E50053F2A3 /* JSObjectionUtils.m in Sources */,
4B53471A12F316A4000480AB /* NSObject+Objection.m in Sources */,
4B4B21AC1342B79E00833077 /* JSObjectionEntry.m in Sources */,
4B81F8E0135D06C200221A88 /* JSObjectionProviderEntry.m in Sources */,
4B9D310713DF613600C81C45 /* JSObjection.m in Sources */,
4BE78763145647EF00BD705E /* JSObjectFactory.m in Sources */,
4B53383817AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D2AAC07B0554694100DB518D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4BED512A12AA8BCC00CA6B36 /* JSObjectionInjectorEntry.m in Sources */,
4BED512B12AA8BCC00CA6B36 /* JSObjectionInjector.m in Sources */,
4BED512C12AA8BCC00CA6B36 /* JSObjectionBindingEntry.m in Sources */,
4B957EC812ADE05D00CBF1EB /* JSObjectionModule.m in Sources */,
4B496E6D12B0F3E50053F2A3 /* JSObjectionUtils.m in Sources */,
4B53471B12F316A4000480AB /* NSObject+Objection.m in Sources */,
4B4B21A91342B79E00833077 /* JSObjectionEntry.m in Sources */,
4B81F8DE135D06C200221A88 /* JSObjectionProviderEntry.m in Sources */,
4B9D310513DF613600C81C45 /* JSObjection.m in Sources */,
4BE78762145647EF00BD705E /* JSObjectFactory.m in Sources */,
4B53383617AC1420004BDF83 /* JSObjectionRuntimePropertyReflector.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
4B2D269D1AC1E53B00FF802F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Quick-OSX";
targetProxy = 4B2D269C1AC1E53B00FF802F /* PBXContainerItemProxy */;
};
4B2D269F1AC1E53B00FF802F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Nimble-OSX";
targetProxy = 4B2D269E1AC1E53B00FF802F /* PBXContainerItemProxy */;
};
4B833AA81AC1D68900C84F00 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Quick-iOS";
targetProxy = 4B833AA71AC1D68900C84F00 /* PBXContainerItemProxy */;
};
4B833AAA1AC1D68900C84F00 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Nimble-iOS";
targetProxy = 4B833AA91AC1D68900C84F00 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */