-
Notifications
You must be signed in to change notification settings - Fork 187
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1975 lines (1962 loc) · 164 KB
/
project.pbxproj
File metadata and controls
1975 lines (1962 loc) · 164 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 PBXBuildFile section */
0092151033DD1E9F907BAF60 /* Pods-OAStackView_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B32D304F2BEC0A0154805284 /* Pods-OAStackView_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
0185EAC91C123F451BE353E5 /* NSObject+KiwiSpyAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = A3AB56C9DD3A25AF5466B381 /* NSObject+KiwiSpyAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
02006D0C4E1C5927A5503BAE /* KWBlockRaiseMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 90BD45D51F46A240E9D09764 /* KWBlockRaiseMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
048EE877B11D2270421392C8 /* KWAny.m in Sources */ = {isa = PBXBuildFile; fileRef = F7C8372352F86F580CBF52AA /* KWAny.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
04EC4955F2F713CDF462F413 /* KWReporting.h in Headers */ = {isa = PBXBuildFile; fileRef = 48AB2EEA34B551ADEBA08821 /* KWReporting.h */; settings = {ATTRIBUTES = (Public, ); }; };
05794B5F4247E3A648C40B51 /* OAStackView+Hiding.h in Headers */ = {isa = PBXBuildFile; fileRef = E86334892F73798F2B097D5F /* OAStackView+Hiding.h */; settings = {ATTRIBUTES = (Public, ); }; };
06CF5D2408619F993FDFA2B4 /* KWPendingNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EB2F2F47B2069CB917F08D0 /* KWPendingNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
06EC4010B3D981437FC3D92B /* OAStackView+Constraint.h in Headers */ = {isa = PBXBuildFile; fileRef = C809B772AB6D8B7D66C7D8A2 /* OAStackView+Constraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
1031E5CB6E6F41A30ABC083B /* KWContainStringMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B0415735C877B3877230FB3 /* KWContainStringMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
13609C533B05007BBA2DEC42 /* KWLetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D218EBC12D444174A95201 /* KWLetNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
14090FC6A7089961ACB2E365 /* KWCountType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3130685CAEDF2761AE49B03C /* KWCountType.h */; settings = {ATTRIBUTES = (Public, ); }; };
1417109B4EC2EEA12D18B404 /* KWMock.m in Sources */ = {isa = PBXBuildFile; fileRef = D437B7C51B9C700AE19B6388 /* KWMock.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
14C57D4250C711AFEC2026FB /* KWMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A4EE6EC78BDA41D7B6A4345 /* KWMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
15B44B0C9588782299BA665C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC5A0107A7595E804369111 /* Foundation.framework */; };
16807AA34D85C8E7CD1FADB4 /* KWHaveMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 0754AEC9F91F336B0F0B7952 /* KWHaveMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
170386B5C140743BEEE074D7 /* Pods-OAStackView_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FEBE767D6747443238106F14 /* Pods-OAStackView_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
170FC52201504FE31F04BE49 /* KWExample.m in Sources */ = {isa = PBXBuildFile; fileRef = 66DF6E5736C79E4E7F3A85F6 /* KWExample.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
176687AE221D864862460D2F /* OAStackView+Traversal.m in Sources */ = {isa = PBXBuildFile; fileRef = 89FDCA0DBCC9632E6877C436 /* OAStackView+Traversal.m */; };
17A7807C778FF2EC6C84E772 /* KWMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED7A8812CA49FE70C8F6703 /* KWMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
17DA5038B3D77E9F79234B21 /* KWAfterAllNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 97B67A114D3D5C4DB2C144C1 /* KWAfterAllNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
19308B2A9CB35F4AD26FD0CF /* OAStackView+Hiding.h in Headers */ = {isa = PBXBuildFile; fileRef = E86334892F73798F2B097D5F /* OAStackView+Hiding.h */; settings = {ATTRIBUTES = (Public, ); }; };
19668ECB2D5632BCF4289FEF /* KWContainStringMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D01886BD65384AF92DB5E81 /* KWContainStringMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
197BEB5D9990CBB8D22FE21A /* KWRegularExpressionPatternMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 77AB712A65FB0A35CE54DBBD /* KWRegularExpressionPatternMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
1AE29765D08D0D1A1ADEFE42 /* KWInvocationCapturer.h in Headers */ = {isa = PBXBuildFile; fileRef = 599407DD6BCEF320AED08E3F /* KWInvocationCapturer.h */; settings = {ATTRIBUTES = (Public, ); }; };
1B06D8BE0F01C9F51CF57250 /* KWMessagePattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 62836B0A95D7E9CAAC01BDEE /* KWMessagePattern.h */; settings = {ATTRIBUTES = (Public, ); }; };
1B17CD4E4CD63DAD05E3D9F7 /* NSObject+KiwiVerifierAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = BEBB06EE58D7487FF1A7BE89 /* NSObject+KiwiVerifierAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
1B5D232A945AE872410301F3 /* KWSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = D3579F2BA6DC9F7C6D444BDC /* KWSpec.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
1D84C142AB3F0EECC50FDE51 /* KWEqualMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 482F8D64D26B3EC3C01F0736 /* KWEqualMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
1FC5C69176785F0A4A7D1D31 /* KWContainMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = CEBB90CC8AFFBBAB06E55645 /* KWContainMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
210796EB688C6ABD89F3EE18 /* KWStringPrefixMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 289C519B41B7A75A2B4D4F2A /* KWStringPrefixMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
235C8C9E0E1BC9B6C63772E7 /* OAStackView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D2F4F1397A17E203EA8112B /* OAStackView.m */; };
24C4AAE0534CDCE8D6E46D93 /* KWGenericMatchingAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF6F20100AAE1CA9538A76F /* KWGenericMatchingAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
26DB8BFE41E064ECDB11D8C8 /* OAStackViewDistributionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = C23A1311AA2C1EA1D567AE58 /* OAStackViewDistributionStrategy.m */; };
280A06AF115C587F60C07F65 /* KWFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F43A32CC59A45C8930A23D /* KWFormatter.h */; settings = {ATTRIBUTES = (Public, ); }; };
2A4BCA79FAB91BD01D029BEA /* KWHaveMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 65B2353F3CD3094DA2FF2308 /* KWHaveMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
2B7F5FBAF9D1072D87092F04 /* KWBeBetweenMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D2D4E3281086E0F8704897 /* KWBeBetweenMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
2C8EC2686FC7E04E1B780F99 /* KWContextNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 09B0D351B5C153B13C51063F /* KWContextNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
2D18CCDDEEFF70501C83F0E1 /* Pods-OAStackView_Example-OAStackView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E91B86F74BD64D5D3108D23A /* Pods-OAStackView_Example-OAStackView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
2D244FB15A71F1EEB4C6B2F9 /* Pods-OAStackView_Tests-OAStackView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B6AD154C18337823F3A956B /* Pods-OAStackView_Tests-OAStackView-dummy.m */; };
2D2AA0412642E3BF3F42F0B6 /* KWExampleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A6D51B3A1F472C30739D079 /* KWExampleNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
2E3FE06A01CB273A21EBB013 /* Pods-OAStackView_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C4C72A623515D1EE65B049 /* Pods-OAStackView_Tests-dummy.m */; };
2EEC9D85B5AFCF370A90A3BB /* KWMatchers.h in Headers */ = {isa = PBXBuildFile; fileRef = FE07E4AE9EE6F43EA7896D5D /* KWMatchers.h */; settings = {ATTRIBUTES = (Public, ); }; };
31315C6BC5912BBEF889216F /* KWCaptureSpy.m in Sources */ = {isa = PBXBuildFile; fileRef = 87F0712C14802E5121F4EAF9 /* KWCaptureSpy.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
3383D47984F94D30DF03020F /* KWStringUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7AB69D58A91C12D63C749F /* KWStringUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
351BF814B267FB6372420655 /* NSMethodSignature+KiwiAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 85E059A68529EF3CB5364BF3 /* NSMethodSignature+KiwiAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
3526994999D7DC352D5141CD /* OAStackView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 6999B2A35BC627FAA2DDDEC3 /* OAStackView.bundle */; };
36C4148BFE64C9872700F0DA /* KWIntercept.h in Headers */ = {isa = PBXBuildFile; fileRef = 259FE7E096986B690B85576F /* KWIntercept.h */; settings = {ATTRIBUTES = (Public, ); }; };
374FDE19E07F3598B448E537 /* KiwiBlockMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = F993ABE8EEA021BF7930A3D1 /* KiwiBlockMacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
37B2C7C8BF93DB6160C1D1A9 /* OAStackView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B90E6BD21591A4585962496 /* OAStackView.h */; settings = {ATTRIBUTES = (Public, ); }; };
381CB482D84994526F4CE3DE /* KWNotificationMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9CAA45B4BD2B90EC981E56 /* KWNotificationMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
39B7C35F9F84FAECEEF7423C /* OAStackView+Traversal.m in Sources */ = {isa = PBXBuildFile; fileRef = 89FDCA0DBCC9632E6877C436 /* OAStackView+Traversal.m */; };
3B3FD321CA8BB59DB12F101D /* NSObject+KiwiVerifierAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ECED91C1FD1BA44821B8C3F /* NSObject+KiwiVerifierAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
3C6354BFAC9CF682929EE4C7 /* KWMatcherFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BFA8A2E4B7A676E1CF9CAC5 /* KWMatcherFactory.h */; settings = {ATTRIBUTES = (Public, ); }; };
3D661F8D463FE6E323001892 /* KWExampleSuite.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B4016144CFC26253F612C6 /* KWExampleSuite.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
3FDBA3D3BB6AA37466422488 /* KWMock.h in Headers */ = {isa = PBXBuildFile; fileRef = AA0FE72BB0820AD514481DB7 /* KWMock.h */; settings = {ATTRIBUTES = (Public, ); }; };
433B03F39FABF3382AAF1854 /* KWWorkarounds.m in Sources */ = {isa = PBXBuildFile; fileRef = DC55BDCA167103C53C77C3CA /* KWWorkarounds.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
45080D257F4A31F837D03CC7 /* KWBeWithinMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 2975D65744662AA6E0969337 /* KWBeWithinMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
455814F2C6AE564E850BD7CC /* NSObject+KiwiMockAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5250EF14BDA1D35A1871BA93 /* NSObject+KiwiMockAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
45812C3C43E4B3A3C49A5C0A /* KiwiMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = CED0EB5E24394612684C54FC /* KiwiMacros.h */; settings = {ATTRIBUTES = (Public, ); }; };
46CA8779A92EBC2D28E4C1EC /* OAStackView+Traversal.h in Headers */ = {isa = PBXBuildFile; fileRef = 00B132E002F0EAE6F7C4C007 /* OAStackView+Traversal.h */; settings = {ATTRIBUTES = (Public, ); }; };
493526E82666FF2E67312D04 /* KWBeSubclassOfClassMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = A0352A63AB9BF027C69D98B2 /* KWBeSubclassOfClassMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
4980BB2E4FBE7EA2EED0FF92 /* KWNilMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E77CA3AFAADCEC9394516EF /* KWNilMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
4D581923EEB3544ED549CB5B /* KWPendingNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A52C7E63345A9BCDFEE5B3F6 /* KWPendingNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
4DEE1BB8F64C4763D6585683 /* OAStackView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 667360543B85E1CE0E6BD756 /* OAStackView.bundle */; };
4DFB3EBCDB8022C0B5768FD4 /* KWExistVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ED9899540CA916F53DBEC34 /* KWExistVerifier.h */; settings = {ATTRIBUTES = (Public, ); }; };
4F4F06ADD6D0766A14577CD4 /* KWGenericMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 316A51F9CF6A07F1A3ED25B6 /* KWGenericMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
4F7FB87C53980DA51E44E057 /* NSObject+KiwiMockAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 92F34F69C94B691FFEECCA5F /* NSObject+KiwiMockAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
4F9890B79209225AF6EB2BE0 /* OAStackViewAlignmentStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 024194B58731070E9AC9710B /* OAStackViewAlignmentStrategy.m */; };
50FCBC5FE540CB85E241B0DE /* KWExampleSuite.h in Headers */ = {isa = PBXBuildFile; fileRef = A3607B5039CE709C2B390C5E /* KWExampleSuite.h */; settings = {ATTRIBUTES = (Public, ); }; };
51824E94AFC4C5F95576164C /* KWBlock.h in Headers */ = {isa = PBXBuildFile; fileRef = AA99E6CB123085D835E92A3A /* KWBlock.h */; settings = {ATTRIBUTES = (Public, ); }; };
51C7BDF9966F99543441C7E5 /* NSValue+KiwiAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E8A49568926762C4F16944FE /* NSValue+KiwiAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
51D99B85F01CA5159FD3F184 /* KWFutureObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 5684373F7590D25474DF075A /* KWFutureObject.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
53195FD9D4924C69252EDFA5 /* KWChangeMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = D36584BB7D9993FC1034D3BB /* KWChangeMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
5376D43A36C3B38F232EBDE9 /* KWBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = 960F35E0E3BBE58D61A73484 /* KWBlock.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
58DCEDE8B878506E6FC76A6C /* OAStackView+Constraint.m in Sources */ = {isa = PBXBuildFile; fileRef = E822B703CD09D5556B8F8265 /* OAStackView+Constraint.m */; };
59309D4BD1921F35DCC02766 /* KWFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = DE017E0F3B55FE16656200C6 /* KWFormatter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
5954274E4541EEAE150DA966 /* Pods-OAStackView_Tests-Kiwi-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F270489A7CE92E52785BF985 /* Pods-OAStackView_Tests-Kiwi-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
59654539D01DC7CE7A343818 /* KWFailure.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FBFCD1455A76E4940F88609 /* KWFailure.h */; settings = {ATTRIBUTES = (Public, ); }; };
5971BB89CE281EFC71BCAB92 /* OAStackViewDistributionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 63CD8F567707C8CFAFF87734 /* OAStackViewDistributionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; };
59E7769BCC4D93E70E6E576B /* NSInvocation+KiwiAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9631465C5C3F938008ABCCE4 /* NSInvocation+KiwiAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
5AD174E0E76D1F0F9D6DFED8 /* KWBeZeroMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = D162458C8935010F53FC2452 /* KWBeZeroMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
5B1DAB20EFD97AFD7C75DC23 /* KWStringContainsMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D44B9EA6A689ADDC16B323E /* KWStringContainsMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
5BF14D5283E239FDD5289DE9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC5A0107A7595E804369111 /* Foundation.framework */; };
5C0A0E4E38D05183464B4F0F /* KWStringPrefixMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = FF8D868125A59FC66DB72586 /* KWStringPrefixMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
5CC94B0CC8E1EA3DDC441D01 /* KWNilMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 445FB12A004E8A9AAA71AAC6 /* KWNilMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
5D3550F19A70E36CD72581CC /* Kiwi.h in Headers */ = {isa = PBXBuildFile; fileRef = 05F5A8061995BC2DDB370349 /* Kiwi.h */; settings = {ATTRIBUTES = (Public, ); }; };
5DCB8888E778DE199353151F /* KWMatcherFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C28922F0A1CC400548CE9A9 /* KWMatcherFactory.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
5DEA40E26C26CF8EBD5D294B /* KWBeforeAllNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 167FE0222527636F8FB9499F /* KWBeforeAllNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
5F5ED6119B11A7FC60F9DF12 /* KWBeSubclassOfClassMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 7616D91F0FA7BF755665EFD6 /* KWBeSubclassOfClassMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
627E3DDE8CD8A5D65FCB2B85 /* KWRespondToSelectorMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F0275C2CF3800B22D549626 /* KWRespondToSelectorMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
64323A7DF8C53CB091C98A94 /* KWSuiteConfigurationBase.m in Sources */ = {isa = PBXBuildFile; fileRef = B5938B01052F6EF4FAC26934 /* KWSuiteConfigurationBase.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
644EEEC3FF42B520C42425A0 /* KWBeforeEachNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E9763017ABDD60733231C7B9 /* KWBeforeEachNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
654CB39A58C5B294325A10D2 /* KWDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B2DE004BAB9F83CFA30DBB77 /* KWDeviceInfo.h */; settings = {ATTRIBUTES = (Public, ); }; };
65524FBE17BAE16B25CFCDC0 /* KWExampleDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F614BA21D6A33F9E717D7741 /* KWExampleDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
656B53816F17D53CFF8984EB /* KWExampleSuiteBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FFFAE38B448667FEFA93B10 /* KWExampleSuiteBuilder.h */; settings = {ATTRIBUTES = (Public, ); }; };
68720D387FE01CAF08FAB332 /* KWStringContainsMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 4721487A6750AD093F35DF11 /* KWStringContainsMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
688182121988212785EA974F /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C60D4A6C721EF38CD3C85604 /* XCTest.framework */; };
68D7FC233D087324F1A160D2 /* KWBeMemberOfClassMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = CD51FBB6E583F20EAA7BC55E /* KWBeMemberOfClassMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
69A44415CD14C001B22CFD03 /* KWBeBetweenMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 081E3B5D98174C5A6CB8008C /* KWBeBetweenMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
6B0A7B51ABCF11EFE6052EA6 /* KWRegularExpressionPatternMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = DBC580C53B2312C7EEE78649 /* KWRegularExpressionPatternMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
6B5B1BCF0669117BD28ED2BA /* NSNumber+KiwiAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 804AE3C2E4DFBB4C8C53070B /* NSNumber+KiwiAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
6E370F492D9440857F84C75E /* KWItNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A3477A9A8D612B41AB00D0EA /* KWItNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
6F87F66C919D04ADDAB2845D /* KWMatchVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 09EF0D02B903BC93BB8D1D0D /* KWMatchVerifier.h */; settings = {ATTRIBUTES = (Public, ); }; };
708B2C828F262149133F4BF2 /* KWNull.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E5582CC0660DAEF60FF15AC /* KWNull.h */; settings = {ATTRIBUTES = (Public, ); }; };
719DF5019435DA4D4D8388D7 /* KWHaveValueMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 12973B5EC7A1EAA19E9FABF0 /* KWHaveValueMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
720F5A307D178669227135C0 /* KWFutureObject.h in Headers */ = {isa = PBXBuildFile; fileRef = E225815D3577B4B188423306 /* KWFutureObject.h */; settings = {ATTRIBUTES = (Public, ); }; };
7512E645E1EE81CB74404305 /* KWBlockRaiseMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = DDE3ADAD6526B762FC83AA58 /* KWBlockRaiseMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
77F11F12F2EAD97A11B8E4F2 /* KWLetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B092CBCD2CA07E4FDE805F8 /* KWLetNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
782025E9143D5BBBFDF6970E /* KWMatchers.m in Sources */ = {isa = PBXBuildFile; fileRef = DC34CCD00C377D36521B41AB /* KWMatchers.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
79BC2DDEA6FB3A7DC86EA470 /* KWBlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B260ABDA0D8ACFFE947449A8 /* KWBlockNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
7A682070068665E70D307B0E /* KWBeforeAllNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C0D097D73D139EE911875D38 /* KWBeforeAllNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
7BD1878C8E9290AC6BA61237 /* KWHaveValueMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C403336BA8BA16A7D5E45D7 /* KWHaveValueMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
7CCD749F07E4C3F9C9E0C687 /* OAStackView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D2F4F1397A17E203EA8112B /* OAStackView.m */; };
7DB724596B00918A36C2F6BE /* KWVerifying.h in Headers */ = {isa = PBXBuildFile; fileRef = E96052DEDBABAD6DE67AB9CC /* KWVerifying.h */; settings = {ATTRIBUTES = (Public, ); }; };
8140EF62A9F55F5FB39D7774 /* Pods-OAStackView_Tests-OAStackView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 28313395E0E6FD06CC778A3B /* Pods-OAStackView_Tests-OAStackView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
821E86B2B15AC40A1F067EC2 /* OAStackView+Constraint.m in Sources */ = {isa = PBXBuildFile; fileRef = E822B703CD09D5556B8F8265 /* OAStackView+Constraint.m */; };
84B4F52DC44A52FF0B4C379D /* KWExampleNodeVisitor.h in Headers */ = {isa = PBXBuildFile; fileRef = F5EB154462D504A7D441DF86 /* KWExampleNodeVisitor.h */; settings = {ATTRIBUTES = (Public, ); }; };
85674720BB7565D9347C8AE0 /* KWAsyncVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B5C01240014EFAF6EDD05F0 /* KWAsyncVerifier.h */; settings = {ATTRIBUTES = (Public, ); }; };
895D855ABA653BFEDB9E78F3 /* KWRegisterMatchersNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1779D5C24B1FAFDEDD3D682C /* KWRegisterMatchersNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
8A8D458D8D1301220C64DB6B /* KWGenericMatchEvaluator.m in Sources */ = {isa = PBXBuildFile; fileRef = EC4FD93B76378B54BA02E9D3 /* KWGenericMatchEvaluator.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
909707B5A2F7F6A110166FA5 /* KiwiConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = A281CB12BAAB5A71CC7C0126 /* KiwiConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
90AB5CBB57BABCE1B5398039 /* KWGenericMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 62996F866D1F310C81ACA7D2 /* KWGenericMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
924FAF2CE47ECA0AD1631BEC /* KWBeKindOfClassMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 2065AEC45CFE35B5ABB87FAB /* KWBeKindOfClassMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
9437065F88448E80706C0E86 /* OAStackViewDistributionStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = 63CD8F567707C8CFAFF87734 /* OAStackViewDistributionStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; };
9488FF6F374386F2D92E3121 /* KWBeTrueMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = D320E00FE5980CFD4AB17725 /* KWBeTrueMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
94DBDF903417000CB591C1A6 /* KWStringUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C3E4BCF308C363C3BA7FC04 /* KWStringUtilities.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
957FAA3C9EA2D288F636F7D9 /* KWMessagePattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 0083407DDC61E036CF46334F /* KWMessagePattern.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
9641FBA8937B004797D3A714 /* KWReceiveMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 497268F3953469FEF7923067 /* KWReceiveMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
971509B375B35E09BDD3EBE2 /* KWMatching.h in Headers */ = {isa = PBXBuildFile; fileRef = 251C6C0D56338AB4219E6BB3 /* KWMatching.h */; settings = {ATTRIBUTES = (Public, ); }; };
9720A2845F0654029C139CCA /* KWFailure.m in Sources */ = {isa = PBXBuildFile; fileRef = E8B1734FD14445A1D8D38BD4 /* KWFailure.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
978475DDBB818C30CA8311DE /* NSInvocation+KiwiAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E4E0FDD32FE4CA6B4805488A /* NSInvocation+KiwiAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
978A93F51718964743B75EB3 /* KWInequalityMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 99320390A940B38882774870 /* KWInequalityMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
987AEEDEF4A0311F970AC6F6 /* NSMethodSignature+KiwiAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 62238DA1D62C3F6DF2BA2590 /* NSMethodSignature+KiwiAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
9B09054C59C1091972A13435 /* Pods-OAStackView_Example-OAStackView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A86200C42268D58AE1B0AD86 /* Pods-OAStackView_Example-OAStackView-dummy.m */; };
9B68B8063D12B7823C4585A5 /* KWCallSite.h in Headers */ = {isa = PBXBuildFile; fileRef = C2C213F00BD25D367C89B5D9 /* KWCallSite.h */; settings = {ATTRIBUTES = (Public, ); }; };
9E47DF069F7AB7EDCB7043D6 /* KWValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F94C81F1B842836D932F7EC /* KWValue.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
9ED091833FD72CCCC92856F2 /* KWBeWithinMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = DF87EC70CABDD00E9E41D906 /* KWBeWithinMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
A149E67037A9E5EB4F3C6265 /* KWProbePoller.m in Sources */ = {isa = PBXBuildFile; fileRef = 2411E3D92988EE8ED2F5781F /* KWProbePoller.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
A15A036267CF112ADC993A87 /* KWBlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5520F3F6395AD2AF62671A /* KWBlockNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
A4903BF7CED102DD2A69E756 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC5A0107A7595E804369111 /* Foundation.framework */; };
A6000ED0E19CA4EA1CAD7D35 /* KWExample.h in Headers */ = {isa = PBXBuildFile; fileRef = 5372622846CA10742160AB73 /* KWExample.h */; settings = {ATTRIBUTES = (Public, ); }; };
A73CAAF7CA133FCBBACA0071 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC5A0107A7595E804369111 /* Foundation.framework */; };
A74399994CB4836F76ABCDA7 /* OAStackView+Hiding.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A75E879562A11A981CCFD5A /* OAStackView+Hiding.m */; };
A804856C9E87E7ACFA4908C2 /* KWSymbolicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E375DA4ED597FE594B43118 /* KWSymbolicator.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
A8745460A87520739A2F155A /* KWReceiveMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D04C2C7699681287FB63BD6 /* KWReceiveMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
AC6759B99656CAD08C28DD93 /* KWExampleSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = C494CE3ECE7AB33BC34FB0B7 /* KWExampleSuiteBuilder.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
AE5E13278EF33B551FD75DD4 /* KWBeIdenticalToMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD5A911E7327B46C7EB5F50 /* KWBeIdenticalToMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
AEA346DD739179DCC5EB0B5C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BEC5A0107A7595E804369111 /* Foundation.framework */; };
AEF4A1662C69D70D8DD1584A /* KWWorkarounds.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3E64AE3B49F0F57B12511D /* KWWorkarounds.h */; settings = {ATTRIBUTES = (Public, ); }; };
AF500631BDAA13C65ED0E46F /* KWConformToProtocolMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = E2D9550185C214BBB2CD0617 /* KWConformToProtocolMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
AF8C3E13E111109E33A0A42E /* Pods-OAStackView_Tests-Kiwi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C4DDBBA72AF54D31DFAE75C8 /* Pods-OAStackView_Tests-Kiwi-dummy.m */; };
B0D18AD5FA0CF6A02CFC82DB /* KWAfterEachNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C8B1056D464A717DDA040E /* KWAfterEachNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
B13A21FA123BC68852EFFB39 /* NSInvocation+OCMAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E29076317D3B8AF774F66E06 /* NSInvocation+OCMAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
B1868D729956D7DEC9C9FE06 /* OAStackView+Traversal.h in Headers */ = {isa = PBXBuildFile; fileRef = 00B132E002F0EAE6F7C4C007 /* OAStackView+Traversal.h */; settings = {ATTRIBUTES = (Public, ); }; };
B3DA5C9CA52D5353ECF76E3A /* OAStackViewAlignmentStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = 024194B58731070E9AC9710B /* OAStackViewAlignmentStrategy.m */; };
B793F58F2CF626EE0B362D6F /* OAStackViewAlignmentStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = C769B7973A4CF901D9711689 /* OAStackViewAlignmentStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; };
B8766D9B58A88DC2DBCBD97F /* KWCaptureSpy.h in Headers */ = {isa = PBXBuildFile; fileRef = C348605B130C79C13CC42FAF /* KWCaptureSpy.h */; settings = {ATTRIBUTES = (Public, ); }; };
BA958C0FBB19160AEE1FD978 /* KWValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EB4C3AC5F8D06253846DDB7 /* KWValue.h */; settings = {ATTRIBUTES = (Public, ); }; };
BC4250A68E20861CF13972CE /* KWUserDefinedMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 058DCD7B3AD314654E65C31D /* KWUserDefinedMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
BD120C3BD30F9C43014CB83F /* KWMessageTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = DEA8EBD560E729B8B81CC41D /* KWMessageTracker.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
BD5533A2AC111EB887E4C47A /* KWBeZeroMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 835170A9702BA5446D42BEAB /* KWBeZeroMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
BD8FF8618DD5D03261BD34AC /* KWMessageSpying.h in Headers */ = {isa = PBXBuildFile; fileRef = B4C0B235159C40D784192EF9 /* KWMessageSpying.h */; settings = {ATTRIBUTES = (Public, ); }; };
C1004AC4E8E9365321C89D7C /* KWInvocationCapturer.m in Sources */ = {isa = PBXBuildFile; fileRef = 58F1E34CEF4D21E4E44F18DE /* KWInvocationCapturer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
C1F42FC65AB296F1A76FACF6 /* KWBeforeEachNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFFE90B7F84569527E95B5D /* KWBeforeEachNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
C3451CEAEF59F0169D0A37DE /* KWProbePoller.h in Headers */ = {isa = PBXBuildFile; fileRef = D98D7A16A65C0FD8DCF2A008 /* KWProbePoller.h */; settings = {ATTRIBUTES = (Public, ); }; };
C40ABBF67ADD5B6890FE4877 /* KWEqualMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E668202536B81386E96BFB8 /* KWEqualMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
C45DA4B013E65AFB0F04F719 /* KWIntercept.m in Sources */ = {isa = PBXBuildFile; fileRef = 242F82F079F82A603E9FD011 /* KWIntercept.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
C4ADDA4EE9060FB97251CD8A /* KWObjCUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = C47EE2FAA72FBFF889D50247 /* KWObjCUtilities.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
C52E52A7B5A7DE69C5562526 /* KWStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FCA5DF8D715EC9434931919 /* KWStub.h */; settings = {ATTRIBUTES = (Public, ); }; };
C5F98CF3D59EF95DEC5D62DF /* NSProxy+KiwiVerifierAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B9E2DBFDCE0D5E89C768DCF /* NSProxy+KiwiVerifierAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
C621CDC255C81BF4E4586068 /* OAStackViewDistributionStrategy.m in Sources */ = {isa = PBXBuildFile; fileRef = C23A1311AA2C1EA1D567AE58 /* OAStackViewDistributionStrategy.m */; };
C80713D9ACDDCAFB413087BA /* KWItNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 02FD8A89DD0B217D11AF22DD /* KWItNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
C8E77B8F4492FC6EBC1CA482 /* KWDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A32CC1C82673A7C9EAB5353 /* KWDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
CAB488F22BB2A349679551BE /* KWAsyncVerifier.m in Sources */ = {isa = PBXBuildFile; fileRef = A555F5BA2E9466CFFC7324B4 /* KWAsyncVerifier.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
CB2BCEE73AB3C2BE06D89E11 /* NSProxy+KiwiVerifierAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E0C27FE70AB88DCB2402857 /* NSProxy+KiwiVerifierAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
CE2D928275880C806D33DE2D /* OAStackView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B90E6BD21591A4585962496 /* OAStackView.h */; settings = {ATTRIBUTES = (Public, ); }; };
CE712CCFE97A0A4C6E188C40 /* KWContainMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = E43DADC86826EC36EB57A33B /* KWContainMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
CFAB1C0EC986A0350DD6FFC3 /* KWObjCUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = BBC50BAD8D89F586C2A2FEBF /* KWObjCUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
D07213DE8512784EC5A73C66 /* KWMessageTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 243DE5C9223FA42DA139B96F /* KWMessageTracker.h */; settings = {ATTRIBUTES = (Public, ); }; };
D1189197FEAAB7C3BDCF13D1 /* KWInequalityMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = BCF128C3DC01CB9C302BC134 /* KWInequalityMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
D4AAB992549BC1D55C037989 /* KWChangeMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A0E7DF0D589F64374B2842 /* KWChangeMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
D69542A762933D4119F4037C /* OAStackView+Constraint.h in Headers */ = {isa = PBXBuildFile; fileRef = C809B772AB6D8B7D66C7D8A2 /* OAStackView+Constraint.h */; settings = {ATTRIBUTES = (Public, ); }; };
D75A2635628F6F5032FEFD39 /* KWNotificationMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A3D410ADC1FF4D1964A9471 /* KWNotificationMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
D7FB58C2517869C7F85F846A /* KWLet.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D9506371937550EAEE77AFB /* KWLet.h */; settings = {ATTRIBUTES = (Public, ); }; };
D9108333F31B44737AE51888 /* KWCallSite.m in Sources */ = {isa = PBXBuildFile; fileRef = ACBA04D2CB7C07446AE7C736 /* KWCallSite.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
DA5CF5E77066405CE4882AF2 /* KWBeKindOfClassMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = D4DC714EDD1F2346A2E0D51D /* KWBeKindOfClassMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
DA876486621A87114A261B54 /* KWBeTrueMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = A451277E41CEFF90A032474E /* KWBeTrueMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
DCE42D78C84CFCD38EE18864 /* KWGenericMatchingAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A00012AB62038E02A8BEFF4 /* KWGenericMatchingAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
DF1E3E6581138FDF4D86C823 /* KWMatchVerifier.m in Sources */ = {isa = PBXBuildFile; fileRef = B10FA779C0BD7C37A36D9402 /* KWMatchVerifier.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
DF7D0CB7771B8112440CA248 /* KWSymbolicator.h in Headers */ = {isa = PBXBuildFile; fileRef = EE2AE02B62E3B4767A24789C /* KWSymbolicator.h */; settings = {ATTRIBUTES = (Public, ); }; };
E0C5D1D4A532784A73A209E9 /* NSObject+KiwiStubAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 560740A661643C63C567F8A8 /* NSObject+KiwiStubAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
E1EFF3F69138F31689E99EF9 /* KWAfterAllNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 75DD5AC20A7C049424F4B74E /* KWAfterAllNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
E3E96B4945E6D0E26D122CB1 /* KWUserDefinedMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 620EC4A9F497C50076242AE8 /* KWUserDefinedMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
E642CBECD28F1F06279A9930 /* NSValue+KiwiAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 145083BF0B6E0EB57AC63512 /* NSValue+KiwiAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
E665EB8F1C7B0DB1AAAE98F3 /* KWAfterEachNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CC3594F73B5C8529044FDB3B /* KWAfterEachNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
E66FE0DEC52A9A79E7AAEEF0 /* OAStackViewAlignmentStrategy.h in Headers */ = {isa = PBXBuildFile; fileRef = C769B7973A4CF901D9711689 /* OAStackViewAlignmentStrategy.h */; settings = {ATTRIBUTES = (Public, ); }; };
E91726963A1D70D65A0C6428 /* KWRespondToSelectorMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CA8AD367C971DD82427F4AE /* KWRespondToSelectorMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
E943786F62DF61D7A6454356 /* KWBeMemberOfClassMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EFCED26B5D9A256C2B1F238 /* KWBeMemberOfClassMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
E961F1E03FB1C2349361DD43 /* KWProbe.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED94E0B9B0394509B3E09C5 /* KWProbe.h */; settings = {ATTRIBUTES = (Public, ); }; };
E98AFA0C1B3C336D00CDF427 /* OAStackView_ArrangedSubviews.h in Headers */ = {isa = PBXBuildFile; fileRef = E98AFA0B1B3C336D00CDF427 /* OAStackView_ArrangedSubviews.h */; };
E98AFA0E1B3C337400CDF427 /* OAStackView_ArrangedSubviews.h in Headers */ = {isa = PBXBuildFile; fileRef = E98AFA0B1B3C336D00CDF427 /* OAStackView_ArrangedSubviews.h */; };
EB6342DDFC16EA1697673367 /* NSInvocation+OCMAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 87EF738D1C4A43D46DF7218C /* NSInvocation+OCMAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
EBA3CB1AFC1C14BE0CE682AD /* KWRegisterMatchersNode.h in Headers */ = {isa = PBXBuildFile; fileRef = ACC8D3E191EA0619F7399012 /* KWRegisterMatchersNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
EBD4862464FD997A831166EA /* KWSuiteConfigurationBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 30DA7C8C1EFC416457FC8B42 /* KWSuiteConfigurationBase.h */; settings = {ATTRIBUTES = (Public, ); }; };
EC492A4A11096A7C75100A48 /* KWNull.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C1F5C02FB09C0FF0F96677 /* KWNull.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
ECFEB59A5F44EDA8D3FBD8D4 /* KWContextNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB3F913D2C3534F52F51115 /* KWContextNode.h */; settings = {ATTRIBUTES = (Public, ); }; };
EE2B62B405282A634D287EBE /* KWAny.h in Headers */ = {isa = PBXBuildFile; fileRef = D0BB1D42645D915747574A22 /* KWAny.h */; settings = {ATTRIBUTES = (Public, ); }; };
EEA3CA588F65F1512D957B11 /* KWGenericMatchEvaluator.h in Headers */ = {isa = PBXBuildFile; fileRef = 294F36EE918E72BF79612315 /* KWGenericMatchEvaluator.h */; settings = {ATTRIBUTES = (Public, ); }; };
F0CF9FFB12EF2E7F27C7B053 /* KWBeEmptyMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D6009B9C94AECC41C67A728 /* KWBeEmptyMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; };
F1CB4A3B4C5363BEE47FA95F /* KWExpectationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBBF5C84A2D0F0D28ACFDFF /* KWExpectationType.h */; settings = {ATTRIBUTES = (Public, ); }; };
F27AC0C8EBEBA418A364A342 /* OAStackView+Hiding.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A75E879562A11A981CCFD5A /* OAStackView+Hiding.m */; };
F32764052B9D01F2F353A405 /* NSObject+KiwiStubAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A33EBB2E314FC78CEECECD2 /* NSObject+KiwiStubAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
F5FCFE535499B945FB18C2AE /* KWBeEmptyMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = CFD0DDB5AA2C2F14D17C426D /* KWBeEmptyMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
F6E36EDA77C471B0F6968FFE /* KWAllTestsSuite.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B488E6CE2A56F9851C430BE /* KWAllTestsSuite.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
F7DE632B48F6DA9F79D4389F /* KWConformToProtocolMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CB72FFEC97461195853D612 /* KWConformToProtocolMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
F9E8F65175B7BDA39D21190B /* NSNumber+KiwiAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = C4ACFEC0D0832529FE731BAE /* NSNumber+KiwiAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
FCB4C6917C16EC092822D286 /* KWBeIdenticalToMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 173D6CE7DE6A5E0C4EB11F89 /* KWBeIdenticalToMatcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
FD37298327BFBA9565342536 /* KWStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 22082A63EDE2751FC358131D /* KWStub.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
FD7EAD63A8717691593218FD /* NSObject+KiwiSpyAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = A0082D69219983D785A1A1CE /* NSObject+KiwiSpyAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
FDF3B1FA64C2D5CEE45B4F31 /* KWSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = C048736C9A32352B8514854A /* KWSpec.h */; settings = {ATTRIBUTES = (Public, ); }; };
FF09FC3178FF8B7F7C161492 /* KWExistVerifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E33E70A6CB20ACE6FBE30EB /* KWExistVerifier.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
FF95B07C46A7F42C58D5267F /* Pods-OAStackView_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D258BECC7C69414C360343D7 /* Pods-OAStackView_Example-dummy.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
5008A55BDDEC69FF3781ACD5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 2F28FE103CA5729A89145BF6 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6F62413DFCA8904E43B1C432;
remoteInfo = "Pods-OAStackView_Example-OAStackView-OAStackView";
};
6C16DF600BF2C72264BAA47A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 2F28FE103CA5729A89145BF6 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0745E178BAF76FA8832107D1;
remoteInfo = "Pods-OAStackView_Example-OAStackView";
};
98DBA5D6F6973C67089AFF9E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 2F28FE103CA5729A89145BF6 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 791C55622877CF3E76D07DB1;
remoteInfo = "Pods-OAStackView_Tests-OAStackView-OAStackView";
};
A2B9B3226E8E50D87BD81F6D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 2F28FE103CA5729A89145BF6 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0FD16F6153FB89FA1B63EEA7;
remoteInfo = "Pods-OAStackView_Tests-OAStackView";
};
DE52B45F4B5DD7813C79CBC7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 2F28FE103CA5729A89145BF6 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 40A3599A3536EAD5B4EF7C6D;
remoteInfo = "Pods-OAStackView_Tests-Kiwi";
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0083407DDC61E036CF46334F /* KWMessagePattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWMessagePattern.m; path = Classes/Core/KWMessagePattern.m; sourceTree = "<group>"; };
00B132E002F0EAE6F7C4C007 /* OAStackView+Traversal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OAStackView+Traversal.h"; sourceTree = "<group>"; };
024194B58731070E9AC9710B /* OAStackViewAlignmentStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OAStackViewAlignmentStrategy.m; sourceTree = "<group>"; };
02FD8A89DD0B217D11AF22DD /* KWItNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWItNode.m; path = Classes/Nodes/KWItNode.m; sourceTree = "<group>"; };
058DCD7B3AD314654E65C31D /* KWUserDefinedMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWUserDefinedMatcher.h; path = Classes/Matchers/KWUserDefinedMatcher.h; sourceTree = "<group>"; };
05F5A8061995BC2DDB370349 /* Kiwi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Kiwi.h; path = Classes/Core/Kiwi.h; sourceTree = "<group>"; };
0754AEC9F91F336B0F0B7952 /* KWHaveMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWHaveMatcher.h; path = Classes/Matchers/KWHaveMatcher.h; sourceTree = "<group>"; };
081BE9FED2704350D391669D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
081E3B5D98174C5A6CB8008C /* KWBeBetweenMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBeBetweenMatcher.m; path = Classes/Matchers/KWBeBetweenMatcher.m; sourceTree = "<group>"; };
09B0D351B5C153B13C51063F /* KWContextNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWContextNode.m; path = Classes/Nodes/KWContextNode.m; sourceTree = "<group>"; };
09EF0D02B903BC93BB8D1D0D /* KWMatchVerifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWMatchVerifier.h; path = Classes/Verifiers/KWMatchVerifier.h; sourceTree = "<group>"; };
0A33EBB2E314FC78CEECECD2 /* NSObject+KiwiStubAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+KiwiStubAdditions.m"; path = "Classes/Stubbing/NSObject+KiwiStubAdditions.m"; sourceTree = "<group>"; };
0A75E879562A11A981CCFD5A /* OAStackView+Hiding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OAStackView+Hiding.m"; sourceTree = "<group>"; };
0B092CBCD2CA07E4FDE805F8 /* KWLetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWLetNode.m; path = Classes/Nodes/KWLetNode.m; sourceTree = "<group>"; };
0B5520F3F6395AD2AF62671A /* KWBlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBlockNode.h; path = Classes/Nodes/KWBlockNode.h; sourceTree = "<group>"; };
0C3E4BCF308C363C3BA7FC04 /* KWStringUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWStringUtilities.m; path = Classes/Core/KWStringUtilities.m; sourceTree = "<group>"; };
0C526C95C728D2BAE6D2EBCB /* Pods-OAStackView_Tests-Kiwi.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-OAStackView_Tests-Kiwi.modulemap"; sourceTree = "<group>"; };
0E3E64AE3B49F0F57B12511D /* KWWorkarounds.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWWorkarounds.h; path = Classes/Core/KWWorkarounds.h; sourceTree = "<group>"; };
0E88803C9DC587D72C7023B1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
0EFCED26B5D9A256C2B1F238 /* KWBeMemberOfClassMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBeMemberOfClassMatcher.h; path = Classes/Matchers/KWBeMemberOfClassMatcher.h; sourceTree = "<group>"; };
111278D6F2B0761FB8F79673 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
12973B5EC7A1EAA19E9FABF0 /* KWHaveValueMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWHaveValueMatcher.h; path = Classes/Matchers/KWHaveValueMatcher.h; sourceTree = "<group>"; };
145083BF0B6E0EB57AC63512 /* NSValue+KiwiAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSValue+KiwiAdditions.m"; path = "Classes/Core/NSValue+KiwiAdditions.m"; sourceTree = "<group>"; };
167FE0222527636F8FB9499F /* KWBeforeAllNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBeforeAllNode.m; path = Classes/Nodes/KWBeforeAllNode.m; sourceTree = "<group>"; };
1697310CD3B47518512A5F82 /* Pods-OAStackView_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-OAStackView_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
173D6CE7DE6A5E0C4EB11F89 /* KWBeIdenticalToMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBeIdenticalToMatcher.m; path = Classes/Matchers/KWBeIdenticalToMatcher.m; sourceTree = "<group>"; };
1779D5C24B1FAFDEDD3D682C /* KWRegisterMatchersNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWRegisterMatchersNode.m; path = Classes/Nodes/KWRegisterMatchersNode.m; sourceTree = "<group>"; };
1E33E70A6CB20ACE6FBE30EB /* KWExistVerifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWExistVerifier.m; path = Classes/Verifiers/KWExistVerifier.m; sourceTree = "<group>"; };
1E668202536B81386E96BFB8 /* KWEqualMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWEqualMatcher.m; path = Classes/Matchers/KWEqualMatcher.m; sourceTree = "<group>"; };
1ED94E0B9B0394509B3E09C5 /* KWProbe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWProbe.h; path = Classes/Core/KWProbe.h; sourceTree = "<group>"; };
1F233FE18954DBE4F51D0E13 /* Pods-OAStackView_Example-OAStackView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-OAStackView_Example-OAStackView.modulemap"; sourceTree = "<group>"; };
1F94C81F1B842836D932F7EC /* KWValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWValue.m; path = Classes/Core/KWValue.m; sourceTree = "<group>"; };
1FFFE90B7F84569527E95B5D /* KWBeforeEachNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBeforeEachNode.h; path = Classes/Nodes/KWBeforeEachNode.h; sourceTree = "<group>"; };
2065AEC45CFE35B5ABB87FAB /* KWBeKindOfClassMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBeKindOfClassMatcher.h; path = Classes/Matchers/KWBeKindOfClassMatcher.h; sourceTree = "<group>"; };
22082A63EDE2751FC358131D /* KWStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWStub.m; path = Classes/Stubbing/KWStub.m; sourceTree = "<group>"; };
2411E3D92988EE8ED2F5781F /* KWProbePoller.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWProbePoller.m; path = Classes/Core/KWProbePoller.m; sourceTree = "<group>"; };
242F82F079F82A603E9FD011 /* KWIntercept.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWIntercept.m; path = Classes/Stubbing/KWIntercept.m; sourceTree = "<group>"; };
243DE5C9223FA42DA139B96F /* KWMessageTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWMessageTracker.h; path = Classes/Core/KWMessageTracker.h; sourceTree = "<group>"; };
251C6C0D56338AB4219E6BB3 /* KWMatching.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWMatching.h; path = Classes/Core/KWMatching.h; sourceTree = "<group>"; };
259FE7E096986B690B85576F /* KWIntercept.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWIntercept.h; path = Classes/Stubbing/KWIntercept.h; sourceTree = "<group>"; };
28313395E0E6FD06CC778A3B /* Pods-OAStackView_Tests-OAStackView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Pods-OAStackView_Tests-OAStackView-umbrella.h"; path = "../Pods-OAStackView_Tests-OAStackView/Pods-OAStackView_Tests-OAStackView-umbrella.h"; sourceTree = "<group>"; };
28572CB543A8E98DFB7CAE49 /* Pods-OAStackView_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-OAStackView_Example-frameworks.sh"; sourceTree = "<group>"; };
289C519B41B7A75A2B4D4F2A /* KWStringPrefixMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWStringPrefixMatcher.h; path = Classes/Matchers/KWStringPrefixMatcher.h; sourceTree = "<group>"; };
294F36EE918E72BF79612315 /* KWGenericMatchEvaluator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWGenericMatchEvaluator.h; path = Classes/Matchers/KWGenericMatchEvaluator.h; sourceTree = "<group>"; };
2975D65744662AA6E0969337 /* KWBeWithinMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBeWithinMatcher.h; path = Classes/Matchers/KWBeWithinMatcher.h; sourceTree = "<group>"; };
29A1E3BC335F79498B2E6332 /* OAStackView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = OAStackView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
2CEBF1D2605EA9939C2B7454 /* Pods-OAStackView_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-OAStackView_Tests.modulemap"; sourceTree = "<group>"; };
2D6009B9C94AECC41C67A728 /* KWBeEmptyMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBeEmptyMatcher.h; path = Classes/Matchers/KWBeEmptyMatcher.h; sourceTree = "<group>"; };
2FBFCD1455A76E4940F88609 /* KWFailure.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWFailure.h; path = Classes/Core/KWFailure.h; sourceTree = "<group>"; };
30DA7C8C1EFC416457FC8B42 /* KWSuiteConfigurationBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWSuiteConfigurationBase.h; path = Classes/Config/KWSuiteConfigurationBase.h; sourceTree = "<group>"; };
3130685CAEDF2761AE49B03C /* KWCountType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWCountType.h; path = Classes/Core/KWCountType.h; sourceTree = "<group>"; };
316A51F9CF6A07F1A3ED25B6 /* KWGenericMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWGenericMatcher.h; path = Classes/Matchers/KWGenericMatcher.h; sourceTree = "<group>"; };
3A45B82D6FEC091C814E0901 /* Pods-OAStackView_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-OAStackView_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
3CAFB5F1729549DC130E276C /* Pods-OAStackView_Example-OAStackView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OAStackView_Example-OAStackView.xcconfig"; sourceTree = "<group>"; };
3D9506371937550EAEE77AFB /* KWLet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWLet.h; path = Classes/Core/KWLet.h; sourceTree = "<group>"; };
3DF6F20100AAE1CA9538A76F /* KWGenericMatchingAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWGenericMatchingAdditions.m; path = Classes/Matchers/KWGenericMatchingAdditions.m; sourceTree = "<group>"; };
3F7AB69D58A91C12D63C749F /* KWStringUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWStringUtilities.h; path = Classes/Core/KWStringUtilities.h; sourceTree = "<group>"; };
43F43A32CC59A45C8930A23D /* KWFormatter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWFormatter.h; path = Classes/Core/KWFormatter.h; sourceTree = "<group>"; };
445FB12A004E8A9AAA71AAC6 /* KWNilMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWNilMatcher.h; path = Classes/Matchers/KWNilMatcher.h; sourceTree = "<group>"; };
4721487A6750AD093F35DF11 /* KWStringContainsMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWStringContainsMatcher.m; path = Classes/Matchers/KWStringContainsMatcher.m; sourceTree = "<group>"; };
482F8D64D26B3EC3C01F0736 /* KWEqualMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWEqualMatcher.h; path = Classes/Matchers/KWEqualMatcher.h; sourceTree = "<group>"; };
48AB2EEA34B551ADEBA08821 /* KWReporting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWReporting.h; path = Classes/Core/KWReporting.h; sourceTree = "<group>"; };
497268F3953469FEF7923067 /* KWReceiveMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWReceiveMatcher.h; path = Classes/Matchers/KWReceiveMatcher.h; sourceTree = "<group>"; };
4DEBCBE61FFB94A608259909 /* Pods-OAStackView_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-OAStackView_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
5037740C0F7A842E1BED6BA7 /* Pods-OAStackView_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-OAStackView_Example.modulemap"; sourceTree = "<group>"; };
5250EF14BDA1D35A1871BA93 /* NSObject+KiwiMockAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+KiwiMockAdditions.h"; path = "Classes/Mocking/NSObject+KiwiMockAdditions.h"; sourceTree = "<group>"; };
5372622846CA10742160AB73 /* KWExample.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWExample.h; path = Classes/Core/KWExample.h; sourceTree = "<group>"; };
560740A661643C63C567F8A8 /* NSObject+KiwiStubAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+KiwiStubAdditions.h"; path = "Classes/Stubbing/NSObject+KiwiStubAdditions.h"; sourceTree = "<group>"; };
5684373F7590D25474DF075A /* KWFutureObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWFutureObject.m; path = Classes/Core/KWFutureObject.m; sourceTree = "<group>"; };
58F1E34CEF4D21E4E44F18DE /* KWInvocationCapturer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWInvocationCapturer.m; path = Classes/Core/KWInvocationCapturer.m; sourceTree = "<group>"; };
599407DD6BCEF320AED08E3F /* KWInvocationCapturer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWInvocationCapturer.h; path = Classes/Core/KWInvocationCapturer.h; sourceTree = "<group>"; };
5A3D410ADC1FF4D1964A9471 /* KWNotificationMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWNotificationMatcher.m; path = Classes/Matchers/KWNotificationMatcher.m; sourceTree = "<group>"; };
5BBBF5C84A2D0F0D28ACFDFF /* KWExpectationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWExpectationType.h; path = Classes/Core/KWExpectationType.h; sourceTree = "<group>"; };
5C28922F0A1CC400548CE9A9 /* KWMatcherFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWMatcherFactory.m; path = Classes/Core/KWMatcherFactory.m; sourceTree = "<group>"; };
5C403336BA8BA16A7D5E45D7 /* KWHaveValueMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWHaveValueMatcher.m; path = Classes/Matchers/KWHaveValueMatcher.m; sourceTree = "<group>"; };
5D01886BD65384AF92DB5E81 /* KWContainStringMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWContainStringMatcher.m; path = Classes/Matchers/KWContainStringMatcher.m; sourceTree = "<group>"; };
5D04C2C7699681287FB63BD6 /* KWReceiveMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWReceiveMatcher.m; path = Classes/Matchers/KWReceiveMatcher.m; sourceTree = "<group>"; };
5D2F4F1397A17E203EA8112B /* OAStackView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OAStackView.m; sourceTree = "<group>"; };
5EB4C3AC5F8D06253846DDB7 /* KWValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWValue.h; path = Classes/Core/KWValue.h; sourceTree = "<group>"; };
620EC4A9F497C50076242AE8 /* KWUserDefinedMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWUserDefinedMatcher.m; path = Classes/Matchers/KWUserDefinedMatcher.m; sourceTree = "<group>"; };
62238DA1D62C3F6DF2BA2590 /* NSMethodSignature+KiwiAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMethodSignature+KiwiAdditions.h"; path = "Classes/Core/NSMethodSignature+KiwiAdditions.h"; sourceTree = "<group>"; };
62836B0A95D7E9CAAC01BDEE /* KWMessagePattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWMessagePattern.h; path = Classes/Core/KWMessagePattern.h; sourceTree = "<group>"; };
62996F866D1F310C81ACA7D2 /* KWGenericMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWGenericMatcher.m; path = Classes/Matchers/KWGenericMatcher.m; sourceTree = "<group>"; };
63CD8F567707C8CFAFF87734 /* OAStackViewDistributionStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OAStackViewDistributionStrategy.h; sourceTree = "<group>"; };
652556F716079E670B5888D8 /* Kiwi.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Kiwi.framework; sourceTree = BUILT_PRODUCTS_DIR; };
65B2353F3CD3094DA2FF2308 /* KWHaveMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWHaveMatcher.m; path = Classes/Matchers/KWHaveMatcher.m; sourceTree = "<group>"; };
667360543B85E1CE0E6BD756 /* OAStackView.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = OAStackView.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
66DF6E5736C79E4E7F3A85F6 /* KWExample.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWExample.m; path = Classes/Core/KWExample.m; sourceTree = "<group>"; };
688FC07D0D28E47F52F5B14B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
6999B2A35BC627FAA2DDDEC3 /* OAStackView.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = OAStackView.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
6A00012AB62038E02A8BEFF4 /* KWGenericMatchingAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWGenericMatchingAdditions.h; path = Classes/Matchers/KWGenericMatchingAdditions.h; sourceTree = "<group>"; };
6B0415735C877B3877230FB3 /* KWContainStringMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWContainStringMatcher.h; path = Classes/Matchers/KWContainStringMatcher.h; sourceTree = "<group>"; };
6CA67F5E3F1FC6BA85812A0E /* Pods-OAStackView_Tests-OAStackView-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OAStackView_Tests-OAStackView-Private.xcconfig"; path = "../Pods-OAStackView_Tests-OAStackView/Pods-OAStackView_Tests-OAStackView-Private.xcconfig"; sourceTree = "<group>"; };
6CB72FFEC97461195853D612 /* KWConformToProtocolMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWConformToProtocolMatcher.m; path = Classes/Matchers/KWConformToProtocolMatcher.m; sourceTree = "<group>"; };
6E375DA4ED597FE594B43118 /* KWSymbolicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWSymbolicator.m; path = Classes/Core/KWSymbolicator.m; sourceTree = "<group>"; };
6EB2F2F47B2069CB917F08D0 /* KWPendingNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWPendingNode.h; path = Classes/Nodes/KWPendingNode.h; sourceTree = "<group>"; };
6FFFAE38B448667FEFA93B10 /* KWExampleSuiteBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWExampleSuiteBuilder.h; path = Classes/Core/KWExampleSuiteBuilder.h; sourceTree = "<group>"; };
7324ABEAA8B7E24E387AE995 /* Pods-OAStackView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OAStackView_Tests.debug.xcconfig"; sourceTree = "<group>"; };
73FC5A3A7A5ED141CB0FFD73 /* Pods-OAStackView_Tests-Kiwi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-OAStackView_Tests-Kiwi-prefix.pch"; sourceTree = "<group>"; };
75DD5AC20A7C049424F4B74E /* KWAfterAllNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWAfterAllNode.m; path = Classes/Nodes/KWAfterAllNode.m; sourceTree = "<group>"; };
7616D91F0FA7BF755665EFD6 /* KWBeSubclassOfClassMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBeSubclassOfClassMatcher.h; path = Classes/Matchers/KWBeSubclassOfClassMatcher.h; sourceTree = "<group>"; };
77AB712A65FB0A35CE54DBBD /* KWRegularExpressionPatternMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWRegularExpressionPatternMatcher.m; path = Classes/Matchers/KWRegularExpressionPatternMatcher.m; sourceTree = "<group>"; };
78BFB8748DE73E3FE13DBA4C /* Pods-OAStackView_Example-OAStackView-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OAStackView_Example-OAStackView-Private.xcconfig"; sourceTree = "<group>"; };
7A4EE6EC78BDA41D7B6A4345 /* KWMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWMatcher.m; path = Classes/Core/KWMatcher.m; sourceTree = "<group>"; };
7B55DED00B338C1B4A13159B /* Reveal.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Reveal.framework; path = "Reveal-Framework-1.5.1/Reveal.framework"; sourceTree = "<group>"; };
7D44B9EA6A689ADDC16B323E /* KWStringContainsMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWStringContainsMatcher.h; path = Classes/Matchers/KWStringContainsMatcher.h; sourceTree = "<group>"; };
804AE3C2E4DFBB4C8C53070B /* NSNumber+KiwiAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSNumber+KiwiAdditions.m"; path = "Classes/Core/NSNumber+KiwiAdditions.m"; sourceTree = "<group>"; };
835170A9702BA5446D42BEAB /* KWBeZeroMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBeZeroMatcher.m; path = Classes/Matchers/KWBeZeroMatcher.m; sourceTree = "<group>"; };
83A0E7DF0D589F64374B2842 /* KWChangeMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWChangeMatcher.h; path = Classes/Matchers/KWChangeMatcher.h; sourceTree = "<group>"; };
85E059A68529EF3CB5364BF3 /* NSMethodSignature+KiwiAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMethodSignature+KiwiAdditions.m"; path = "Classes/Core/NSMethodSignature+KiwiAdditions.m"; sourceTree = "<group>"; };
87EF738D1C4A43D46DF7218C /* NSInvocation+OCMAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSInvocation+OCMAdditions.h"; path = "Classes/Core/NSInvocation+OCMAdditions.h"; sourceTree = "<group>"; };
87F0712C14802E5121F4EAF9 /* KWCaptureSpy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWCaptureSpy.m; path = Classes/Core/KWCaptureSpy.m; sourceTree = "<group>"; };
89FDCA0DBCC9632E6877C436 /* OAStackView+Traversal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OAStackView+Traversal.m"; sourceTree = "<group>"; };
8A0F6EFD4B7B832DA2E3009A /* Pods-OAStackView_Tests-OAStackView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; name = "Pods-OAStackView_Tests-OAStackView.modulemap"; path = "../Pods-OAStackView_Tests-OAStackView/Pods-OAStackView_Tests-OAStackView.modulemap"; sourceTree = "<group>"; };
8A32CC1C82673A7C9EAB5353 /* KWDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWDeviceInfo.m; path = Classes/Core/KWDeviceInfo.m; sourceTree = "<group>"; };
8B236A22F86E97D592D87261 /* Pods_OAStackView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_OAStackView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8B488E6CE2A56F9851C430BE /* KWAllTestsSuite.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWAllTestsSuite.m; path = Classes/Config/KWAllTestsSuite.m; sourceTree = "<group>"; };
8B5C01240014EFAF6EDD05F0 /* KWAsyncVerifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWAsyncVerifier.h; path = Classes/Verifiers/KWAsyncVerifier.h; sourceTree = "<group>"; };
8B6AD154C18337823F3A956B /* Pods-OAStackView_Tests-OAStackView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Pods-OAStackView_Tests-OAStackView-dummy.m"; path = "../Pods-OAStackView_Tests-OAStackView/Pods-OAStackView_Tests-OAStackView-dummy.m"; sourceTree = "<group>"; };
8B90E6BD21591A4585962496 /* OAStackView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OAStackView.h; sourceTree = "<group>"; };
8BFA8A2E4B7A676E1CF9CAC5 /* KWMatcherFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWMatcherFactory.h; path = Classes/Core/KWMatcherFactory.h; sourceTree = "<group>"; };
8CA8AD367C971DD82427F4AE /* KWRespondToSelectorMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWRespondToSelectorMatcher.m; path = Classes/Matchers/KWRespondToSelectorMatcher.m; sourceTree = "<group>"; };
8E5582CC0660DAEF60FF15AC /* KWNull.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWNull.h; path = Classes/Core/KWNull.h; sourceTree = "<group>"; };
8ECED91C1FD1BA44821B8C3F /* NSObject+KiwiVerifierAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+KiwiVerifierAdditions.h"; path = "Classes/Core/NSObject+KiwiVerifierAdditions.h"; sourceTree = "<group>"; };
8ED9899540CA916F53DBEC34 /* KWExistVerifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWExistVerifier.h; path = Classes/Verifiers/KWExistVerifier.h; sourceTree = "<group>"; };
8F0275C2CF3800B22D549626 /* KWRespondToSelectorMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWRespondToSelectorMatcher.h; path = Classes/Matchers/KWRespondToSelectorMatcher.h; sourceTree = "<group>"; };
8FCA5DF8D715EC9434931919 /* KWStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWStub.h; path = Classes/Stubbing/KWStub.h; sourceTree = "<group>"; };
90BD45D51F46A240E9D09764 /* KWBlockRaiseMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBlockRaiseMatcher.h; path = Classes/Matchers/KWBlockRaiseMatcher.h; sourceTree = "<group>"; };
92F34F69C94B691FFEECCA5F /* NSObject+KiwiMockAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+KiwiMockAdditions.m"; path = "Classes/Mocking/NSObject+KiwiMockAdditions.m"; sourceTree = "<group>"; };
960F35E0E3BBE58D61A73484 /* KWBlock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBlock.m; path = Classes/Core/KWBlock.m; sourceTree = "<group>"; };
9631465C5C3F938008ABCCE4 /* NSInvocation+KiwiAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSInvocation+KiwiAdditions.m"; path = "Classes/Core/NSInvocation+KiwiAdditions.m"; sourceTree = "<group>"; };
97B67A114D3D5C4DB2C144C1 /* KWAfterAllNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWAfterAllNode.h; path = Classes/Nodes/KWAfterAllNode.h; sourceTree = "<group>"; };
97C1F5C02FB09C0FF0F96677 /* KWNull.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWNull.m; path = Classes/Core/KWNull.m; sourceTree = "<group>"; };
98C6BD910BD253439B853828 /* Pods-OAStackView_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-OAStackView_Example-acknowledgements.plist"; sourceTree = "<group>"; };
99320390A940B38882774870 /* KWInequalityMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWInequalityMatcher.m; path = Classes/Matchers/KWInequalityMatcher.m; sourceTree = "<group>"; };
9A6D51B3A1F472C30739D079 /* KWExampleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWExampleNode.h; path = Classes/Nodes/KWExampleNode.h; sourceTree = "<group>"; };
9B9E2DBFDCE0D5E89C768DCF /* NSProxy+KiwiVerifierAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSProxy+KiwiVerifierAdditions.h"; path = "Classes/Core/NSProxy+KiwiVerifierAdditions.h"; sourceTree = "<group>"; };
9E0C27FE70AB88DCB2402857 /* NSProxy+KiwiVerifierAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSProxy+KiwiVerifierAdditions.m"; path = "Classes/Core/NSProxy+KiwiVerifierAdditions.m"; sourceTree = "<group>"; };
9E77CA3AFAADCEC9394516EF /* KWNilMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWNilMatcher.m; path = Classes/Matchers/KWNilMatcher.m; sourceTree = "<group>"; };
9ED7A8812CA49FE70C8F6703 /* KWMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWMatcher.h; path = Classes/Core/KWMatcher.h; sourceTree = "<group>"; };
A0082D69219983D785A1A1CE /* NSObject+KiwiSpyAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+KiwiSpyAdditions.h"; path = "Classes/Core/NSObject+KiwiSpyAdditions.h"; sourceTree = "<group>"; };
A0352A63AB9BF027C69D98B2 /* KWBeSubclassOfClassMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBeSubclassOfClassMatcher.m; path = Classes/Matchers/KWBeSubclassOfClassMatcher.m; sourceTree = "<group>"; };
A1B4016144CFC26253F612C6 /* KWExampleSuite.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWExampleSuite.m; path = Classes/Core/KWExampleSuite.m; sourceTree = "<group>"; };
A205A415EE35267979FD96D7 /* Pods-OAStackView_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-OAStackView_Tests-resources.sh"; sourceTree = "<group>"; };
A281CB12BAAB5A71CC7C0126 /* KiwiConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KiwiConfiguration.h; path = Classes/Core/KiwiConfiguration.h; sourceTree = "<group>"; };
A3477A9A8D612B41AB00D0EA /* KWItNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWItNode.h; path = Classes/Nodes/KWItNode.h; sourceTree = "<group>"; };
A3607B5039CE709C2B390C5E /* KWExampleSuite.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWExampleSuite.h; path = Classes/Core/KWExampleSuite.h; sourceTree = "<group>"; };
A3AB56C9DD3A25AF5466B381 /* NSObject+KiwiSpyAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+KiwiSpyAdditions.m"; path = "Classes/Core/NSObject+KiwiSpyAdditions.m"; sourceTree = "<group>"; };
A451277E41CEFF90A032474E /* KWBeTrueMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBeTrueMatcher.m; path = Classes/Matchers/KWBeTrueMatcher.m; sourceTree = "<group>"; };
A52C7E63345A9BCDFEE5B3F6 /* KWPendingNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWPendingNode.m; path = Classes/Nodes/KWPendingNode.m; sourceTree = "<group>"; };
A555F5BA2E9466CFFC7324B4 /* KWAsyncVerifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWAsyncVerifier.m; path = Classes/Verifiers/KWAsyncVerifier.m; sourceTree = "<group>"; };
A86200C42268D58AE1B0AD86 /* Pods-OAStackView_Example-OAStackView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-OAStackView_Example-OAStackView-dummy.m"; sourceTree = "<group>"; };
AA0FE72BB0820AD514481DB7 /* KWMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWMock.h; path = Classes/Mocking/KWMock.h; sourceTree = "<group>"; };
AA99E6CB123085D835E92A3A /* KWBlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBlock.h; path = Classes/Core/KWBlock.h; sourceTree = "<group>"; };
ACBA04D2CB7C07446AE7C736 /* KWCallSite.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWCallSite.m; path = Classes/Core/KWCallSite.m; sourceTree = "<group>"; };
ACC8D3E191EA0619F7399012 /* KWRegisterMatchersNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWRegisterMatchersNode.h; path = Classes/Nodes/KWRegisterMatchersNode.h; sourceTree = "<group>"; };
AE64D60773086525A7489A25 /* Pods-OAStackView_Tests-Kiwi-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OAStackView_Tests-Kiwi-Private.xcconfig"; sourceTree = "<group>"; };
B10FA779C0BD7C37A36D9402 /* KWMatchVerifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWMatchVerifier.m; path = Classes/Verifiers/KWMatchVerifier.m; sourceTree = "<group>"; };
B13D1716C726671F3C32F0F7 /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
B260ABDA0D8ACFFE947449A8 /* KWBlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBlockNode.m; path = Classes/Nodes/KWBlockNode.m; sourceTree = "<group>"; };
B2C6638119FA1A33EED18511 /* OAStackView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = OAStackView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B2DE004BAB9F83CFA30DBB77 /* KWDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWDeviceInfo.h; path = Classes/Core/KWDeviceInfo.h; sourceTree = "<group>"; };
B32D304F2BEC0A0154805284 /* Pods-OAStackView_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-OAStackView_Example-umbrella.h"; sourceTree = "<group>"; };
B4C0B235159C40D784192EF9 /* KWMessageSpying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWMessageSpying.h; path = Classes/Core/KWMessageSpying.h; sourceTree = "<group>"; };
B4D2D4E3281086E0F8704897 /* KWBeBetweenMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBeBetweenMatcher.h; path = Classes/Matchers/KWBeBetweenMatcher.h; sourceTree = "<group>"; };
B5938B01052F6EF4FAC26934 /* KWSuiteConfigurationBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWSuiteConfigurationBase.m; path = Classes/Config/KWSuiteConfigurationBase.m; sourceTree = "<group>"; };
B6AC89215989EFC8A666D504 /* Pods-OAStackView_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-OAStackView_Example-resources.sh"; sourceTree = "<group>"; };
B835A945759D90CD1F1B39C0 /* Pods-OAStackView_Example-OAStackView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-OAStackView_Example-OAStackView-prefix.pch"; sourceTree = "<group>"; };
B970FC888E47101607DA3C20 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../Pods-OAStackView_Tests-OAStackView/Info.plist"; sourceTree = "<group>"; };
BBC50BAD8D89F586C2A2FEBF /* KWObjCUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWObjCUtilities.h; path = Classes/Core/KWObjCUtilities.h; sourceTree = "<group>"; };
BCCAFC3D1E9624435DB2C59B /* Pods-OAStackView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OAStackView_Tests.release.xcconfig"; sourceTree = "<group>"; };
BCD5A911E7327B46C7EB5F50 /* KWBeIdenticalToMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBeIdenticalToMatcher.h; path = Classes/Matchers/KWBeIdenticalToMatcher.h; sourceTree = "<group>"; };
BCF128C3DC01CB9C302BC134 /* KWInequalityMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWInequalityMatcher.h; path = Classes/Matchers/KWInequalityMatcher.h; sourceTree = "<group>"; };
BCF5A2A1D7E46E9C3EDDFA03 /* Pods-OAStackView_Tests-Kiwi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OAStackView_Tests-Kiwi.xcconfig"; sourceTree = "<group>"; };
BEBB06EE58D7487FF1A7BE89 /* NSObject+KiwiVerifierAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+KiwiVerifierAdditions.m"; path = "Classes/Core/NSObject+KiwiVerifierAdditions.m"; sourceTree = "<group>"; };
BEC5A0107A7595E804369111 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
C048736C9A32352B8514854A /* KWSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWSpec.h; path = Classes/Core/KWSpec.h; sourceTree = "<group>"; };
C0D097D73D139EE911875D38 /* KWBeforeAllNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBeforeAllNode.h; path = Classes/Nodes/KWBeforeAllNode.h; sourceTree = "<group>"; };
C23A1311AA2C1EA1D567AE58 /* OAStackViewDistributionStrategy.m */ = {isa = PBXFileReference; includeInIndex = 1; indentWidth = 2; lastKnownFileType = sourcecode.c.objc; path = OAStackViewDistributionStrategy.m; sourceTree = "<group>"; tabWidth = 2; };
C2C213F00BD25D367C89B5D9 /* KWCallSite.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWCallSite.h; path = Classes/Core/KWCallSite.h; sourceTree = "<group>"; };
C348605B130C79C13CC42FAF /* KWCaptureSpy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWCaptureSpy.h; path = Classes/Core/KWCaptureSpy.h; sourceTree = "<group>"; };
C47EE2FAA72FBFF889D50247 /* KWObjCUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWObjCUtilities.m; path = Classes/Core/KWObjCUtilities.m; sourceTree = "<group>"; };
C494CE3ECE7AB33BC34FB0B7 /* KWExampleSuiteBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWExampleSuiteBuilder.m; path = Classes/Core/KWExampleSuiteBuilder.m; sourceTree = "<group>"; };
C4ACFEC0D0832529FE731BAE /* NSNumber+KiwiAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSNumber+KiwiAdditions.h"; path = "Classes/Core/NSNumber+KiwiAdditions.h"; sourceTree = "<group>"; };
C4DDBBA72AF54D31DFAE75C8 /* Pods-OAStackView_Tests-Kiwi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-OAStackView_Tests-Kiwi-dummy.m"; sourceTree = "<group>"; };
C5D218EBC12D444174A95201 /* KWLetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWLetNode.h; path = Classes/Nodes/KWLetNode.h; sourceTree = "<group>"; };
C60D4A6C721EF38CD3C85604 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
C769B7973A4CF901D9711689 /* OAStackViewAlignmentStrategy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OAStackViewAlignmentStrategy.h; sourceTree = "<group>"; };
C7C8B1056D464A717DDA040E /* KWAfterEachNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWAfterEachNode.h; path = Classes/Nodes/KWAfterEachNode.h; sourceTree = "<group>"; };
C809B772AB6D8B7D66C7D8A2 /* OAStackView+Constraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OAStackView+Constraint.h"; sourceTree = "<group>"; };
CA1DD4670E1D336B7688E389 /* Pods-OAStackView_Example-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-OAStackView_Example-environment.h"; sourceTree = "<group>"; };
CB6CD4D55BC330B3F9627B40 /* Pods-OAStackView_Tests-OAStackView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Pods-OAStackView_Tests-OAStackView-prefix.pch"; path = "../Pods-OAStackView_Tests-OAStackView/Pods-OAStackView_Tests-OAStackView-prefix.pch"; sourceTree = "<group>"; };
CC3594F73B5C8529044FDB3B /* KWAfterEachNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWAfterEachNode.m; path = Classes/Nodes/KWAfterEachNode.m; sourceTree = "<group>"; };
CD51FBB6E583F20EAA7BC55E /* KWBeMemberOfClassMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBeMemberOfClassMatcher.m; path = Classes/Matchers/KWBeMemberOfClassMatcher.m; sourceTree = "<group>"; };
CEBB90CC8AFFBBAB06E55645 /* KWContainMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWContainMatcher.m; path = Classes/Matchers/KWContainMatcher.m; sourceTree = "<group>"; };
CED0EB5E24394612684C54FC /* KiwiMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KiwiMacros.h; path = Classes/Core/KiwiMacros.h; sourceTree = "<group>"; };
CF9CAA45B4BD2B90EC981E56 /* KWNotificationMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWNotificationMatcher.h; path = Classes/Matchers/KWNotificationMatcher.h; sourceTree = "<group>"; };
CFD0DDB5AA2C2F14D17C426D /* KWBeEmptyMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBeEmptyMatcher.m; path = Classes/Matchers/KWBeEmptyMatcher.m; sourceTree = "<group>"; };
D0BB1D42645D915747574A22 /* KWAny.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWAny.h; path = Classes/Core/KWAny.h; sourceTree = "<group>"; };
D162458C8935010F53FC2452 /* KWBeZeroMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBeZeroMatcher.h; path = Classes/Matchers/KWBeZeroMatcher.h; sourceTree = "<group>"; };
D258BECC7C69414C360343D7 /* Pods-OAStackView_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-OAStackView_Example-dummy.m"; sourceTree = "<group>"; };
D320E00FE5980CFD4AB17725 /* KWBeTrueMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWBeTrueMatcher.h; path = Classes/Matchers/KWBeTrueMatcher.h; sourceTree = "<group>"; };
D3579F2BA6DC9F7C6D444BDC /* KWSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWSpec.m; path = Classes/Core/KWSpec.m; sourceTree = "<group>"; };
D36584BB7D9993FC1034D3BB /* KWChangeMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWChangeMatcher.m; path = Classes/Matchers/KWChangeMatcher.m; sourceTree = "<group>"; };
D437B7C51B9C700AE19B6388 /* KWMock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWMock.m; path = Classes/Mocking/KWMock.m; sourceTree = "<group>"; };
D4DC714EDD1F2346A2E0D51D /* KWBeKindOfClassMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBeKindOfClassMatcher.m; path = Classes/Matchers/KWBeKindOfClassMatcher.m; sourceTree = "<group>"; };
D5B2B959DEB227093C28C2D9 /* Pods-OAStackView_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-OAStackView_Tests-frameworks.sh"; sourceTree = "<group>"; };
D98D7A16A65C0FD8DCF2A008 /* KWProbePoller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWProbePoller.h; path = Classes/Core/KWProbePoller.h; sourceTree = "<group>"; };
DBB3F913D2C3534F52F51115 /* KWContextNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWContextNode.h; path = Classes/Nodes/KWContextNode.h; sourceTree = "<group>"; };
DBC580C53B2312C7EEE78649 /* KWRegularExpressionPatternMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWRegularExpressionPatternMatcher.h; path = Classes/Matchers/KWRegularExpressionPatternMatcher.h; sourceTree = "<group>"; };
DC34CCD00C377D36521B41AB /* KWMatchers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWMatchers.m; path = Classes/Core/KWMatchers.m; sourceTree = "<group>"; };
DC55BDCA167103C53C77C3CA /* KWWorkarounds.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWWorkarounds.m; path = Classes/Core/KWWorkarounds.m; sourceTree = "<group>"; };
DCBCCC309C009F4A497E4A08 /* Pods-OAStackView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OAStackView_Example.debug.xcconfig"; sourceTree = "<group>"; };
DDE3ADAD6526B762FC83AA58 /* KWBlockRaiseMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBlockRaiseMatcher.m; path = Classes/Matchers/KWBlockRaiseMatcher.m; sourceTree = "<group>"; };
DE017E0F3B55FE16656200C6 /* KWFormatter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWFormatter.m; path = Classes/Core/KWFormatter.m; sourceTree = "<group>"; };
DEA8EBD560E729B8B81CC41D /* KWMessageTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWMessageTracker.m; path = Classes/Core/KWMessageTracker.m; sourceTree = "<group>"; };
DF87EC70CABDD00E9E41D906 /* KWBeWithinMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBeWithinMatcher.m; path = Classes/Matchers/KWBeWithinMatcher.m; sourceTree = "<group>"; };
E225815D3577B4B188423306 /* KWFutureObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWFutureObject.h; path = Classes/Core/KWFutureObject.h; sourceTree = "<group>"; };
E29076317D3B8AF774F66E06 /* NSInvocation+OCMAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSInvocation+OCMAdditions.m"; path = "Classes/Core/NSInvocation+OCMAdditions.m"; sourceTree = "<group>"; };
E2D9550185C214BBB2CD0617 /* KWConformToProtocolMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWConformToProtocolMatcher.h; path = Classes/Matchers/KWConformToProtocolMatcher.h; sourceTree = "<group>"; };
E3C4C72A623515D1EE65B049 /* Pods-OAStackView_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-OAStackView_Tests-dummy.m"; sourceTree = "<group>"; };
E43DADC86826EC36EB57A33B /* KWContainMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWContainMatcher.h; path = Classes/Matchers/KWContainMatcher.h; sourceTree = "<group>"; };
E4E0FDD32FE4CA6B4805488A /* NSInvocation+KiwiAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSInvocation+KiwiAdditions.h"; path = "Classes/Core/NSInvocation+KiwiAdditions.h"; sourceTree = "<group>"; };
E822B703CD09D5556B8F8265 /* OAStackView+Constraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OAStackView+Constraint.m"; sourceTree = "<group>"; };
E86334892F73798F2B097D5F /* OAStackView+Hiding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OAStackView+Hiding.h"; sourceTree = "<group>"; };
E8A49568926762C4F16944FE /* NSValue+KiwiAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSValue+KiwiAdditions.h"; path = "Classes/Core/NSValue+KiwiAdditions.h"; sourceTree = "<group>"; };
E8B1734FD14445A1D8D38BD4 /* KWFailure.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWFailure.m; path = Classes/Core/KWFailure.m; sourceTree = "<group>"; };
E91B86F74BD64D5D3108D23A /* Pods-OAStackView_Example-OAStackView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-OAStackView_Example-OAStackView-umbrella.h"; sourceTree = "<group>"; };
E96052DEDBABAD6DE67AB9CC /* KWVerifying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWVerifying.h; path = Classes/Verifiers/KWVerifying.h; sourceTree = "<group>"; };
E9763017ABDD60733231C7B9 /* KWBeforeEachNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWBeforeEachNode.m; path = Classes/Nodes/KWBeforeEachNode.m; sourceTree = "<group>"; };
E98AFA0B1B3C336D00CDF427 /* OAStackView_ArrangedSubviews.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OAStackView_ArrangedSubviews.h; sourceTree = "<group>"; };
E9DCF701A29E982F7F76150C /* Pods-OAStackView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OAStackView_Example.release.xcconfig"; sourceTree = "<group>"; };
EC4FD93B76378B54BA02E9D3 /* KWGenericMatchEvaluator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWGenericMatchEvaluator.m; path = Classes/Matchers/KWGenericMatchEvaluator.m; sourceTree = "<group>"; };
EE003196DB6E4BE2B7583341 /* Pods-OAStackView_Tests-OAStackView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OAStackView_Tests-OAStackView.xcconfig"; path = "../Pods-OAStackView_Tests-OAStackView/Pods-OAStackView_Tests-OAStackView.xcconfig"; sourceTree = "<group>"; };
EE2AE02B62E3B4767A24789C /* KWSymbolicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWSymbolicator.h; path = Classes/Core/KWSymbolicator.h; sourceTree = "<group>"; };
F270489A7CE92E52785BF985 /* Pods-OAStackView_Tests-Kiwi-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-OAStackView_Tests-Kiwi-umbrella.h"; sourceTree = "<group>"; };
F51C33D8473F37AA63642259 /* Pods_OAStackView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_OAStackView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F5EB154462D504A7D441DF86 /* KWExampleNodeVisitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWExampleNodeVisitor.h; path = Classes/Core/KWExampleNodeVisitor.h; sourceTree = "<group>"; };
F614BA21D6A33F9E717D7741 /* KWExampleDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWExampleDelegate.h; path = Classes/Core/KWExampleDelegate.h; sourceTree = "<group>"; };
F7C8372352F86F580CBF52AA /* KWAny.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWAny.m; path = Classes/Core/KWAny.m; sourceTree = "<group>"; };
F979BF1ADBC3E960A4B40569 /* Pods-OAStackView_Tests-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-OAStackView_Tests-environment.h"; sourceTree = "<group>"; };
F993ABE8EEA021BF7930A3D1 /* KiwiBlockMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KiwiBlockMacros.h; path = Classes/Core/KiwiBlockMacros.h; sourceTree = "<group>"; };
FE07E4AE9EE6F43EA7896D5D /* KWMatchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KWMatchers.h; path = Classes/Core/KWMatchers.h; sourceTree = "<group>"; };
FEBE767D6747443238106F14 /* Pods-OAStackView_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-OAStackView_Tests-umbrella.h"; sourceTree = "<group>"; };
FF8D868125A59FC66DB72586 /* KWStringPrefixMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KWStringPrefixMatcher.m; path = Classes/Matchers/KWStringPrefixMatcher.m; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
2445BD7B5776F77B83D5D17A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
82C93FF52CFCE4E067D096FD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
AEA346DD739179DCC5EB0B5C /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
95D44F35D3DF1FF771DE2CDE /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
AC2BC461252CE2D46C9136D0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
A4903BF7CED102DD2A69E756 /* Foundation.framework in Frameworks */,
688182121988212785EA974F /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
CB83418074164B747473441F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
A73CAAF7CA133FCBBACA0071 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E6B4703C28F7A9DD245B67D1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5BF14D5283E239FDD5289DE9 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
EE0B63DF6C5E128D95FB592C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
15B44B0C9588782299BA665C /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
09795565F6C678A86965AA16 /* Reveal-iOS-SDK */ = {
isa = PBXGroup;
children = (
A9BDE51865CA81976700C8C8 /* Frameworks */,
);
path = "Reveal-iOS-SDK";
sourceTree = "<group>";
};
1293FCC40631C4F198443D80 /* Classes */ = {
isa = PBXGroup;
children = (
8B90E6BD21591A4585962496 /* OAStackView.h */,
5D2F4F1397A17E203EA8112B /* OAStackView.m */,
E98AFA0B1B3C336D00CDF427 /* OAStackView_ArrangedSubviews.h */,
C809B772AB6D8B7D66C7D8A2 /* OAStackView+Constraint.h */,
E822B703CD09D5556B8F8265 /* OAStackView+Constraint.m */,
E86334892F73798F2B097D5F /* OAStackView+Hiding.h */,
0A75E879562A11A981CCFD5A /* OAStackView+Hiding.m */,
00B132E002F0EAE6F7C4C007 /* OAStackView+Traversal.h */,
89FDCA0DBCC9632E6877C436 /* OAStackView+Traversal.m */,
C769B7973A4CF901D9711689 /* OAStackViewAlignmentStrategy.h */,
024194B58731070E9AC9710B /* OAStackViewAlignmentStrategy.m */,
63CD8F567707C8CFAFF87734 /* OAStackViewDistributionStrategy.h */,
C23A1311AA2C1EA1D567AE58 /* OAStackViewDistributionStrategy.m */,
);
path = Classes;
sourceTree = "<group>";
};
18DDA52E7AD5C9C1BB8E1D48 /* Frameworks */ = {
isa = PBXGroup;
children = (
3124195A92B560CBE8EB290E /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
1C25776A8FDE7690B79B01B8 /* Kiwi */ = {
isa = PBXGroup;
children = (
97B67A114D3D5C4DB2C144C1 /* KWAfterAllNode.h */,
75DD5AC20A7C049424F4B74E /* KWAfterAllNode.m */,
C7C8B1056D464A717DDA040E /* KWAfterEachNode.h */,
CC3594F73B5C8529044FDB3B /* KWAfterEachNode.m */,
8B488E6CE2A56F9851C430BE /* KWAllTestsSuite.m */,
D0BB1D42645D915747574A22 /* KWAny.h */,
F7C8372352F86F580CBF52AA /* KWAny.m */,
8B5C01240014EFAF6EDD05F0 /* KWAsyncVerifier.h */,
A555F5BA2E9466CFFC7324B4 /* KWAsyncVerifier.m */,
B4D2D4E3281086E0F8704897 /* KWBeBetweenMatcher.h */,
081E3B5D98174C5A6CB8008C /* KWBeBetweenMatcher.m */,
2D6009B9C94AECC41C67A728 /* KWBeEmptyMatcher.h */,
CFD0DDB5AA2C2F14D17C426D /* KWBeEmptyMatcher.m */,
BCD5A911E7327B46C7EB5F50 /* KWBeIdenticalToMatcher.h */,
173D6CE7DE6A5E0C4EB11F89 /* KWBeIdenticalToMatcher.m */,
2065AEC45CFE35B5ABB87FAB /* KWBeKindOfClassMatcher.h */,
D4DC714EDD1F2346A2E0D51D /* KWBeKindOfClassMatcher.m */,
0EFCED26B5D9A256C2B1F238 /* KWBeMemberOfClassMatcher.h */,
CD51FBB6E583F20EAA7BC55E /* KWBeMemberOfClassMatcher.m */,
7616D91F0FA7BF755665EFD6 /* KWBeSubclassOfClassMatcher.h */,
A0352A63AB9BF027C69D98B2 /* KWBeSubclassOfClassMatcher.m */,
D320E00FE5980CFD4AB17725 /* KWBeTrueMatcher.h */,
A451277E41CEFF90A032474E /* KWBeTrueMatcher.m */,
2975D65744662AA6E0969337 /* KWBeWithinMatcher.h */,
DF87EC70CABDD00E9E41D906 /* KWBeWithinMatcher.m */,
D162458C8935010F53FC2452 /* KWBeZeroMatcher.h */,
835170A9702BA5446D42BEAB /* KWBeZeroMatcher.m */,
C0D097D73D139EE911875D38 /* KWBeforeAllNode.h */,
167FE0222527636F8FB9499F /* KWBeforeAllNode.m */,
1FFFE90B7F84569527E95B5D /* KWBeforeEachNode.h */,
E9763017ABDD60733231C7B9 /* KWBeforeEachNode.m */,
AA99E6CB123085D835E92A3A /* KWBlock.h */,
960F35E0E3BBE58D61A73484 /* KWBlock.m */,
0B5520F3F6395AD2AF62671A /* KWBlockNode.h */,
B260ABDA0D8ACFFE947449A8 /* KWBlockNode.m */,
90BD45D51F46A240E9D09764 /* KWBlockRaiseMatcher.h */,
DDE3ADAD6526B762FC83AA58 /* KWBlockRaiseMatcher.m */,
C2C213F00BD25D367C89B5D9 /* KWCallSite.h */,
ACBA04D2CB7C07446AE7C736 /* KWCallSite.m */,
C348605B130C79C13CC42FAF /* KWCaptureSpy.h */,
87F0712C14802E5121F4EAF9 /* KWCaptureSpy.m */,
83A0E7DF0D589F64374B2842 /* KWChangeMatcher.h */,
D36584BB7D9993FC1034D3BB /* KWChangeMatcher.m */,
E2D9550185C214BBB2CD0617 /* KWConformToProtocolMatcher.h */,
6CB72FFEC97461195853D612 /* KWConformToProtocolMatcher.m */,
E43DADC86826EC36EB57A33B /* KWContainMatcher.h */,
CEBB90CC8AFFBBAB06E55645 /* KWContainMatcher.m */,
6B0415735C877B3877230FB3 /* KWContainStringMatcher.h */,
5D01886BD65384AF92DB5E81 /* KWContainStringMatcher.m */,
DBB3F913D2C3534F52F51115 /* KWContextNode.h */,
09B0D351B5C153B13C51063F /* KWContextNode.m */,
3130685CAEDF2761AE49B03C /* KWCountType.h */,
B2DE004BAB9F83CFA30DBB77 /* KWDeviceInfo.h */,
8A32CC1C82673A7C9EAB5353 /* KWDeviceInfo.m */,
482F8D64D26B3EC3C01F0736 /* KWEqualMatcher.h */,
1E668202536B81386E96BFB8 /* KWEqualMatcher.m */,
5372622846CA10742160AB73 /* KWExample.h */,
66DF6E5736C79E4E7F3A85F6 /* KWExample.m */,
F614BA21D6A33F9E717D7741 /* KWExampleDelegate.h */,
9A6D51B3A1F472C30739D079 /* KWExampleNode.h */,
F5EB154462D504A7D441DF86 /* KWExampleNodeVisitor.h */,
A3607B5039CE709C2B390C5E /* KWExampleSuite.h */,
A1B4016144CFC26253F612C6 /* KWExampleSuite.m */,
6FFFAE38B448667FEFA93B10 /* KWExampleSuiteBuilder.h */,
C494CE3ECE7AB33BC34FB0B7 /* KWExampleSuiteBuilder.m */,
8ED9899540CA916F53DBEC34 /* KWExistVerifier.h */,
1E33E70A6CB20ACE6FBE30EB /* KWExistVerifier.m */,
5BBBF5C84A2D0F0D28ACFDFF /* KWExpectationType.h */,
2FBFCD1455A76E4940F88609 /* KWFailure.h */,
E8B1734FD14445A1D8D38BD4 /* KWFailure.m */,
43F43A32CC59A45C8930A23D /* KWFormatter.h */,
DE017E0F3B55FE16656200C6 /* KWFormatter.m */,
E225815D3577B4B188423306 /* KWFutureObject.h */,
5684373F7590D25474DF075A /* KWFutureObject.m */,
294F36EE918E72BF79612315 /* KWGenericMatchEvaluator.h */,
EC4FD93B76378B54BA02E9D3 /* KWGenericMatchEvaluator.m */,
316A51F9CF6A07F1A3ED25B6 /* KWGenericMatcher.h */,
62996F866D1F310C81ACA7D2 /* KWGenericMatcher.m */,
6A00012AB62038E02A8BEFF4 /* KWGenericMatchingAdditions.h */,
3DF6F20100AAE1CA9538A76F /* KWGenericMatchingAdditions.m */,
0754AEC9F91F336B0F0B7952 /* KWHaveMatcher.h */,
65B2353F3CD3094DA2FF2308 /* KWHaveMatcher.m */,
12973B5EC7A1EAA19E9FABF0 /* KWHaveValueMatcher.h */,
5C403336BA8BA16A7D5E45D7 /* KWHaveValueMatcher.m */,
BCF128C3DC01CB9C302BC134 /* KWInequalityMatcher.h */,
99320390A940B38882774870 /* KWInequalityMatcher.m */,
259FE7E096986B690B85576F /* KWIntercept.h */,
242F82F079F82A603E9FD011 /* KWIntercept.m */,
599407DD6BCEF320AED08E3F /* KWInvocationCapturer.h */,
58F1E34CEF4D21E4E44F18DE /* KWInvocationCapturer.m */,
A3477A9A8D612B41AB00D0EA /* KWItNode.h */,
02FD8A89DD0B217D11AF22DD /* KWItNode.m */,
3D9506371937550EAEE77AFB /* KWLet.h */,
C5D218EBC12D444174A95201 /* KWLetNode.h */,
0B092CBCD2CA07E4FDE805F8 /* KWLetNode.m */,
09EF0D02B903BC93BB8D1D0D /* KWMatchVerifier.h */,
B10FA779C0BD7C37A36D9402 /* KWMatchVerifier.m */,
9ED7A8812CA49FE70C8F6703 /* KWMatcher.h */,
7A4EE6EC78BDA41D7B6A4345 /* KWMatcher.m */,
8BFA8A2E4B7A676E1CF9CAC5 /* KWMatcherFactory.h */,
5C28922F0A1CC400548CE9A9 /* KWMatcherFactory.m */,
FE07E4AE9EE6F43EA7896D5D /* KWMatchers.h */,
DC34CCD00C377D36521B41AB /* KWMatchers.m */,
251C6C0D56338AB4219E6BB3 /* KWMatching.h */,
62836B0A95D7E9CAAC01BDEE /* KWMessagePattern.h */,
0083407DDC61E036CF46334F /* KWMessagePattern.m */,
B4C0B235159C40D784192EF9 /* KWMessageSpying.h */,
243DE5C9223FA42DA139B96F /* KWMessageTracker.h */,
DEA8EBD560E729B8B81CC41D /* KWMessageTracker.m */,
AA0FE72BB0820AD514481DB7 /* KWMock.h */,
D437B7C51B9C700AE19B6388 /* KWMock.m */,
445FB12A004E8A9AAA71AAC6 /* KWNilMatcher.h */,
9E77CA3AFAADCEC9394516EF /* KWNilMatcher.m */,
CF9CAA45B4BD2B90EC981E56 /* KWNotificationMatcher.h */,
5A3D410ADC1FF4D1964A9471 /* KWNotificationMatcher.m */,
8E5582CC0660DAEF60FF15AC /* KWNull.h */,
97C1F5C02FB09C0FF0F96677 /* KWNull.m */,
BBC50BAD8D89F586C2A2FEBF /* KWObjCUtilities.h */,
C47EE2FAA72FBFF889D50247 /* KWObjCUtilities.m */,
6EB2F2F47B2069CB917F08D0 /* KWPendingNode.h */,
A52C7E63345A9BCDFEE5B3F6 /* KWPendingNode.m */,
1ED94E0B9B0394509B3E09C5 /* KWProbe.h */,
D98D7A16A65C0FD8DCF2A008 /* KWProbePoller.h */,
2411E3D92988EE8ED2F5781F /* KWProbePoller.m */,
497268F3953469FEF7923067 /* KWReceiveMatcher.h */,
5D04C2C7699681287FB63BD6 /* KWReceiveMatcher.m */,
ACC8D3E191EA0619F7399012 /* KWRegisterMatchersNode.h */,
1779D5C24B1FAFDEDD3D682C /* KWRegisterMatchersNode.m */,
DBC580C53B2312C7EEE78649 /* KWRegularExpressionPatternMatcher.h */,
77AB712A65FB0A35CE54DBBD /* KWRegularExpressionPatternMatcher.m */,
48AB2EEA34B551ADEBA08821 /* KWReporting.h */,
8F0275C2CF3800B22D549626 /* KWRespondToSelectorMatcher.h */,
8CA8AD367C971DD82427F4AE /* KWRespondToSelectorMatcher.m */,
C048736C9A32352B8514854A /* KWSpec.h */,
D3579F2BA6DC9F7C6D444BDC /* KWSpec.m */,
7D44B9EA6A689ADDC16B323E /* KWStringContainsMatcher.h */,
4721487A6750AD093F35DF11 /* KWStringContainsMatcher.m */,
289C519B41B7A75A2B4D4F2A /* KWStringPrefixMatcher.h */,
FF8D868125A59FC66DB72586 /* KWStringPrefixMatcher.m */,
3F7AB69D58A91C12D63C749F /* KWStringUtilities.h */,
0C3E4BCF308C363C3BA7FC04 /* KWStringUtilities.m */,
8FCA5DF8D715EC9434931919 /* KWStub.h */,
22082A63EDE2751FC358131D /* KWStub.m */,
30DA7C8C1EFC416457FC8B42 /* KWSuiteConfigurationBase.h */,
B5938B01052F6EF4FAC26934 /* KWSuiteConfigurationBase.m */,
EE2AE02B62E3B4767A24789C /* KWSymbolicator.h */,
6E375DA4ED597FE594B43118 /* KWSymbolicator.m */,
058DCD7B3AD314654E65C31D /* KWUserDefinedMatcher.h */,
620EC4A9F497C50076242AE8 /* KWUserDefinedMatcher.m */,
5EB4C3AC5F8D06253846DDB7 /* KWValue.h */,
1F94C81F1B842836D932F7EC /* KWValue.m */,
E96052DEDBABAD6DE67AB9CC /* KWVerifying.h */,
0E3E64AE3B49F0F57B12511D /* KWWorkarounds.h */,
DC55BDCA167103C53C77C3CA /* KWWorkarounds.m */,
05F5A8061995BC2DDB370349 /* Kiwi.h */,
F993ABE8EEA021BF7930A3D1 /* KiwiBlockMacros.h */,
A281CB12BAAB5A71CC7C0126 /* KiwiConfiguration.h */,
CED0EB5E24394612684C54FC /* KiwiMacros.h */,
E4E0FDD32FE4CA6B4805488A /* NSInvocation+KiwiAdditions.h */,
9631465C5C3F938008ABCCE4 /* NSInvocation+KiwiAdditions.m */,
87EF738D1C4A43D46DF7218C /* NSInvocation+OCMAdditions.h */,
E29076317D3B8AF774F66E06 /* NSInvocation+OCMAdditions.m */,
62238DA1D62C3F6DF2BA2590 /* NSMethodSignature+KiwiAdditions.h */,
85E059A68529EF3CB5364BF3 /* NSMethodSignature+KiwiAdditions.m */,
C4ACFEC0D0832529FE731BAE /* NSNumber+KiwiAdditions.h */,
804AE3C2E4DFBB4C8C53070B /* NSNumber+KiwiAdditions.m */,
5250EF14BDA1D35A1871BA93 /* NSObject+KiwiMockAdditions.h */,
92F34F69C94B691FFEECCA5F /* NSObject+KiwiMockAdditions.m */,
A0082D69219983D785A1A1CE /* NSObject+KiwiSpyAdditions.h */,
A3AB56C9DD3A25AF5466B381 /* NSObject+KiwiSpyAdditions.m */,
560740A661643C63C567F8A8 /* NSObject+KiwiStubAdditions.h */,
0A33EBB2E314FC78CEECECD2 /* NSObject+KiwiStubAdditions.m */,
8ECED91C1FD1BA44821B8C3F /* NSObject+KiwiVerifierAdditions.h */,
BEBB06EE58D7487FF1A7BE89 /* NSObject+KiwiVerifierAdditions.m */,
9B9E2DBFDCE0D5E89C768DCF /* NSProxy+KiwiVerifierAdditions.h */,
9E0C27FE70AB88DCB2402857 /* NSProxy+KiwiVerifierAdditions.m */,
E8A49568926762C4F16944FE /* NSValue+KiwiAdditions.h */,
145083BF0B6E0EB57AC63512 /* NSValue+KiwiAdditions.m */,
F5EC8A4FCA8EDCC3C638A57E /* Support Files */,
);
path = Kiwi;
sourceTree = "<group>";
};
28CC8FCE14FC53523FB5616E /* Products */ = {
isa = PBXGroup;
children = (
652556F716079E670B5888D8 /* Kiwi.framework */,
667360543B85E1CE0E6BD756 /* OAStackView.bundle */,
6999B2A35BC627FAA2DDDEC3 /* OAStackView.bundle */,
B2C6638119FA1A33EED18511 /* OAStackView.framework */,
29A1E3BC335F79498B2E6332 /* OAStackView.framework */,
8B236A22F86E97D592D87261 /* Pods_OAStackView_Example.framework */,
F51C33D8473F37AA63642259 /* Pods_OAStackView_Tests.framework */,
);
name = Products;
sourceTree = "<group>";
};
291A89AF5C7099B4BF2E91F9 /* Pods */ = {
isa = PBXGroup;
children = (
1C25776A8FDE7690B79B01B8 /* Kiwi */,
09795565F6C678A86965AA16 /* Reveal-iOS-SDK */,
);
name = Pods;
sourceTree = "<group>";
};
2FE616540CDCDCFEAFD7FF97 /* Development Pods */ = {
isa = PBXGroup;
children = (
CCCBC9DE8A1FD923153787E1 /* OAStackView */,
);
name = "Development Pods";
sourceTree = "<group>";
};
3124195A92B560CBE8EB290E /* iOS */ = {
isa = PBXGroup;
children = (
BEC5A0107A7595E804369111 /* Foundation.framework */,
C60D4A6C721EF38CD3C85604 /* XCTest.framework */,
);
name = iOS;
sourceTree = "<group>";
};
399AB13FABC353B6C83B147D /* Targets Support Files */ = {
isa = PBXGroup;
children = (
D0C7D05E1C24671DF73FBE0F /* Pods-OAStackView_Example */,
DD5A3DA95CBCDC308C7601A3 /* Pods-OAStackView_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
4C98E8A558AFA7035AE822EC = {
isa = PBXGroup;
children = (
B13D1716C726671F3C32F0F7 /* Podfile */,
2FE616540CDCDCFEAFD7FF97 /* Development Pods */,
18DDA52E7AD5C9C1BB8E1D48 /* Frameworks */,
291A89AF5C7099B4BF2E91F9 /* Pods */,
28CC8FCE14FC53523FB5616E /* Products */,
399AB13FABC353B6C83B147D /* Targets Support Files */,
);
sourceTree = "<group>";
};
745A04002D6BE4EFC0F93AE4 /* Support Files */ = {
isa = PBXGroup;
children = (
111278D6F2B0761FB8F79673 /* Info.plist */,
B970FC888E47101607DA3C20 /* Info.plist */,
1F233FE18954DBE4F51D0E13 /* Pods-OAStackView_Example-OAStackView.modulemap */,
3CAFB5F1729549DC130E276C /* Pods-OAStackView_Example-OAStackView.xcconfig */,
78BFB8748DE73E3FE13DBA4C /* Pods-OAStackView_Example-OAStackView-Private.xcconfig */,
A86200C42268D58AE1B0AD86 /* Pods-OAStackView_Example-OAStackView-dummy.m */,
B835A945759D90CD1F1B39C0 /* Pods-OAStackView_Example-OAStackView-prefix.pch */,
E91B86F74BD64D5D3108D23A /* Pods-OAStackView_Example-OAStackView-umbrella.h */,
8A0F6EFD4B7B832DA2E3009A /* Pods-OAStackView_Tests-OAStackView.modulemap */,
EE003196DB6E4BE2B7583341 /* Pods-OAStackView_Tests-OAStackView.xcconfig */,
6CA67F5E3F1FC6BA85812A0E /* Pods-OAStackView_Tests-OAStackView-Private.xcconfig */,
8B6AD154C18337823F3A956B /* Pods-OAStackView_Tests-OAStackView-dummy.m */,
CB6CD4D55BC330B3F9627B40 /* Pods-OAStackView_Tests-OAStackView-prefix.pch */,
28313395E0E6FD06CC778A3B /* Pods-OAStackView_Tests-OAStackView-umbrella.h */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/Pods-OAStackView_Example-OAStackView";
sourceTree = "<group>";
};
9BF72EA03D279E5650E03615 /* Pod */ = {
isa = PBXGroup;
children = (
1293FCC40631C4F198443D80 /* Classes */,
);
path = Pod;
sourceTree = "<group>";
};
A9BDE51865CA81976700C8C8 /* Frameworks */ = {
isa = PBXGroup;
children = (
7B55DED00B338C1B4A13159B /* Reveal.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
CCCBC9DE8A1FD923153787E1 /* OAStackView */ = {
isa = PBXGroup;
children = (
9BF72EA03D279E5650E03615 /* Pod */,
745A04002D6BE4EFC0F93AE4 /* Support Files */,
);
name = OAStackView;
path = ../..;
sourceTree = "<group>";
};
D0C7D05E1C24671DF73FBE0F /* Pods-OAStackView_Example */ = {
isa = PBXGroup;
children = (
081BE9FED2704350D391669D /* Info.plist */,
5037740C0F7A842E1BED6BA7 /* Pods-OAStackView_Example.modulemap */,
4DEBCBE61FFB94A608259909 /* Pods-OAStackView_Example-acknowledgements.markdown */,
98C6BD910BD253439B853828 /* Pods-OAStackView_Example-acknowledgements.plist */,
D258BECC7C69414C360343D7 /* Pods-OAStackView_Example-dummy.m */,
CA1DD4670E1D336B7688E389 /* Pods-OAStackView_Example-environment.h */,
28572CB543A8E98DFB7CAE49 /* Pods-OAStackView_Example-frameworks.sh */,
B6AC89215989EFC8A666D504 /* Pods-OAStackView_Example-resources.sh */,
B32D304F2BEC0A0154805284 /* Pods-OAStackView_Example-umbrella.h */,
DCBCCC309C009F4A497E4A08 /* Pods-OAStackView_Example.debug.xcconfig */,
E9DCF701A29E982F7F76150C /* Pods-OAStackView_Example.release.xcconfig */,
);
name = "Pods-OAStackView_Example";
path = "Target Support Files/Pods-OAStackView_Example";
sourceTree = "<group>";
};
DD5A3DA95CBCDC308C7601A3 /* Pods-OAStackView_Tests */ = {
isa = PBXGroup;
children = (
688FC07D0D28E47F52F5B14B /* Info.plist */,
2CEBF1D2605EA9939C2B7454 /* Pods-OAStackView_Tests.modulemap */,
3A45B82D6FEC091C814E0901 /* Pods-OAStackView_Tests-acknowledgements.markdown */,
1697310CD3B47518512A5F82 /* Pods-OAStackView_Tests-acknowledgements.plist */,
E3C4C72A623515D1EE65B049 /* Pods-OAStackView_Tests-dummy.m */,
F979BF1ADBC3E960A4B40569 /* Pods-OAStackView_Tests-environment.h */,
D5B2B959DEB227093C28C2D9 /* Pods-OAStackView_Tests-frameworks.sh */,
A205A415EE35267979FD96D7 /* Pods-OAStackView_Tests-resources.sh */,
FEBE767D6747443238106F14 /* Pods-OAStackView_Tests-umbrella.h */,
7324ABEAA8B7E24E387AE995 /* Pods-OAStackView_Tests.debug.xcconfig */,
BCCAFC3D1E9624435DB2C59B /* Pods-OAStackView_Tests.release.xcconfig */,
);
name = "Pods-OAStackView_Tests";
path = "Target Support Files/Pods-OAStackView_Tests";
sourceTree = "<group>";
};
F5EC8A4FCA8EDCC3C638A57E /* Support Files */ = {
isa = PBXGroup;
children = (
0E88803C9DC587D72C7023B1 /* Info.plist */,
0C526C95C728D2BAE6D2EBCB /* Pods-OAStackView_Tests-Kiwi.modulemap */,
BCF5A2A1D7E46E9C3EDDFA03 /* Pods-OAStackView_Tests-Kiwi.xcconfig */,
AE64D60773086525A7489A25 /* Pods-OAStackView_Tests-Kiwi-Private.xcconfig */,
C4DDBBA72AF54D31DFAE75C8 /* Pods-OAStackView_Tests-Kiwi-dummy.m */,
73FC5A3A7A5ED141CB0FFD73 /* Pods-OAStackView_Tests-Kiwi-prefix.pch */,
F270489A7CE92E52785BF985 /* Pods-OAStackView_Tests-Kiwi-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Pods-OAStackView_Tests-Kiwi";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
14DD3FBA75AEBCD172375F9F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
17DA5038B3D77E9F79234B21 /* KWAfterAllNode.h in Headers */,
B0D18AD5FA0CF6A02CFC82DB /* KWAfterEachNode.h in Headers */,
EE2B62B405282A634D287EBE /* KWAny.h in Headers */,
85674720BB7565D9347C8AE0 /* KWAsyncVerifier.h in Headers */,
2B7F5FBAF9D1072D87092F04 /* KWBeBetweenMatcher.h in Headers */,
F0CF9FFB12EF2E7F27C7B053 /* KWBeEmptyMatcher.h in Headers */,
AE5E13278EF33B551FD75DD4 /* KWBeIdenticalToMatcher.h in Headers */,
924FAF2CE47ECA0AD1631BEC /* KWBeKindOfClassMatcher.h in Headers */,
E943786F62DF61D7A6454356 /* KWBeMemberOfClassMatcher.h in Headers */,
5F5ED6119B11A7FC60F9DF12 /* KWBeSubclassOfClassMatcher.h in Headers */,
9488FF6F374386F2D92E3121 /* KWBeTrueMatcher.h in Headers */,
45080D257F4A31F837D03CC7 /* KWBeWithinMatcher.h in Headers */,
5AD174E0E76D1F0F9D6DFED8 /* KWBeZeroMatcher.h in Headers */,
7A682070068665E70D307B0E /* KWBeforeAllNode.h in Headers */,
C1F42FC65AB296F1A76FACF6 /* KWBeforeEachNode.h in Headers */,
51824E94AFC4C5F95576164C /* KWBlock.h in Headers */,
A15A036267CF112ADC993A87 /* KWBlockNode.h in Headers */,
02006D0C4E1C5927A5503BAE /* KWBlockRaiseMatcher.h in Headers */,
9B68B8063D12B7823C4585A5 /* KWCallSite.h in Headers */,
B8766D9B58A88DC2DBCBD97F /* KWCaptureSpy.h in Headers */,
D4AAB992549BC1D55C037989 /* KWChangeMatcher.h in Headers */,
AF500631BDAA13C65ED0E46F /* KWConformToProtocolMatcher.h in Headers */,
CE712CCFE97A0A4C6E188C40 /* KWContainMatcher.h in Headers */,
1031E5CB6E6F41A30ABC083B /* KWContainStringMatcher.h in Headers */,
ECFEB59A5F44EDA8D3FBD8D4 /* KWContextNode.h in Headers */,
14090FC6A7089961ACB2E365 /* KWCountType.h in Headers */,
654CB39A58C5B294325A10D2 /* KWDeviceInfo.h in Headers */,
1D84C142AB3F0EECC50FDE51 /* KWEqualMatcher.h in Headers */,
A6000ED0E19CA4EA1CAD7D35 /* KWExample.h in Headers */,
65524FBE17BAE16B25CFCDC0 /* KWExampleDelegate.h in Headers */,
2D2AA0412642E3BF3F42F0B6 /* KWExampleNode.h in Headers */,