-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1450 lines (1438 loc) · 109 KB
/
Copy pathproject.pbxproj
File metadata and controls
1450 lines (1438 loc) · 109 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 */
007D5D385939F4FF4E7A3F355569BC87 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C14CA30770ECA99AC2E8582C5D3C4DB /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; };
00BCA1EB9B63EE2D259517E2572029B4 /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5BBB73D767C5BEBB1C74D7F5379D37BF /* Photos.framework */; };
0171B78B1490B95F387A183E33037A74 /* World.h in Headers */ = {isa = PBXBuildFile; fileRef = 4606F71071333AEDF06D8E31389AECC9 /* World.h */; settings = {ATTRIBUTES = (Project, ); }; };
02F2769157EC3B277E7F97A31A102E6E /* AASheetController+Photos.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22F27C71CDF4C13E05521A8AD28478C5 /* AASheetController+Photos.swift */; };
047A68C646E00EB6D7D4D7343B801D09 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3DC9FAE16E2DD68869AF1B29FA0A42A /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
06065E6057DC7D3DFB28FDFCC129F027 /* World+DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = A32B9E8B551B9F568B0B3BBE309347CE /* World+DSL.h */; settings = {ATTRIBUTES = (Project, ); }; };
07722FBCF6B380961B9D2832D5883F45 /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DEE1F436B68692319DE23FF7A16197E /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
09DED715386F158F56A01268179F7A4C /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF7C0E600D08C899D8FE3A3AC0758905 /* Example.swift */; };
0AEC20AACF9B10846830274E3B2AA6FD /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = 226C1AC4144C4405F39189731DF06CEC /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
0D1557DF4B35AEA67C8E3C690EDDE39F /* Pods-AASheetController_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ED0BFD0A79F612D30B211BEB1D73E92 /* Pods-AASheetController_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
0ECEEBC712D404AA6CF1E76A9284BFF9 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = FB4B011BF1B4ECE6DC8D463CBA2E5EF7 /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
110A640A9BE45841BA938B4C29EF5446 /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F0F33EFE650B5CE4774260C8F19455E /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
127CD37052B8E0BC645D83D4664F59D4 /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 856B2E5E4EC8E2BD9ED45AAD6930A672 /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
16E0E8520F9694498A4DF4C1A1CFEC8F /* NSString+QCKSelectorName.m in Sources */ = {isa = PBXBuildFile; fileRef = 30707A1F3230E95AF8C214F2C51E3477 /* NSString+QCKSelectorName.m */; };
16F140CCEC78E5E0D87EF11E98D04227 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = B89E09AD26974F1849359B57FE32A6AA /* QuickSpec.m */; };
17261E344C2027602431A636759AC7F2 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 627AA9D56F221212717BC6C0D69D5091 /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
17DE1657409A7D303945876629D5C453 /* AASheetController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF2506E16556AC2C342B18D5C25B6DC1 /* AASheetController.swift */; };
1C50F54510D5C2B2AD84D7B74A6EDEBB /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9265D9D90339F897C0C6F78088E7BEB /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
1C7CA1FAFBF8B865596C739FEA39CDEE /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 91C1B940CAE99BBBBC563963CD22996B /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
200520EBE6A4BC8C454F894B2D4D7480 /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = B93CBD5A8C953715B286CC18EBD89EA5 /* World+DSL.swift */; };
22C1DE74D494C10BBE727F239A68447D /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FBF7128876ED36020056A396B66AC27 /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
234BFC45ACAC4A8FB945EA17B6A74B0B /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 623285D9DBDE57EEBB2AC7A9C9663905 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
23E2E1E02FE79EE1E1688CBBAA777297 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA2A27C4B8DBD796FF529A57FD25B53F /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
24EF979DB6A2B88464E07F5C5937EE14 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CB468A31776A7038E04155BC48948B60 /* Foundation.framework */; };
27B262F95D3CF9E3C74541A41929691C /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = D4621A1C4746AC480C7F889631FC8F57 /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; };
2887D310A627BBD0AC3277943A3B30EA /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = DDB66FCF4920E93C91641504EBEC78D1 /* XCTestSuite+QuickTestSuiteBuilder.m */; };
36E3A56DE9EBEF4316B500F4CA8B6FE2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CB468A31776A7038E04155BC48948B60 /* Foundation.framework */; };
378383D6FAA296CF93B2E5C17E305068 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CB468A31776A7038E04155BC48948B60 /* Foundation.framework */; };
3915DBB4731CB17B255A7FE86E240B6E /* CwlCatchBadInstruction.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CEE6D090220683EB93ACD11A04038DD /* CwlCatchBadInstruction.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
3A4DCF719314F3B860803504DCB01F6B /* AASheetController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 574F88EB9D847414ABF9DF78BE6B6B38 /* AASheetController-dummy.m */; };
431D761D2789920DFD85AFE099C4E9FA /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = D2993A848EFF16A1B29C5BF7F7202F42 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
469E9C3ED9FD6009F7C9AAF9E537E212 /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = CE7DD158EC41F47A2796AB19C2CD1AD8 /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; };
4B4B64671E729B2DA9F4DB943856ECF3 /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D9DD9D6490CDC782AB0EBFF62EC7AEE /* Configuration.swift */; };
4B5B790544FFC58126BC4BFD02054929 /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AD0D67F0098C6695A93CAE9B27528F4 /* ExampleHooks.swift */; };
4F3F103945CC52D0A3B8A891BB0E21C4 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30778608352B15B9CFC7475AD8F932AB /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
4F52D385FD216952D01623F6094303B4 /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 462592DD75CDB244835F58221773956C /* Closures.swift */; };
50B80F12A9BAE302F07F6CF94752F462 /* mach_excServer.c in Sources */ = {isa = PBXBuildFile; fileRef = 0BC4F2CA1ACAB7C5DC246E5970464CA7 /* mach_excServer.c */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
53185F802D0F5B6826822A208C41A9C3 /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BD1C4C62388DB655C455E30CDF8012B /* QuickConfiguration.m */; };
551440A0F92574039C1D2EB39227D6B8 /* AsyncMatcherWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC3735170CDCA6A1C7E7D0E1876ED22B /* AsyncMatcherWrapper.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
55610395A889FE965303D823EB95B6A5 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EF444D2C74658368E8A523F9663D9CD2 /* UIKit.framework */; };
599669823A2EED2928C77F301F6B0515 /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C7B2E4FE5801A893DA4774DEC2C3985 /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
5E672EF67F0B688E188D0AFD933D992E /* Pods-AASheetController_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C5CD35FC80C3ADF3853EE11AB8E248 /* Pods-AASheetController_Tests-dummy.m */; };
6139A9750F0EFE9E51CDF161786DF58D /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 566EED392600B84A615AC7615D23F5CB /* Callsite.swift */; };
62744EF299751FB49B5FCD81D8C8FFF7 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 208F66BD9FCF9E4BBBDCC434971F5113 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
65F5217D44A557FC16218DE5DE348C35 /* CwlCatchBadInstruction.h in Headers */ = {isa = PBXBuildFile; fileRef = F9550ABBCFEA5EE7A657664A6BD9E1F7 /* CwlCatchBadInstruction.h */; settings = {ATTRIBUTES = (Public, ); }; };
6CDBA48C3A8621E4EE1DAFFE240F0D82 /* CwlCatchBadInstruction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A4E497DD63B34CAF4112164C7D5C267 /* CwlCatchBadInstruction.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
6E397D9FB11A47E48D70287D734B12B2 /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31F522E7A1E6B249CF89B55968863A58 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7153E5146D45B3F3C7341C13F96861D0 /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04F10AA7D49AA59EDAA9771CD96960B9 /* SuiteHooks.swift */; };
737E19F3254F5929263982C29237C0BA /* CwlBadInstructionException.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6A47E312B3885EF64B81BD590AD21B4 /* CwlBadInstructionException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
74FD712F3B503891B6BD9E5CD287E481 /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCCFAE0EFBD62266157ABDA892351069 /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
76036D32625A56D480D84AA46961EF91 /* Nimble-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BCBDD456B535FEADB8D72DB83652D74D /* Nimble-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
78F3DE174B4F8D368EF8EEFD7EE62087 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C64DCE9D714CA88C06BDCC413FD3661 /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
79DE5E738E3EF4824785637077585FBE /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BD3BF5EB0A249E68523B43B6402EA1C /* World.swift */; };
7D6269A3CFE53C28DAA6B92E8FC017A7 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18CEB9B86795A0FDAA385DB81A49672B /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7F6750C7B1847733370B18C4CBFE32DF /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EE1F2D1C9D5935F6B6B5CC49C89E323 /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8015239010C1D642F14C105F8FF8E035 /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AC2EAD622CBF58EAD71675C54310955 /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
80C0EA0E6DFE904FDCDD85FA7D288142 /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = C81E409DD20CA59AA8A9A08E2B0B1B5F /* NSBundle+CurrentTestBundle.swift */; };
8132ACD97BB0A35053F0087FECFA82B0 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B420A0E967EACA015B9CF21B2C491A8 /* DSL.swift */; };
81D246F2AEF5C4BDCF0C7CCC78767F96 /* AASheetAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13D740F8A2117C685D9765E7753CA20C /* AASheetAction.swift */; };
823073CCE753FCE4912CBB6973B696DD /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE2F5F6A730DB38DE22822D808C1308C /* XCTest.framework */; };
84D7ABAF55CF42E590210F82C66DE412 /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE05FF5E6FC72D2287373D241DFBB6F2 /* HooksPhase.swift */; };
8507F4BF7437EB40A3626EDCC68BFF6D /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1BBF1DEB58CE50279BE9C836B3DE1E1 /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8654571F855691C23B7B8E61B2141944 /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5058B4852C449730EE28E5F2CD349B24 /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
86FFB76B2EDCF4AE79CC4C0BD8A0FE9A /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2DAB46B24EC3101A9C139178DD3C5F2 /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
87DD62F200DAB5E1D701AB9F94D1D422 /* CwlCatchException.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB1FA4E1DD555F459E31D6ECB9DB70C /* CwlCatchException.h */; settings = {ATTRIBUTES = (Public, ); }; };
8C30EAD5FFD28B387099B41C74657A67 /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 215D2DBBD2F1901DAD0BA635F194457A /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8FBD43F93844FEC7467E613E2F5D0971 /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = C7E5C9CD6DE12A0615BB5F68D0BE93AB /* QCKDSL.m */; };
917949F596E1188261FC59214782C3D9 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 72B50685A7115CB568F2F23A42E31BEA /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; };
93D3F8A13DC050CBD55BB9B37C791A89 /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A4149CBE238527B194D1F9ABA8B1425 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
947162383483B6391F8CDF38249BFBD2 /* CwlCatchException.m in Sources */ = {isa = PBXBuildFile; fileRef = B4E171821B1D0ED4DB541E993A5B631F /* CwlCatchException.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9544A4EEC2A8448743ECA9981F88B60F /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF53CCA7C0DCBC78C82FED3FBDD6BF88 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9AF235C16362BA00BFBF12147907E953 /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C33CF42AD6E1A448E98D4CAFB155DAA /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9BEBD1791C233763A8DC13080BFB99C9 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2F54711B380CFE23B29ACEF631A3929 /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9E95D6E15DBE9B0FC92AAF60D42D1464 /* Nimble-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F795FA3DE9E15CB7DD017F791C55A8AC /* Nimble-dummy.m */; };
9EF6C81B4AC2A0300B43901F7044B9CA /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C5E4C955DDEF4822A80B37B5651F8ED /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; };
A33F1754198E8E8CCC7087F6176FFDC8 /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10FFD83D547B8B236BCBB6812BC65762 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
A448F837592E21D9387322E8DA0DD93F /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = C97C4E97A47F53078887A61504367F9A /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
A4BADFA69D17A38BC65B7C9FC4A454FB /* NSString+QCKSelectorName.h in Headers */ = {isa = PBXBuildFile; fileRef = D9571DDE390A0012143BA7AAAE1D39DC /* NSString+QCKSelectorName.h */; settings = {ATTRIBUTES = (Project, ); }; };
A8B4F824204BD0EBFE9D58A63719B34F /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3D11645B35A10BBA558B9BC99C1D340 /* URL+FileName.swift */; };
A91166D0A5E8F1D5D5377622C381C045 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C9A478DF22318E51905AFC8BF831B2D /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
AB255C27EF10E742C6567775022F49D5 /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6C53CB242E67876DD3964EC5C775479 /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
AC0B24EF198E3BEDFCC9F25D7B8EEDAB /* NMBObjCMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCEC90FE3EA43490331DC53C67E7DE5B /* NMBObjCMatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
AC29CC89E22273BF0D0DC2C841B7524C /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = C69EC1174FCE1660F05AF470B443E0E7 /* Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B093484B1637B3D3AF65DF2232FDBADC /* mach_excServer.h in Headers */ = {isa = PBXBuildFile; fileRef = B85EE744366A34C7FDACC881DF2B63AB /* mach_excServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
B989EC9A449137FF7FA20F2859A795F4 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36F9E76E718B474FBEB8C1824AA1413A /* Filter.swift */; };
B9BD565DAB07F8E2288A960A1D3EFAC1 /* MatcherFunc.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACB1FA806FF532E4E4DF8E6B4FFEB9C6 /* MatcherFunc.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
BB10A2D0B1EE5B1BA811354116F83E3F /* CwlDarwinDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62A5C7D27930FA6D032FA0D83D8E8239 /* CwlDarwinDefinitions.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
BB88281C481A53B892F25CB0A2A0D957 /* Pods-AASheetController_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 07F712B8BC85864E3642BF116D2CCD9E /* Pods-AASheetController_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
BF3AF1D2B46E09E2B3DCC824E6C1F5AF /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = C12298FB0CC92BD3BD16C958F3718416 /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C130764021D4317204AC7FA3C66BFD67 /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAEA58BA3A98ABA9AF85ACD8AE3CED36 /* ExampleGroup.swift */; };
C7023840E1DD486B93ADE3372F249D1E /* AACollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 935996F618D9D58BA2DCF4E5C83105C1 /* AACollectionViewCell.swift */; };
C900DA2814B960F797CBE54541B038B3 /* AASheetController.xib in Sources */ = {isa = PBXBuildFile; fileRef = F29D9C299ABB77B5AD4A90EDB8F6E104 /* AASheetController.xib */; };
CA99DFCE2B2DBBF25B762544AA870816 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CB468A31776A7038E04155BC48948B60 /* Foundation.framework */; };
CB7558CCDD935C9E82BBF454022ED1D3 /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05E8C36BA4865751AB3994028E5BE98B /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
CD56895887085041D05C7F7EB662B689 /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94B9FC85D7FEB2B0433347BA137CC7E1 /* QuickSelectedTestSuiteBuilder.swift */; };
CD835E243697D60C02A461D25D149063 /* AACollectionViewCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = B0D21AADF15F952D1D29114DCE48DF44 /* AACollectionViewCell.xib */; };
CE3FA6AE0944D4AE737F0E57CFF4A615 /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA22155F3C9AB9685BF4ED3A389D109A /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
CE4CEF6328E255B380E2B2692B351CF8 /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = A91D06EDAC9BBAD13C3148F1E86A9AD4 /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D30622543CAEA52C636A3E5ADE041E00 /* Quick-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFABEEB10F2E9D33C12ECA566D5947A1 /* Quick-dummy.m */; };
D33CCE83AE1EE019FFD8D6B7A4867347 /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = E15A0E5C2D8902D8B3F11BE86DE704B8 /* ErrorUtility.swift */; };
D7ACC8F235D3E23F91BD1BB5D9735833 /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98BEFCA54D25BED3A87F8A8BC72FDE02 /* ExampleMetadata.swift */; };
D88575ED37BC462E8130CDBEFE9EA308 /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = 60A4CF4AA34D746BEB8F62EA84D9F202 /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
DC32331BE565888E694E1321BB1D80F5 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 86806CF3A6F7FB54DF0EEB9134380E4E /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
DCEE854E62441E78FED15CC994497F61 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06E793A8549531332D1762623F08F9BF /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
E5CCEF0B83F8272D10671C01AAE4FFA0 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AA367A34E0B8C1B01749CCC12FD43C5 /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
EBA52C16F42E42A1824D87C284F4A60C /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 525B5EB32452EE8123EA3E65FDC81622 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
EED9CFAC592FA22D937EBFDB7BF9A934 /* AASheetController-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 106C20A3B9AED9DD49E3A5EA88757C80 /* AASheetController-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F19808A78499B327E03F6CF6F3BEC118 /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76C2AD2F63645F36689BC3DF18067258 /* QuickTestSuite.swift */; };
F1D0EF8F882335314EB8DBE9113C677F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CB468A31776A7038E04155BC48948B60 /* Foundation.framework */; };
F3D8300D84D852FFF062289B6CE08313 /* Quick-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 15E2114ED8AE0D3C939FFE5084E2DAEC /* Quick-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
F4A1B7A059AAA6727EB70E58E09332A4 /* CwlCatchException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C6329DD1EE75A68AA931A2192C28C69 /* CwlCatchException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F60D221B548716DF35193FC2CF244676 /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71937B4B91A62971088D88CADF9D17CC /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F693D0A9E0D05F815A85DC258E75AF8D /* CurrentTestCaseTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD0E5C7B919B722CBA4C68A93D55A7A /* CurrentTestCaseTracker.h */; settings = {ATTRIBUTES = (Private, ); }; };
F7341EF465AAEA9C87705B90280F696E /* Pods-AASheetController_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D069539585E9F48F213C3C533DA5F2C5 /* Pods-AASheetController_Example-dummy.m */; };
F9D61EB5EEB799105913685722FF4C9C /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = F26BA5A6FE4D418C4B347B819197FA63 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F9E05A63D447B51E008B89731192FE7F /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33C4401213EBEC6BC1797D974E52767D /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
FAB4ECE0C5039D99BB7173880670871D /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 104135CFA58204DC8EBF1167E28F5206 /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
FCFFEB587281358CFF05A65ED9E94C12 /* Functional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FE7DAEFE89DD4FD50B980F9C9D6B7B2 /* Functional.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
2196BB71E3DA032F66173EB0D4F4C1E6 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 2E800BFE43EE1CE7DB3BD90844D4F06E;
remoteInfo = AASheetController;
};
7A8840353DDE04042AB7AB834713010C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 5B21611C6C084A2C09AD8AB5F2B8CC85;
remoteInfo = Quick;
};
AE6635D96F01A940F23510DB9945DA64 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1321E318D10CFDC9F5B93A7952492CCD;
remoteInfo = Nimble;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
025B0014900A44B62555BD4D3B0AE8EA /* Pods-AASheetController_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AASheetController_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
04F10AA7D49AA59EDAA9771CD96960B9 /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Sources/Quick/Hooks/SuiteHooks.swift; sourceTree = "<group>"; };
05E8C36BA4865751AB3994028E5BE98B /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Sources/Nimble/Expectation.swift; sourceTree = "<group>"; };
06E793A8549531332D1762623F08F9BF /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Sources/Nimble/Matchers/AllPass.swift; sourceTree = "<group>"; };
07F712B8BC85864E3642BF116D2CCD9E /* Pods-AASheetController_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AASheetController_Example-umbrella.h"; sourceTree = "<group>"; };
0B420A0E967EACA015B9CF21B2C491A8 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Quick/DSL/DSL.swift; sourceTree = "<group>"; };
0BC4F2CA1ACAB7C5DC246E5970464CA7 /* mach_excServer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mach_excServer.c; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.c; sourceTree = "<group>"; };
0ED0BFD0A79F612D30B211BEB1D73E92 /* Pods-AASheetController_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AASheetController_Tests-umbrella.h"; sourceTree = "<group>"; };
104135CFA58204DC8EBF1167E28F5206 /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Sources/Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = "<group>"; };
106C20A3B9AED9DD49E3A5EA88757C80 /* AASheetController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AASheetController-umbrella.h"; sourceTree = "<group>"; };
10DF2549E6D26D4433A101415BB18515 /* Pods-AASheetController_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AASheetController_Example-resources.sh"; sourceTree = "<group>"; };
10FFD83D547B8B236BCBB6812BC65762 /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Sources/Nimble/Matchers/BeIdenticalTo.swift; sourceTree = "<group>"; };
13D740F8A2117C685D9765E7753CA20C /* AASheetAction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AASheetAction.swift; sourceTree = "<group>"; };
14537A5EC332D4F5F8A2D483B328CC37 /* Nimble.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Nimble.modulemap; sourceTree = "<group>"; };
15E2114ED8AE0D3C939FFE5084E2DAEC /* Quick-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-umbrella.h"; sourceTree = "<group>"; };
18CEB9B86795A0FDAA385DB81A49672B /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Sources/Nimble/FailureMessage.swift; sourceTree = "<group>"; };
1AD0D67F0098C6695A93CAE9B27528F4 /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Sources/Quick/Hooks/ExampleHooks.swift; sourceTree = "<group>"; };
1C5E4C955DDEF4822A80B37B5651F8ED /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Sources/QuickObjectiveC/Quick.h; sourceTree = "<group>"; };
1C9A478DF22318E51905AFC8BF831B2D /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Sources/Nimble/Matchers/Match.swift; sourceTree = "<group>"; };
208F66BD9FCF9E4BBBDCC434971F5113 /* SatisfyAnyOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAnyOf.swift; path = Sources/Nimble/Matchers/SatisfyAnyOf.swift; sourceTree = "<group>"; };
215D2DBBD2F1901DAD0BA635F194457A /* NMBExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBExpectation.swift; path = Sources/Nimble/Adapters/NMBExpectation.swift; sourceTree = "<group>"; };
226C1AC4144C4405F39189731DF06CEC /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Sources/Nimble/Matchers/BeLogical.swift; sourceTree = "<group>"; };
22F27C71CDF4C13E05521A8AD28478C5 /* AASheetController+Photos.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "AASheetController+Photos.swift"; sourceTree = "<group>"; };
2AA071AF135B5E01BEFB968F331FB641 /* Pods-AASheetController_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AASheetController_Tests-frameworks.sh"; sourceTree = "<group>"; };
2BD1C4C62388DB655C455E30CDF8012B /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.m; sourceTree = "<group>"; };
2C14CA30770ECA99AC2E8582C5D3C4DB /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Sources/QuickObjectiveC/QuickSpec.h; sourceTree = "<group>"; };
2D9DD9D6490CDC782AB0EBFF62EC7AEE /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Sources/Quick/Configuration/Configuration.swift; sourceTree = "<group>"; };
2DEE1F436B68692319DE23FF7A16197E /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Sources/Nimble/Matchers/BeGreaterThan.swift; sourceTree = "<group>"; };
30707A1F3230E95AF8C214F2C51E3477 /* NSString+QCKSelectorName.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+QCKSelectorName.m"; path = "Sources/QuickObjectiveC/NSString+QCKSelectorName.m"; sourceTree = "<group>"; };
30778608352B15B9CFC7475AD8F932AB /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Sources/Nimble/Matchers/RaisesException.swift; sourceTree = "<group>"; };
30893D2B0E4DF3BB82B980F7B4B3118A /* AASheetController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AASheetController-prefix.pch"; sourceTree = "<group>"; };
31F522E7A1E6B249CF89B55968863A58 /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Sources/Nimble/Matchers/BeLessThan.swift; sourceTree = "<group>"; };
32343C8281B13DD7FE4F6D40BDF37C6A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
33351D0BA3A22576841E00BEBE83B38B /* Pods-AASheetController_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-AASheetController_Example.modulemap"; sourceTree = "<group>"; };
33C4401213EBEC6BC1797D974E52767D /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Sources/Nimble/Adapters/AssertionRecorder.swift; sourceTree = "<group>"; };
36F9E76E718B474FBEB8C1824AA1413A /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Quick/Filter.swift; sourceTree = "<group>"; };
3AE9F0026AAD90396B99AC9E21F8DDA5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3BE76F086E635B8645AE5C18C051A62F /* Pods_AASheetController_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AASheetController_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3C9454F0A19EB86C604E602EDD8D9A48 /* Pods-AASheetController_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AASheetController_Example-frameworks.sh"; sourceTree = "<group>"; };
4606F71071333AEDF06D8E31389AECC9 /* World.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = World.h; path = Sources/QuickObjectiveC/World.h; sourceTree = "<group>"; };
462592DD75CDB244835F58221773956C /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Sources/Quick/Hooks/Closures.swift; sourceTree = "<group>"; };
46E4CC0C865C6BF167E75E0AF5D4081E /* AASheetController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = AASheetController.modulemap; sourceTree = "<group>"; };
473162EAADE47F759500100475A4A4BE /* Quick.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.xcconfig; sourceTree = "<group>"; };
49D86D9F952CB673266943AA48D88A20 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
4B7E39158C032742F5DB8A1F5F944A38 /* Quick-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-prefix.pch"; sourceTree = "<group>"; };
4BE922A96DD313C9611FA0E4DADED72C /* Pods-AASheetController_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AASheetController_Example.debug.xcconfig"; sourceTree = "<group>"; };
4C6329DD1EE75A68AA931A2192C28C69 /* CwlCatchException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchException.swift; path = Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.swift; sourceTree = "<group>"; };
4CEE6D090220683EB93ACD11A04038DD /* CwlCatchBadInstruction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchBadInstruction.m; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.m; sourceTree = "<group>"; };
4D8D4771894BD2D30D08B3BCE9EF71DF /* Pods-AASheetController_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AASheetController_Tests.debug.xcconfig"; sourceTree = "<group>"; };
4EE1F2D1C9D5935F6B6B5CC49C89E323 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/Nimble/Utils/Errors.swift; sourceTree = "<group>"; };
4F0F33EFE650B5CE4774260C8F19455E /* ThrowAssertion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowAssertion.swift; path = Sources/Nimble/Matchers/ThrowAssertion.swift; sourceTree = "<group>"; };
4FBF7128876ED36020056A396B66AC27 /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Sources/Nimble/Matchers/ThrowError.swift; sourceTree = "<group>"; };
5058B4852C449730EE28E5F2CD349B24 /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Sources/Nimble/Matchers/EndWith.swift; sourceTree = "<group>"; };
525B5EB32452EE8123EA3E65FDC81622 /* PostNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PostNotification.swift; path = Sources/Nimble/Matchers/PostNotification.swift; sourceTree = "<group>"; };
566EED392600B84A615AC7615D23F5CB /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Sources/Quick/Callsite.swift; sourceTree = "<group>"; };
574F88EB9D847414ABF9DF78BE6B6B38 /* AASheetController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AASheetController-dummy.m"; sourceTree = "<group>"; };
5A4E497DD63B34CAF4112164C7D5C267 /* CwlCatchBadInstruction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstruction.swift; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.swift; sourceTree = "<group>"; };
5AC2EAD622CBF58EAD71675C54310955 /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Sources/Nimble/Expression.swift; sourceTree = "<group>"; };
5BBB73D767C5BEBB1C74D7F5379D37BF /* Photos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/Photos.framework; sourceTree = DEVELOPER_DIR; };
60A4CF4AA34D746BEB8F62EA84D9F202 /* XCTestObservationCenter+Register.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestObservationCenter+Register.m"; path = "Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m"; sourceTree = "<group>"; };
623285D9DBDE57EEBB2AC7A9C9663905 /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Sources/Nimble/Utils/SourceLocation.swift; sourceTree = "<group>"; };
627AA9D56F221212717BC6C0D69D5091 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Nimble/DSL.swift; sourceTree = "<group>"; };
62A5C7D27930FA6D032FA0D83D8E8239 /* CwlDarwinDefinitions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlDarwinDefinitions.swift; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlDarwinDefinitions.swift; sourceTree = "<group>"; };
6F579A910F8F80938916FAB83C722CBB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
71937B4B91A62971088D88CADF9D17CC /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Sources/Nimble/Matchers/BeAKindOf.swift; sourceTree = "<group>"; };
72B50685A7115CB568F2F23A42E31BEA /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Sources/NimbleObjectiveC/NMBExceptionCapture.h; sourceTree = "<group>"; };
740D258E2C508D53BC40BD4D7A4E5B20 /* Pods-AASheetController_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AASheetController_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
75A4ED5D7D1110F4B8D3FB568C1E4817 /* AASheetController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AASheetController.xcconfig; sourceTree = "<group>"; };
76C2AD2F63645F36689BC3DF18067258 /* QuickTestSuite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestSuite.swift; path = Sources/Quick/QuickTestSuite.swift; sourceTree = "<group>"; };
7AA367A34E0B8C1B01749CCC12FD43C5 /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Sources/Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = "<group>"; };
7FE7DAEFE89DD4FD50B980F9C9D6B7B2 /* Functional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Functional.swift; path = Sources/Nimble/Utils/Functional.swift; sourceTree = "<group>"; };
842FC677BD594CEAFC4E33EE39F6AECA /* Pods-AASheetController_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AASheetController_Tests-resources.sh"; sourceTree = "<group>"; };
8490B0412D97EC783D7889A8F43A66C1 /* Pods-AASheetController_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AASheetController_Example-acknowledgements.plist"; sourceTree = "<group>"; };
856B2E5E4EC8E2BD9ED45AAD6930A672 /* NMBStringify.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBStringify.m; path = Sources/NimbleObjectiveC/NMBStringify.m; sourceTree = "<group>"; };
86806CF3A6F7FB54DF0EEB9134380E4E /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Sources/NimbleObjectiveC/NMBExceptionCapture.m; sourceTree = "<group>"; };
88A9381D91255401863A2174DDDDC0A3 /* Nimble-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-prefix.pch"; sourceTree = "<group>"; };
89F3C3F18B400DA2F17E665908346174 /* Nimble.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8BD3BF5EB0A249E68523B43B6402EA1C /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Sources/Quick/World.swift; sourceTree = "<group>"; };
8C64DCE9D714CA88C06BDCC413FD3661 /* BeVoid.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeVoid.swift; path = Sources/Nimble/Matchers/BeVoid.swift; sourceTree = "<group>"; };
91C1B940CAE99BBBBC563963CD22996B /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Sources/NimbleObjectiveC/DSL.m; sourceTree = "<group>"; };
935996F618D9D58BA2DCF4E5C83105C1 /* AACollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AACollectionViewCell.swift; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
94B9FC85D7FEB2B0433347BA137CC7E1 /* QuickSelectedTestSuiteBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickSelectedTestSuiteBuilder.swift; path = Sources/Quick/QuickSelectedTestSuiteBuilder.swift; sourceTree = "<group>"; };
954B5272EA2120AA3260D71B6BEF8007 /* Nimble.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Nimble.xcconfig; sourceTree = "<group>"; };
98032497930EDB60680CA3A43080E039 /* Pods-AASheetController_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AASheetController_Tests.release.xcconfig"; sourceTree = "<group>"; };
98BEFCA54D25BED3A87F8A8BC72FDE02 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Sources/Quick/ExampleMetadata.swift; sourceTree = "<group>"; };
99C5CD35FC80C3ADF3853EE11AB8E248 /* Pods-AASheetController_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AASheetController_Tests-dummy.m"; sourceTree = "<group>"; };
9A4149CBE238527B194D1F9ABA8B1425 /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.h; sourceTree = "<group>"; };
9AD041EED5C6A1B6A82C71C9E5AA3FE1 /* Quick.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Quick.modulemap; sourceTree = "<group>"; };
9BB1FA4E1DD555F459E31D6ECB9DB70C /* CwlCatchException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchException.h; path = Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.h; sourceTree = "<group>"; };
9C33CF42AD6E1A448E98D4CAFB155DAA /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Sources/Nimble/Matchers/BeEmpty.swift; sourceTree = "<group>"; };
9C7B2E4FE5801A893DA4774DEC2C3985 /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Sources/Nimble/Matchers/BeNil.swift; sourceTree = "<group>"; };
A32B9E8B551B9F568B0B3BBE309347CE /* World+DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "World+DSL.h"; path = "Sources/QuickObjectiveC/DSL/World+DSL.h"; sourceTree = "<group>"; };
A3D11645B35A10BBA558B9BC99C1D340 /* URL+FileName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+FileName.swift"; path = "Sources/Quick/URL+FileName.swift"; sourceTree = "<group>"; };
A4B7D6CAD0E4CA8659FAF4AF885E81DA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
A91D06EDAC9BBAD13C3148F1E86A9AD4 /* MatchError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatchError.swift; path = Sources/Nimble/Matchers/MatchError.swift; sourceTree = "<group>"; };
A9265D9D90339F897C0C6F78088E7BEB /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = "<group>"; };
AAEA58BA3A98ABA9AF85ACD8AE3CED36 /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Sources/Quick/ExampleGroup.swift; sourceTree = "<group>"; };
ACB1FA806FF532E4E4DF8E6B4FFEB9C6 /* MatcherFunc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherFunc.swift; path = Sources/Nimble/Matchers/MatcherFunc.swift; sourceTree = "<group>"; };
AF53CCA7C0DCBC78C82FED3FBDD6BF88 /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Sources/Nimble/Matchers/BeCloseTo.swift; sourceTree = "<group>"; };
AF7B0859AF3B59A641552F282FFA92A8 /* Quick.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B0D21AADF15F952D1D29114DCE48DF44 /* AACollectionViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = AACollectionViewCell.xib; sourceTree = "<group>"; };
B2DAB46B24EC3101A9C139178DD3C5F2 /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Wait.swift"; path = "Sources/Nimble/DSL+Wait.swift"; sourceTree = "<group>"; };
B443B22C6D5803461AE7971709297EB1 /* Pods-AASheetController_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AASheetController_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
B4E171821B1D0ED4DB541E993A5B631F /* CwlCatchException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchException.m; path = Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.m; sourceTree = "<group>"; };
B85EE744366A34C7FDACC881DF2B63AB /* mach_excServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mach_excServer.h; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.h; sourceTree = "<group>"; };
B89E09AD26974F1849359B57FE32A6AA /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Sources/QuickObjectiveC/QuickSpec.m; sourceTree = "<group>"; };
B93CBD5A8C953715B286CC18EBD89EA5 /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Sources/Quick/DSL/World+DSL.swift"; sourceTree = "<group>"; };
BA22155F3C9AB9685BF4ED3A389D109A /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Sources/Nimble/Matchers/HaveCount.swift; sourceTree = "<group>"; };
BC3735170CDCA6A1C7E7D0E1876ED22B /* AsyncMatcherWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncMatcherWrapper.swift; path = Sources/Nimble/Matchers/AsyncMatcherWrapper.swift; sourceTree = "<group>"; };
BCBDD456B535FEADB8D72DB83652D74D /* Nimble-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-umbrella.h"; sourceTree = "<group>"; };
BE05FF5E6FC72D2287373D241DFBB6F2 /* HooksPhase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HooksPhase.swift; path = Sources/Quick/Hooks/HooksPhase.swift; sourceTree = "<group>"; };
C12298FB0CC92BD3BD16C958F3718416 /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Sources/Nimble/Matchers/Equal.swift; sourceTree = "<group>"; };
C5DC0B10A55692D51E246B7EE8F113C7 /* Pods-AASheetController_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-AASheetController_Tests.modulemap"; sourceTree = "<group>"; };
C69EC1174FCE1660F05AF470B443E0E7 /* Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Async.swift; path = Sources/Nimble/Utils/Async.swift; sourceTree = "<group>"; };
C7E5C9CD6DE12A0615BB5F68D0BE93AB /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Sources/QuickObjectiveC/DSL/QCKDSL.m; sourceTree = "<group>"; };
C81E409DD20CA59AA8A9A08E2B0B1B5F /* NSBundle+CurrentTestBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSBundle+CurrentTestBundle.swift"; path = "Sources/Quick/NSBundle+CurrentTestBundle.swift"; sourceTree = "<group>"; };
C97C4E97A47F53078887A61504367F9A /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Sources/Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = "<group>"; };
CB468A31776A7038E04155BC48948B60 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
CCD0E5C7B919B722CBA4C68A93D55A7A /* CurrentTestCaseTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CurrentTestCaseTracker.h; path = Sources/NimbleObjectiveC/CurrentTestCaseTracker.h; sourceTree = "<group>"; };
CE7DD158EC41F47A2796AB19C2CD1AD8 /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Sources/Nimble/Nimble.h; sourceTree = "<group>"; };
CECBCA5B4CE0779749DA0C2485B7F342 /* Pods_AASheetController_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AASheetController_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
D069539585E9F48F213C3C533DA5F2C5 /* Pods-AASheetController_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AASheetController_Example-dummy.m"; sourceTree = "<group>"; };
D1BBF1DEB58CE50279BE9C836B3DE1E1 /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Sources/Nimble/Matchers/Contain.swift; sourceTree = "<group>"; };
D2993A848EFF16A1B29C5BF7F7202F42 /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Sources/QuickObjectiveC/DSL/QCKDSL.h; sourceTree = "<group>"; };
D4621A1C4746AC480C7F889631FC8F57 /* NMBStringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBStringify.h; path = Sources/NimbleObjectiveC/NMBStringify.h; sourceTree = "<group>"; };
D6A47E312B3885EF64B81BD590AD21B4 /* CwlBadInstructionException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlBadInstructionException.swift; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlBadInstructionException.swift; sourceTree = "<group>"; };
D6C53CB242E67876DD3964EC5C775479 /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Sources/Nimble/Matchers/BeginWith.swift; sourceTree = "<group>"; };
D9571DDE390A0012143BA7AAAE1D39DC /* NSString+QCKSelectorName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+QCKSelectorName.h"; path = "Sources/QuickObjectiveC/NSString+QCKSelectorName.h"; sourceTree = "<group>"; };
DA2A27C4B8DBD796FF529A57FD25B53F /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Sources/Nimble/Matchers/MatcherProtocols.swift; sourceTree = "<group>"; };
DDB66FCF4920E93C91641504EBEC78D1 /* XCTestSuite+QuickTestSuiteBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestSuite+QuickTestSuiteBuilder.m"; path = "Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m"; sourceTree = "<group>"; };
DF2506E16556AC2C342B18D5C25B6DC1 /* AASheetController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AASheetController.swift; sourceTree = "<group>"; };
DF7C0E600D08C899D8FE3A3AC0758905 /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Sources/Quick/Example.swift; sourceTree = "<group>"; };
DFABEEB10F2E9D33C12ECA566D5947A1 /* Quick-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Quick-dummy.m"; sourceTree = "<group>"; };
E15A0E5C2D8902D8B3F11BE86DE704B8 /* ErrorUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErrorUtility.swift; path = Sources/Quick/ErrorUtility.swift; sourceTree = "<group>"; };
EE2F5F6A730DB38DE22822D808C1308C /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
EF444D2C74658368E8A523F9663D9CD2 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
F0F6829BF758E6959DFAF22ABBE2628C /* Pods-AASheetController_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AASheetController_Example.release.xcconfig"; sourceTree = "<group>"; };
F26BA5A6FE4D418C4B347B819197FA63 /* NimbleEnvironment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleEnvironment.swift; path = Sources/Nimble/Adapters/NimbleEnvironment.swift; sourceTree = "<group>"; };
F29D9C299ABB77B5AD4A90EDB8F6E104 /* AASheetController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = AASheetController.xib; sourceTree = "<group>"; };
F2F54711B380CFE23B29ACEF631A3929 /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Sources/Nimble/Utils/Stringers.swift; sourceTree = "<group>"; };
F3DC9FAE16E2DD68869AF1B29FA0A42A /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Sources/Nimble/Adapters/AdapterProtocols.swift; sourceTree = "<group>"; };
F5EEB38856E9E7BB2D8249C0062DD452 /* AASheetController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AASheetController.framework; sourceTree = BUILT_PRODUCTS_DIR; };
F795FA3DE9E15CB7DD017F791C55A8AC /* Nimble-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-dummy.m"; sourceTree = "<group>"; };
F9550ABBCFEA5EE7A657664A6BD9E1F7 /* CwlCatchBadInstruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchBadInstruction.h; path = Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.h; sourceTree = "<group>"; };
FB4B011BF1B4ECE6DC8D463CBA2E5EF7 /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Sources/NimbleObjectiveC/DSL.h; sourceTree = "<group>"; };
FCCFAE0EFBD62266157ABDA892351069 /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Sources/Nimble/Adapters/AssertionDispatcher.swift; sourceTree = "<group>"; };
FCEC90FE3EA43490331DC53C67E7DE5B /* NMBObjCMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBObjCMatcher.swift; path = Sources/Nimble/Adapters/NMBObjCMatcher.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
61458820A0CFD3C97F8FDDC8F547F5E3 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
CA99DFCE2B2DBBF25B762544AA870816 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
79FBACE99CD1E716F35587E238FF9CCA /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
378383D6FAA296CF93B2E5C17E305068 /* Foundation.framework in Frameworks */,
823073CCE753FCE4912CBB6973B696DD /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7EDA214DD9CE00BE1554CC103FD2F6B1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
36E3A56DE9EBEF4316B500F4CA8B6FE2 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
92F1395656797223741AA19A991B86A8 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F1D0EF8F882335314EB8DBE9113C677F /* Foundation.framework in Frameworks */,
00BCA1EB9B63EE2D259517E2572029B4 /* Photos.framework in Frameworks */,
55610395A889FE965303D823EB95B6A5 /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DBE2CE2F5ED086FC1DD44D4B176AEA5B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
24EF979DB6A2B88464E07F5C5937EE14 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
0CFC02DB51BBD8B9F337A52362D403A3 /* Quick */ = {
isa = PBXGroup;
children = (
566EED392600B84A615AC7615D23F5CB /* Callsite.swift */,
462592DD75CDB244835F58221773956C /* Closures.swift */,
2D9DD9D6490CDC782AB0EBFF62EC7AEE /* Configuration.swift */,
0B420A0E967EACA015B9CF21B2C491A8 /* DSL.swift */,
E15A0E5C2D8902D8B3F11BE86DE704B8 /* ErrorUtility.swift */,
DF7C0E600D08C899D8FE3A3AC0758905 /* Example.swift */,
AAEA58BA3A98ABA9AF85ACD8AE3CED36 /* ExampleGroup.swift */,
1AD0D67F0098C6695A93CAE9B27528F4 /* ExampleHooks.swift */,
98BEFCA54D25BED3A87F8A8BC72FDE02 /* ExampleMetadata.swift */,
36F9E76E718B474FBEB8C1824AA1413A /* Filter.swift */,
BE05FF5E6FC72D2287373D241DFBB6F2 /* HooksPhase.swift */,
C81E409DD20CA59AA8A9A08E2B0B1B5F /* NSBundle+CurrentTestBundle.swift */,
D9571DDE390A0012143BA7AAAE1D39DC /* NSString+QCKSelectorName.h */,
30707A1F3230E95AF8C214F2C51E3477 /* NSString+QCKSelectorName.m */,
D2993A848EFF16A1B29C5BF7F7202F42 /* QCKDSL.h */,
C7E5C9CD6DE12A0615BB5F68D0BE93AB /* QCKDSL.m */,
1C5E4C955DDEF4822A80B37B5651F8ED /* Quick.h */,
9A4149CBE238527B194D1F9ABA8B1425 /* QuickConfiguration.h */,
2BD1C4C62388DB655C455E30CDF8012B /* QuickConfiguration.m */,
94B9FC85D7FEB2B0433347BA137CC7E1 /* QuickSelectedTestSuiteBuilder.swift */,
2C14CA30770ECA99AC2E8582C5D3C4DB /* QuickSpec.h */,
B89E09AD26974F1849359B57FE32A6AA /* QuickSpec.m */,
76C2AD2F63645F36689BC3DF18067258 /* QuickTestSuite.swift */,
04F10AA7D49AA59EDAA9771CD96960B9 /* SuiteHooks.swift */,
A3D11645B35A10BBA558B9BC99C1D340 /* URL+FileName.swift */,
4606F71071333AEDF06D8E31389AECC9 /* World.h */,
8BD3BF5EB0A249E68523B43B6402EA1C /* World.swift */,
A32B9E8B551B9F568B0B3BBE309347CE /* World+DSL.h */,
B93CBD5A8C953715B286CC18EBD89EA5 /* World+DSL.swift */,
DDB66FCF4920E93C91641504EBEC78D1 /* XCTestSuite+QuickTestSuiteBuilder.m */,
9F8FF48BA1B459080AB7C8E578367A73 /* Support Files */,
);
path = Quick;
sourceTree = "<group>";
};
14B8B9B15ECBE87983FF987239AB2D7B /* Frameworks */ = {
isa = PBXGroup;
children = (
1F24F8070EDE625D916E43D18A8AE9B4 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
1F24F8070EDE625D916E43D18A8AE9B4 /* iOS */ = {
isa = PBXGroup;
children = (
CB468A31776A7038E04155BC48948B60 /* Foundation.framework */,
5BBB73D767C5BEBB1C74D7F5379D37BF /* Photos.framework */,
EF444D2C74658368E8A523F9663D9CD2 /* UIKit.framework */,
EE2F5F6A730DB38DE22822D808C1308C /* XCTest.framework */,
);
name = iOS;
sourceTree = "<group>";
};
2AD43F6FE2EEA69580115CF9A2DB7B72 /* AASheetController */ = {
isa = PBXGroup;
children = (
48F4049C95BDA45DA8161C94656736B4 /* AASheetController */,
3AA72A329E8EE64F27757AA718319CE9 /* Support Files */,
);
name = AASheetController;
path = ../..;
sourceTree = "<group>";
};
3AA72A329E8EE64F27757AA718319CE9 /* Support Files */ = {
isa = PBXGroup;
children = (
46E4CC0C865C6BF167E75E0AF5D4081E /* AASheetController.modulemap */,
75A4ED5D7D1110F4B8D3FB568C1E4817 /* AASheetController.xcconfig */,
574F88EB9D847414ABF9DF78BE6B6B38 /* AASheetController-dummy.m */,
30893D2B0E4DF3BB82B980F7B4B3118A /* AASheetController-prefix.pch */,
106C20A3B9AED9DD49E3A5EA88757C80 /* AASheetController-umbrella.h */,
49D86D9F952CB673266943AA48D88A20 /* Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/AASheetController";
sourceTree = "<group>";
};
48F4049C95BDA45DA8161C94656736B4 /* AASheetController */ = {
isa = PBXGroup;
children = (
99D1F01F4046BF84D5426E12BA43E551 /* Classes */,
);
path = AASheetController;
sourceTree = "<group>";
};
56264A85FB9BD721A9FC926B89A25D95 /* Pods */ = {
isa = PBXGroup;
children = (
8729ED7B1D5195A04BCEFF7577B57A23 /* Nimble */,
0CFC02DB51BBD8B9F337A52362D403A3 /* Quick */,
);
name = Pods;
sourceTree = "<group>";
};
653C02D39422E346CD1F536E6D4AF2DF /* Targets Support Files */ = {
isa = PBXGroup;
children = (
C51E6157C862D901E18BF463FA4D0FDE /* Pods-AASheetController_Example */,
F24E7D68DF98CAD0B57D0655DF894D20 /* Pods-AASheetController_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
7B66A12A2C9205864EB7AED0007B32C7 /* Products */ = {
isa = PBXGroup;
children = (
F5EEB38856E9E7BB2D8249C0062DD452 /* AASheetController.framework */,
89F3C3F18B400DA2F17E665908346174 /* Nimble.framework */,
3BE76F086E635B8645AE5C18C051A62F /* Pods_AASheetController_Example.framework */,
CECBCA5B4CE0779749DA0C2485B7F342 /* Pods_AASheetController_Tests.framework */,
AF7B0859AF3B59A641552F282FFA92A8 /* Quick.framework */,
);
name = Products;
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
EF96011B7C8711E8F197683D842AC9B7 /* Development Pods */,
14B8B9B15ECBE87983FF987239AB2D7B /* Frameworks */,
56264A85FB9BD721A9FC926B89A25D95 /* Pods */,
7B66A12A2C9205864EB7AED0007B32C7 /* Products */,
653C02D39422E346CD1F536E6D4AF2DF /* Targets Support Files */,
);
sourceTree = "<group>";
};
8729ED7B1D5195A04BCEFF7577B57A23 /* Nimble */ = {
isa = PBXGroup;
children = (
F3DC9FAE16E2DD68869AF1B29FA0A42A /* AdapterProtocols.swift */,
06E793A8549531332D1762623F08F9BF /* AllPass.swift */,
FCCFAE0EFBD62266157ABDA892351069 /* AssertionDispatcher.swift */,
33C4401213EBEC6BC1797D974E52767D /* AssertionRecorder.swift */,
C69EC1174FCE1660F05AF470B443E0E7 /* Async.swift */,
BC3735170CDCA6A1C7E7D0E1876ED22B /* AsyncMatcherWrapper.swift */,
71937B4B91A62971088D88CADF9D17CC /* BeAKindOf.swift */,
C97C4E97A47F53078887A61504367F9A /* BeAnInstanceOf.swift */,
AF53CCA7C0DCBC78C82FED3FBDD6BF88 /* BeCloseTo.swift */,
9C33CF42AD6E1A448E98D4CAFB155DAA /* BeEmpty.swift */,
D6C53CB242E67876DD3964EC5C775479 /* BeginWith.swift */,
2DEE1F436B68692319DE23FF7A16197E /* BeGreaterThan.swift */,
A9265D9D90339F897C0C6F78088E7BEB /* BeGreaterThanOrEqualTo.swift */,
10FFD83D547B8B236BCBB6812BC65762 /* BeIdenticalTo.swift */,
31F522E7A1E6B249CF89B55968863A58 /* BeLessThan.swift */,
104135CFA58204DC8EBF1167E28F5206 /* BeLessThanOrEqual.swift */,
226C1AC4144C4405F39189731DF06CEC /* BeLogical.swift */,
9C7B2E4FE5801A893DA4774DEC2C3985 /* BeNil.swift */,
8C64DCE9D714CA88C06BDCC413FD3661 /* BeVoid.swift */,
D1BBF1DEB58CE50279BE9C836B3DE1E1 /* Contain.swift */,
CCD0E5C7B919B722CBA4C68A93D55A7A /* CurrentTestCaseTracker.h */,
D6A47E312B3885EF64B81BD590AD21B4 /* CwlBadInstructionException.swift */,
F9550ABBCFEA5EE7A657664A6BD9E1F7 /* CwlCatchBadInstruction.h */,
4CEE6D090220683EB93ACD11A04038DD /* CwlCatchBadInstruction.m */,
5A4E497DD63B34CAF4112164C7D5C267 /* CwlCatchBadInstruction.swift */,
9BB1FA4E1DD555F459E31D6ECB9DB70C /* CwlCatchException.h */,
B4E171821B1D0ED4DB541E993A5B631F /* CwlCatchException.m */,
4C6329DD1EE75A68AA931A2192C28C69 /* CwlCatchException.swift */,
62A5C7D27930FA6D032FA0D83D8E8239 /* CwlDarwinDefinitions.swift */,
FB4B011BF1B4ECE6DC8D463CBA2E5EF7 /* DSL.h */,
91C1B940CAE99BBBBC563963CD22996B /* DSL.m */,
627AA9D56F221212717BC6C0D69D5091 /* DSL.swift */,
B2DAB46B24EC3101A9C139178DD3C5F2 /* DSL+Wait.swift */,
5058B4852C449730EE28E5F2CD349B24 /* EndWith.swift */,
C12298FB0CC92BD3BD16C958F3718416 /* Equal.swift */,
4EE1F2D1C9D5935F6B6B5CC49C89E323 /* Errors.swift */,
05E8C36BA4865751AB3994028E5BE98B /* Expectation.swift */,
5AC2EAD622CBF58EAD71675C54310955 /* Expression.swift */,
18CEB9B86795A0FDAA385DB81A49672B /* FailureMessage.swift */,
7FE7DAEFE89DD4FD50B980F9C9D6B7B2 /* Functional.swift */,
BA22155F3C9AB9685BF4ED3A389D109A /* HaveCount.swift */,
0BC4F2CA1ACAB7C5DC246E5970464CA7 /* mach_excServer.c */,
B85EE744366A34C7FDACC881DF2B63AB /* mach_excServer.h */,
1C9A478DF22318E51905AFC8BF831B2D /* Match.swift */,
ACB1FA806FF532E4E4DF8E6B4FFEB9C6 /* MatcherFunc.swift */,
DA2A27C4B8DBD796FF529A57FD25B53F /* MatcherProtocols.swift */,
A91D06EDAC9BBAD13C3148F1E86A9AD4 /* MatchError.swift */,
CE7DD158EC41F47A2796AB19C2CD1AD8 /* Nimble.h */,
F26BA5A6FE4D418C4B347B819197FA63 /* NimbleEnvironment.swift */,
7AA367A34E0B8C1B01749CCC12FD43C5 /* NimbleXCTestHandler.swift */,
72B50685A7115CB568F2F23A42E31BEA /* NMBExceptionCapture.h */,
86806CF3A6F7FB54DF0EEB9134380E4E /* NMBExceptionCapture.m */,
215D2DBBD2F1901DAD0BA635F194457A /* NMBExpectation.swift */,
FCEC90FE3EA43490331DC53C67E7DE5B /* NMBObjCMatcher.swift */,
D4621A1C4746AC480C7F889631FC8F57 /* NMBStringify.h */,
856B2E5E4EC8E2BD9ED45AAD6930A672 /* NMBStringify.m */,
525B5EB32452EE8123EA3E65FDC81622 /* PostNotification.swift */,
30778608352B15B9CFC7475AD8F932AB /* RaisesException.swift */,
208F66BD9FCF9E4BBBDCC434971F5113 /* SatisfyAnyOf.swift */,
623285D9DBDE57EEBB2AC7A9C9663905 /* SourceLocation.swift */,
F2F54711B380CFE23B29ACEF631A3929 /* Stringers.swift */,
4F0F33EFE650B5CE4774260C8F19455E /* ThrowAssertion.swift */,
4FBF7128876ED36020056A396B66AC27 /* ThrowError.swift */,
60A4CF4AA34D746BEB8F62EA84D9F202 /* XCTestObservationCenter+Register.m */,
F154A167CC9AC286CB008DF3527B8F65 /* Support Files */,
);
path = Nimble;
sourceTree = "<group>";
};
99D1F01F4046BF84D5426E12BA43E551 /* Classes */ = {
isa = PBXGroup;
children = (
935996F618D9D58BA2DCF4E5C83105C1 /* AACollectionViewCell.swift */,
B0D21AADF15F952D1D29114DCE48DF44 /* AACollectionViewCell.xib */,
13D740F8A2117C685D9765E7753CA20C /* AASheetAction.swift */,
DF2506E16556AC2C342B18D5C25B6DC1 /* AASheetController.swift */,
F29D9C299ABB77B5AD4A90EDB8F6E104 /* AASheetController.xib */,
22F27C71CDF4C13E05521A8AD28478C5 /* AASheetController+Photos.swift */,
);
path = Classes;
sourceTree = "<group>";
};
9F8FF48BA1B459080AB7C8E578367A73 /* Support Files */ = {
isa = PBXGroup;
children = (
6F579A910F8F80938916FAB83C722CBB /* Info.plist */,
9AD041EED5C6A1B6A82C71C9E5AA3FE1 /* Quick.modulemap */,
473162EAADE47F759500100475A4A4BE /* Quick.xcconfig */,
DFABEEB10F2E9D33C12ECA566D5947A1 /* Quick-dummy.m */,
4B7E39158C032742F5DB8A1F5F944A38 /* Quick-prefix.pch */,
15E2114ED8AE0D3C939FFE5084E2DAEC /* Quick-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Quick";
sourceTree = "<group>";
};
C51E6157C862D901E18BF463FA4D0FDE /* Pods-AASheetController_Example */ = {
isa = PBXGroup;
children = (
3AE9F0026AAD90396B99AC9E21F8DDA5 /* Info.plist */,
33351D0BA3A22576841E00BEBE83B38B /* Pods-AASheetController_Example.modulemap */,
B443B22C6D5803461AE7971709297EB1 /* Pods-AASheetController_Example-acknowledgements.markdown */,
8490B0412D97EC783D7889A8F43A66C1 /* Pods-AASheetController_Example-acknowledgements.plist */,
D069539585E9F48F213C3C533DA5F2C5 /* Pods-AASheetController_Example-dummy.m */,
3C9454F0A19EB86C604E602EDD8D9A48 /* Pods-AASheetController_Example-frameworks.sh */,
10DF2549E6D26D4433A101415BB18515 /* Pods-AASheetController_Example-resources.sh */,
07F712B8BC85864E3642BF116D2CCD9E /* Pods-AASheetController_Example-umbrella.h */,
4BE922A96DD313C9611FA0E4DADED72C /* Pods-AASheetController_Example.debug.xcconfig */,
F0F6829BF758E6959DFAF22ABBE2628C /* Pods-AASheetController_Example.release.xcconfig */,
);
name = "Pods-AASheetController_Example";
path = "Target Support Files/Pods-AASheetController_Example";
sourceTree = "<group>";
};
EF96011B7C8711E8F197683D842AC9B7 /* Development Pods */ = {
isa = PBXGroup;
children = (
2AD43F6FE2EEA69580115CF9A2DB7B72 /* AASheetController */,
);
name = "Development Pods";
sourceTree = "<group>";
};
F154A167CC9AC286CB008DF3527B8F65 /* Support Files */ = {
isa = PBXGroup;
children = (
32343C8281B13DD7FE4F6D40BDF37C6A /* Info.plist */,
14537A5EC332D4F5F8A2D483B328CC37 /* Nimble.modulemap */,
954B5272EA2120AA3260D71B6BEF8007 /* Nimble.xcconfig */,
F795FA3DE9E15CB7DD017F791C55A8AC /* Nimble-dummy.m */,
88A9381D91255401863A2174DDDDC0A3 /* Nimble-prefix.pch */,
BCBDD456B535FEADB8D72DB83652D74D /* Nimble-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Nimble";
sourceTree = "<group>";
};
F24E7D68DF98CAD0B57D0655DF894D20 /* Pods-AASheetController_Tests */ = {
isa = PBXGroup;
children = (
A4B7D6CAD0E4CA8659FAF4AF885E81DA /* Info.plist */,
C5DC0B10A55692D51E246B7EE8F113C7 /* Pods-AASheetController_Tests.modulemap */,
740D258E2C508D53BC40BD4D7A4E5B20 /* Pods-AASheetController_Tests-acknowledgements.markdown */,
025B0014900A44B62555BD4D3B0AE8EA /* Pods-AASheetController_Tests-acknowledgements.plist */,
99C5CD35FC80C3ADF3853EE11AB8E248 /* Pods-AASheetController_Tests-dummy.m */,
2AA071AF135B5E01BEFB968F331FB641 /* Pods-AASheetController_Tests-frameworks.sh */,
842FC677BD594CEAFC4E33EE39F6AECA /* Pods-AASheetController_Tests-resources.sh */,
0ED0BFD0A79F612D30B211BEB1D73E92 /* Pods-AASheetController_Tests-umbrella.h */,
4D8D4771894BD2D30D08B3BCE9EF71DF /* Pods-AASheetController_Tests.debug.xcconfig */,
98032497930EDB60680CA3A43080E039 /* Pods-AASheetController_Tests.release.xcconfig */,
);
name = "Pods-AASheetController_Tests";
path = "Target Support Files/Pods-AASheetController_Tests";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
2ACF6192E10A038A21EFA2156C9F7EA3 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
F693D0A9E0D05F815A85DC258E75AF8D /* CurrentTestCaseTracker.h in Headers */,
65F5217D44A557FC16218DE5DE348C35 /* CwlCatchBadInstruction.h in Headers */,
87DD62F200DAB5E1D701AB9F94D1D422 /* CwlCatchException.h in Headers */,
0ECEEBC712D404AA6CF1E76A9284BFF9 /* DSL.h in Headers */,
B093484B1637B3D3AF65DF2232FDBADC /* mach_excServer.h in Headers */,
76036D32625A56D480D84AA46961EF91 /* Nimble-umbrella.h in Headers */,
469E9C3ED9FD6009F7C9AAF9E537E212 /* Nimble.h in Headers */,
917949F596E1188261FC59214782C3D9 /* NMBExceptionCapture.h in Headers */,
27B262F95D3CF9E3C74541A41929691C /* NMBStringify.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
30472FBDBFEE7CBBDE8CCB3EBAE407EC /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
A4BADFA69D17A38BC65B7C9FC4A454FB /* NSString+QCKSelectorName.h in Headers */,
431D761D2789920DFD85AFE099C4E9FA /* QCKDSL.h in Headers */,
F3D8300D84D852FFF062289B6CE08313 /* Quick-umbrella.h in Headers */,
9EF6C81B4AC2A0300B43901F7044B9CA /* Quick.h in Headers */,
93D3F8A13DC050CBD55BB9B37C791A89 /* QuickConfiguration.h in Headers */,
007D5D385939F4FF4E7A3F355569BC87 /* QuickSpec.h in Headers */,
06065E6057DC7D3DFB28FDFCC129F027 /* World+DSL.h in Headers */,
0171B78B1490B95F387A183E33037A74 /* World.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6E657D70093CA27B4EE27576A68387D6 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
BB88281C481A53B892F25CB0A2A0D957 /* Pods-AASheetController_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A01A5961CC38F3E566F9D97BB3AE7FD8 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
0D1557DF4B35AEA67C8E3C690EDDE39F /* Pods-AASheetController_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B381A4CFACBF93D8A6A38D3FA7C47479 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
EED9CFAC592FA22D937EBFDB7BF9A934 /* AASheetController-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
1321E318D10CFDC9F5B93A7952492CCD /* Nimble */ = {
isa = PBXNativeTarget;
buildConfigurationList = B1DBAFB75A3AF98C8C6B0863BDC7A2E3 /* Build configuration list for PBXNativeTarget "Nimble" */;
buildPhases = (
3C4AABA28564F6F29FE8E3F38226690A /* Sources */,
DBE2CE2F5ED086FC1DD44D4B176AEA5B /* Frameworks */,
2ACF6192E10A038A21EFA2156C9F7EA3 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = Nimble;
productName = Nimble;
productReference = 89F3C3F18B400DA2F17E665908346174 /* Nimble.framework */;
productType = "com.apple.product-type.framework";
};
2E800BFE43EE1CE7DB3BD90844D4F06E /* AASheetController */ = {
isa = PBXNativeTarget;
buildConfigurationList = AB6D376EC6494A1BBFD55BC4B6079B70 /* Build configuration list for PBXNativeTarget "AASheetController" */;
buildPhases = (
472C7C747599566275906E5505280B71 /* Sources */,
92F1395656797223741AA19A991B86A8 /* Frameworks */,
B381A4CFACBF93D8A6A38D3FA7C47479 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = AASheetController;
productName = AASheetController;
productReference = F5EEB38856E9E7BB2D8249C0062DD452 /* AASheetController.framework */;
productType = "com.apple.product-type.framework";
};
5B21611C6C084A2C09AD8AB5F2B8CC85 /* Quick */ = {
isa = PBXNativeTarget;
buildConfigurationList = 0841471282226F2DAD05A3FA0CC079C7 /* Build configuration list for PBXNativeTarget "Quick" */;
buildPhases = (
F765A68A89D3BDF6BA4F9A65546068F0 /* Sources */,
79FBACE99CD1E716F35587E238FF9CCA /* Frameworks */,
30472FBDBFEE7CBBDE8CCB3EBAE407EC /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = Quick;
productName = Quick;
productReference = AF7B0859AF3B59A641552F282FFA92A8 /* Quick.framework */;
productType = "com.apple.product-type.framework";
};
5F1D6639A27E3072ED232DF4D1FA2738 /* Pods-AASheetController_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = BFE03871833EDE1A97E20CD90ADE79AD /* Build configuration list for PBXNativeTarget "Pods-AASheetController_Example" */;
buildPhases = (
0CB3CDCBE49B2934C37DC0D1D365718F /* Sources */,
61458820A0CFD3C97F8FDDC8F547F5E3 /* Frameworks */,
6E657D70093CA27B4EE27576A68387D6 /* Headers */,
);
buildRules = (
);
dependencies = (
0B84AC370FD1DF75AF6EE0A426AC051D /* PBXTargetDependency */,
);
name = "Pods-AASheetController_Example";
productName = "Pods-AASheetController_Example";
productReference = 3BE76F086E635B8645AE5C18C051A62F /* Pods_AASheetController_Example.framework */;
productType = "com.apple.product-type.framework";
};
F2C5E6ED28548602DBE8464F39828F12 /* Pods-AASheetController_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 279843BC0226ED8EFEC0FC84C15B2EFC /* Build configuration list for PBXNativeTarget "Pods-AASheetController_Tests" */;
buildPhases = (
8C87FF6BEDD8A190DF49A254C83E11B2 /* Sources */,
7EDA214DD9CE00BE1554CC103FD2F6B1 /* Frameworks */,
A01A5961CC38F3E566F9D97BB3AE7FD8 /* Headers */,
);
buildRules = (
);
dependencies = (
F88FAC93FDB9CD3568B6604FD0901868 /* PBXTargetDependency */,
6FB5BAFB85E5C423BD2D7EEBD025194B /* PBXTargetDependency */,
);
name = "Pods-AASheetController_Tests";
productName = "Pods-AASheetController_Tests";
productReference = CECBCA5B4CE0779749DA0C2485B7F342 /* Pods_AASheetController_Tests.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0730;
LastUpgradeCheck = 0700;
};
buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
productRefGroup = 7B66A12A2C9205864EB7AED0007B32C7 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
2E800BFE43EE1CE7DB3BD90844D4F06E /* AASheetController */,
1321E318D10CFDC9F5B93A7952492CCD /* Nimble */,
5F1D6639A27E3072ED232DF4D1FA2738 /* Pods-AASheetController_Example */,
F2C5E6ED28548602DBE8464F39828F12 /* Pods-AASheetController_Tests */,
5B21611C6C084A2C09AD8AB5F2B8CC85 /* Quick */,
);
};
/* End PBXProject section */
/* Begin PBXSourcesBuildPhase section */
0CB3CDCBE49B2934C37DC0D1D365718F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
F7341EF465AAEA9C87705B90280F696E /* Pods-AASheetController_Example-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3C4AABA28564F6F29FE8E3F38226690A /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
047A68C646E00EB6D7D4D7343B801D09 /* AdapterProtocols.swift in Sources */,
DCEE854E62441E78FED15CC994497F61 /* AllPass.swift in Sources */,
74FD712F3B503891B6BD9E5CD287E481 /* AssertionDispatcher.swift in Sources */,
F9E05A63D447B51E008B89731192FE7F /* AssertionRecorder.swift in Sources */,
AC29CC89E22273BF0D0DC2C841B7524C /* Async.swift in Sources */,
551440A0F92574039C1D2EB39227D6B8 /* AsyncMatcherWrapper.swift in Sources */,
F60D221B548716DF35193FC2CF244676 /* BeAKindOf.swift in Sources */,
A448F837592E21D9387322E8DA0DD93F /* BeAnInstanceOf.swift in Sources */,
9544A4EEC2A8448743ECA9981F88B60F /* BeCloseTo.swift in Sources */,
9AF235C16362BA00BFBF12147907E953 /* BeEmpty.swift in Sources */,
AB255C27EF10E742C6567775022F49D5 /* BeginWith.swift in Sources */,
07722FBCF6B380961B9D2832D5883F45 /* BeGreaterThan.swift in Sources */,
1C50F54510D5C2B2AD84D7B74A6EDEBB /* BeGreaterThanOrEqualTo.swift in Sources */,
A33F1754198E8E8CCC7087F6176FFDC8 /* BeIdenticalTo.swift in Sources */,
6E397D9FB11A47E48D70287D734B12B2 /* BeLessThan.swift in Sources */,
FAB4ECE0C5039D99BB7173880670871D /* BeLessThanOrEqual.swift in Sources */,
0AEC20AACF9B10846830274E3B2AA6FD /* BeLogical.swift in Sources */,
599669823A2EED2928C77F301F6B0515 /* BeNil.swift in Sources */,
78F3DE174B4F8D368EF8EEFD7EE62087 /* BeVoid.swift in Sources */,
8507F4BF7437EB40A3626EDCC68BFF6D /* Contain.swift in Sources */,
737E19F3254F5929263982C29237C0BA /* CwlBadInstructionException.swift in Sources */,
3915DBB4731CB17B255A7FE86E240B6E /* CwlCatchBadInstruction.m in Sources */,
6CDBA48C3A8621E4EE1DAFFE240F0D82 /* CwlCatchBadInstruction.swift in Sources */,
947162383483B6391F8CDF38249BFBD2 /* CwlCatchException.m in Sources */,
F4A1B7A059AAA6727EB70E58E09332A4 /* CwlCatchException.swift in Sources */,
BB10A2D0B1EE5B1BA811354116F83E3F /* CwlDarwinDefinitions.swift in Sources */,
86FFB76B2EDCF4AE79CC4C0BD8A0FE9A /* DSL+Wait.swift in Sources */,
1C7CA1FAFBF8B865596C739FEA39CDEE /* DSL.m in Sources */,
17261E344C2027602431A636759AC7F2 /* DSL.swift in Sources */,
8654571F855691C23B7B8E61B2141944 /* EndWith.swift in Sources */,
BF3AF1D2B46E09E2B3DCC824E6C1F5AF /* Equal.swift in Sources */,
7F6750C7B1847733370B18C4CBFE32DF /* Errors.swift in Sources */,
CB7558CCDD935C9E82BBF454022ED1D3 /* Expectation.swift in Sources */,
8015239010C1D642F14C105F8FF8E035 /* Expression.swift in Sources */,
7D6269A3CFE53C28DAA6B92E8FC017A7 /* FailureMessage.swift in Sources */,
FCFFEB587281358CFF05A65ED9E94C12 /* Functional.swift in Sources */,
CE3FA6AE0944D4AE737F0E57CFF4A615 /* HaveCount.swift in Sources */,
50B80F12A9BAE302F07F6CF94752F462 /* mach_excServer.c in Sources */,
A91166D0A5E8F1D5D5377622C381C045 /* Match.swift in Sources */,
B9BD565DAB07F8E2288A960A1D3EFAC1 /* MatcherFunc.swift in Sources */,
23E2E1E02FE79EE1E1688CBBAA777297 /* MatcherProtocols.swift in Sources */,
CE4CEF6328E255B380E2B2692B351CF8 /* MatchError.swift in Sources */,
9E95D6E15DBE9B0FC92AAF60D42D1464 /* Nimble-dummy.m in Sources */,
F9D61EB5EEB799105913685722FF4C9C /* NimbleEnvironment.swift in Sources */,
E5CCEF0B83F8272D10671C01AAE4FFA0 /* NimbleXCTestHandler.swift in Sources */,
DC32331BE565888E694E1321BB1D80F5 /* NMBExceptionCapture.m in Sources */,
8C30EAD5FFD28B387099B41C74657A67 /* NMBExpectation.swift in Sources */,
AC0B24EF198E3BEDFCC9F25D7B8EEDAB /* NMBObjCMatcher.swift in Sources */,
127CD37052B8E0BC645D83D4664F59D4 /* NMBStringify.m in Sources */,
EBA52C16F42E42A1824D87C284F4A60C /* PostNotification.swift in Sources */,
4F3F103945CC52D0A3B8A891BB0E21C4 /* RaisesException.swift in Sources */,
62744EF299751FB49B5FCD81D8C8FFF7 /* SatisfyAnyOf.swift in Sources */,
234BFC45ACAC4A8FB945EA17B6A74B0B /* SourceLocation.swift in Sources */,
9BEBD1791C233763A8DC13080BFB99C9 /* Stringers.swift in Sources */,
110A640A9BE45841BA938B4C29EF5446 /* ThrowAssertion.swift in Sources */,
22C1DE74D494C10BBE727F239A68447D /* ThrowError.swift in Sources */,
D88575ED37BC462E8130CDBEFE9EA308 /* XCTestObservationCenter+Register.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
472C7C747599566275906E5505280B71 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
C7023840E1DD486B93ADE3372F249D1E /* AACollectionViewCell.swift in Sources */,
CD835E243697D60C02A461D25D149063 /* AACollectionViewCell.xib in Sources */,
81D246F2AEF5C4BDCF0C7CCC78767F96 /* AASheetAction.swift in Sources */,
02F2769157EC3B277E7F97A31A102E6E /* AASheetController+Photos.swift in Sources */,
3A4DCF719314F3B860803504DCB01F6B /* AASheetController-dummy.m in Sources */,
17DE1657409A7D303945876629D5C453 /* AASheetController.swift in Sources */,
C900DA2814B960F797CBE54541B038B3 /* AASheetController.xib in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
8C87FF6BEDD8A190DF49A254C83E11B2 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
5E672EF67F0B688E188D0AFD933D992E /* Pods-AASheetController_Tests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F765A68A89D3BDF6BA4F9A65546068F0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6139A9750F0EFE9E51CDF161786DF58D /* Callsite.swift in Sources */,
4F52D385FD216952D01623F6094303B4 /* Closures.swift in Sources */,
4B4B64671E729B2DA9F4DB943856ECF3 /* Configuration.swift in Sources */,
8132ACD97BB0A35053F0087FECFA82B0 /* DSL.swift in Sources */,
D33CCE83AE1EE019FFD8D6B7A4867347 /* ErrorUtility.swift in Sources */,
09DED715386F158F56A01268179F7A4C /* Example.swift in Sources */,
C130764021D4317204AC7FA3C66BFD67 /* ExampleGroup.swift in Sources */,
4B5B790544FFC58126BC4BFD02054929 /* ExampleHooks.swift in Sources */,
D7ACC8F235D3E23F91BD1BB5D9735833 /* ExampleMetadata.swift in Sources */,
B989EC9A449137FF7FA20F2859A795F4 /* Filter.swift in Sources */,
84D7ABAF55CF42E590210F82C66DE412 /* HooksPhase.swift in Sources */,
80C0EA0E6DFE904FDCDD85FA7D288142 /* NSBundle+CurrentTestBundle.swift in Sources */,
16E0E8520F9694498A4DF4C1A1CFEC8F /* NSString+QCKSelectorName.m in Sources */,
8FBD43F93844FEC7467E613E2F5D0971 /* QCKDSL.m in Sources */,
D30622543CAEA52C636A3E5ADE041E00 /* Quick-dummy.m in Sources */,
53185F802D0F5B6826822A208C41A9C3 /* QuickConfiguration.m in Sources */,
CD56895887085041D05C7F7EB662B689 /* QuickSelectedTestSuiteBuilder.swift in Sources */,
16F140CCEC78E5E0D87EF11E98D04227 /* QuickSpec.m in Sources */,
F19808A78499B327E03F6CF6F3BEC118 /* QuickTestSuite.swift in Sources */,
7153E5146D45B3F3C7341C13F96861D0 /* SuiteHooks.swift in Sources */,
A8B4F824204BD0EBFE9D58A63719B34F /* URL+FileName.swift in Sources */,
200520EBE6A4BC8C454F894B2D4D7480 /* World+DSL.swift in Sources */,
79DE5E738E3EF4824785637077585FBE /* World.swift in Sources */,
2887D310A627BBD0AC3277943A3B30EA /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
0B84AC370FD1DF75AF6EE0A426AC051D /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = AASheetController;
target = 2E800BFE43EE1CE7DB3BD90844D4F06E /* AASheetController */;
targetProxy = 2196BB71E3DA032F66173EB0D4F4C1E6 /* PBXContainerItemProxy */;
};
6FB5BAFB85E5C423BD2D7EEBD025194B /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Quick;
target = 5B21611C6C084A2C09AD8AB5F2B8CC85 /* Quick */;
targetProxy = 7A8840353DDE04042AB7AB834713010C /* PBXContainerItemProxy */;
};
F88FAC93FDB9CD3568B6604FD0901868 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Nimble;
target = 1321E318D10CFDC9F5B93A7952492CCD /* Nimble */;
targetProxy = AE6635D96F01A940F23510DB9945DA64 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
04020B9E0797A7C9CA7A101EA9312572 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 954B5272EA2120AA3260D71B6BEF8007 /* Nimble.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
GCC_PREFIX_HEADER = "Target Support Files/Nimble/Nimble-prefix.pch";
INFOPLIST_FILE = "Target Support Files/Nimble/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/Nimble/Nimble.modulemap";
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_NAME = Nimble;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};