forked from krzysztofzablocki/KZFileWatchers
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1829 lines (1816 loc) · 134 KB
/
project.pbxproj
File metadata and controls
1829 lines (1816 loc) · 134 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 */
02EDE6F260E8E95CAC741342606CBE65 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5102C6091E8114B4E7BC26D83F6A630D /* Foundation.framework */; };
07E73A536F3DDF7CC43BEF0C076B7602 /* Pods-KZFileWatchers_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 64FEE49831977D89EC452FF520534B49 /* Pods-KZFileWatchers_Tests-dummy.m */; };
0837CAE176AE66736FE457DDAAF5E01D /* Quick-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = ED572C1A47EAE3F6890D5FA6B4F05D34 /* Quick-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
08665AFE99DBE24F44EF0ACD4F9F56CA /* Behavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = A18809EDF74F93AAD07BB974D7040382 /* Behavior.swift */; };
0892D14FE7A3452423E9129D7917664B /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = C004110BF333E198EDD1FB962BE86072 /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
092256E303520E50ADEFF25EEB4E73EE /* CwlCatchException.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F0363CDCCE3B0BC79461F0C04BF9380 /* CwlCatchException.h */; settings = {ATTRIBUTES = (Public, ); }; };
0C78BF11377F17C8F5B8CD7604269361 /* OHHTTPStubsMethodSwizzling.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB942BED478D2AF228A6F77B2E5D739 /* OHHTTPStubsMethodSwizzling.h */; settings = {ATTRIBUTES = (Private, ); }; };
13D2A4D59DD9612E1AA7F3182A342162 /* mach_excServer.c in Sources */ = {isa = PBXBuildFile; fileRef = EC32B8EE4C81A25F9CDDA38A3C1C39F4 /* mach_excServer.c */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
165F2A6DF189151CDBCA366DD275ABEA /* OHHTTPStubs-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D1CA6E777E4C2B988CAFB712FF9D8080 /* OHHTTPStubs-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
192A3F8BEC1A99FD8712D3E09724D72C /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70FFDAD75DA90B93F5CCDB73FC153074 /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
22E1EDBF560583A04FC4C30267BD408A /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F58E427ECA84A6C5C9BA69030D0B1C5 /* URL+FileName.swift */; };
234849AD309265FD107C74357FC8C0CF /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45DD3BC5F8729EEC69C0375FB6677CC1 /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
2391FFD3230B40E2348B5257D6296BBB /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46EF1EF4FCBDD20530D2D61127059FA2 /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
23FE2BC2C69DE130BE9BB3F7539E045F /* Pods-KZFileWatchers_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 70F1F0105E9A30D97355C5B5A2E8D57A /* Pods-KZFileWatchers_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
26B9FEAB3DE0C8B91709D53571752A3B /* MatcherFunc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F4D28F6D6589824BA8A77019E78B098 /* MatcherFunc.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
271C67655E6C1457D61E39822C3908A3 /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74229C1C2B8EA99E92BE12D01EF6831C /* HooksPhase.swift */; };
276071E9DBAAA08BBBD569288E026156 /* OHHTTPStubsResponse+JSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E3E63D95C3278939274EABD79EE2A50 /* OHHTTPStubsResponse+JSON.h */; settings = {ATTRIBUTES = (Public, ); }; };
279182A0ADEBF168DDA358DA2DEC5F74 /* OHPathHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F173488E424D921113A174BC9D914F6 /* OHPathHelpers.m */; };
2B350015B9F7546D0769649EE12D7D1A /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1833CDD829E4755C5C7CA9FCC0282C8 /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
2EA8B4F77F25009885E315BF0902172D /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F9A494F9B18E1B8D43E55F7732BBC02 /* Callsite.swift */; };
30D34E2F749B66B677A48B38D00C8225 /* OHHTTPStubsMethodSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 8789676C3E8F0FB008645F61EFB2AF50 /* OHHTTPStubsMethodSwizzling.m */; };
3262B230B938C8D6522790093FEAF69D /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C2F271B331F5F6088153DF3D7CABEA8 /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
330E8E4A6596ED625E9B34C94CC4136E /* Await.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D64EF1FE66DD5FE651F03EE88D93884 /* Await.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
3460FEA0CEADB05D3B56C2E1CAF9590C /* ElementsEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9414468CC8456339CC2F98E0066C822C /* ElementsEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
35ADFD7C4A24B1FE7E150BB4FE477E12 /* OHHTTPStubs+NSURLSessionConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 01F84E761B98B4E7A41C72D170CE12B1 /* OHHTTPStubs+NSURLSessionConfiguration.m */; };
39133A7716CEDEB690A7DA9D12C45C4D /* CwlDarwinDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C10026EBBDC5921994D532165056F13C /* CwlDarwinDefinitions.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
3BD0C370BBCEBDEA68B8EDBD969370EB /* mach_excServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 40E516713DC93E9F7BEAB77EE1E09256 /* mach_excServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
4203EF96811AE514D64AE069311B1575 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 283B3108FA95C3EAA74A78FFF1B9291B /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
42F76698690916E0407F51610D829412 /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A1788C164A9BFDD181261910BDFB1CE /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
44C9470137EF941955A1FDCE71D68C26 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1824505E8ADC548ADC6518F2D403D1C0 /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
461A0D9A9E5BAEF5F12EF9EFCB3449E8 /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD332317D319610F358125FD5CA1A9EB /* Closures.swift */; };
46B90B2CF2EB97B38C43A31E9A5478C2 /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3E569367E525604D125BAC8AAA5CDA6 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
46BDEBF35D99D2CC53EF72DFC5BDCDCC /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 515763EB5229E373CEC58A50CE790D56 /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
49AFD07EF060BC4C10BC3A767CC54B05 /* String+C99ExtendedIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = F37DDDF2117C65236554D47A9547A3A1 /* String+C99ExtendedIdentifier.swift */; };
4A9D1029392018D69956D67CEC678D05 /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 184EE06984DA105847555AB7E90720B9 /* ErrorUtility.swift */; };
4A9E7C1A8B697A1C0B0A1E0DF855A591 /* CwlCatchException.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4E41B681314B0E53D68FB9584566877 /* CwlCatchException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
5220CE53965AEB43057039D7D31BA943 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2470E8CED679445A52928AAD5D8F6428 /* Example.swift */; };
52AB6461CAA9481D24835F3E48301FC6 /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B18C5BE99DF01B2F11DD832CF106719 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
52E11D6FC2FA7DE75DB539F34834FA7E /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 749D5F6C2F90DF1CA04166FB2354D793 /* QuickConfiguration.m */; };
52F39956B5C121F4F73C82DB4E96F0FE /* OHHTTPStubs.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D453A0C60962DF8C5DFB60C8657D6A7 /* OHHTTPStubs.m */; };
5387850DA2622820249EE42C80535262 /* Pods-KZFileWatchers_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F3DDFA3E750F1CA39A30BF2AB85F3132 /* Pods-KZFileWatchers_Example-dummy.m */; };
5578F928AEFA8B2B7CC542033590DFD6 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9131AA0918F61FE6287E2F27DF32F331 /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
574E0EF97DA9EDFFB71DF10D5786261D /* KZFileWatchers-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B53F52EC5646831625972FF4C6B00DDD /* KZFileWatchers-dummy.m */; };
582D529682D8E57A3BE833B667F788D2 /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17D24121DC8BFC6F27A134A5EA868350 /* ExampleMetadata.swift */; };
5B6F70DDD4C63CF6ED95291BCB633494 /* ContainElementSatisfying.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85FFE57108F9B1C423CEE9A6353CEE76 /* ContainElementSatisfying.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
5CAFF11E9522A44ADB603FD3EE9ADB10 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5102C6091E8114B4E7BC26D83F6A630D /* Foundation.framework */; };
602E3758C0EF64AF6B7FCEA05BF5B9B9 /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 871AC1E3EFE6969E45BBD0ABF0C8ABDE /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
64E26D7D025AC4462DFA8BA66B38C9D8 /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9673F1E893FA8E198A967B5DC575CC2 /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
6555C9FEB29EA5DC75C9086D8B14BCCD /* OHHTTPStubsResponse.h in Headers */ = {isa = PBXBuildFile; fileRef = 8335EA5541F230F9342EEB2CFF37A2CA /* OHHTTPStubsResponse.h */; settings = {ATTRIBUTES = (Public, ); }; };
6B208ADC7C0A1E218185146D9C11A7A2 /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CAF8F73D395E3C3FD141658356590D6 /* World+DSL.swift */; };
706CEC35B3D8A123470744F2D690B1BF /* Quick-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E2C5EF1849B7A78A4082C9229A6AB782 /* Quick-dummy.m */; };
72DDD7AE2125A695DB8D093F17B7C4E6 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2183850B0351C1E42DE2B0D1AF87F20D /* DSL.swift */; };
72FB8CEABF346A37D54CC08647489A98 /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6409232DFECB9E2BFFF1D44165E01733 /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7386CBF80A5183A6C6A0A11B5DE33734 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D85EC25D76C0E6518AC50422991089A /* QuickSpec.m */; };
755A93B0ECC17CE5F17E3D7D62632375 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 48DE83FE282865474B03179913B47835 /* XCTestSuite+QuickTestSuiteBuilder.m */; };
768B947C9E040CB87ED61BE11D4FE690 /* KZFileWatchers-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F5CF7C32298D37DF1EDE8AF6CB37A72 /* KZFileWatchers-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
78A51B7FCC1DFB888AAA254529013C12 /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCDFF4ECBA69F172B702C4B7BAC0B554 /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7ABDEE0E781182E5F0C52CE632D4ECF1 /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = F52DB45B418407857EA05F27132BD0FD /* Configuration.swift */; };
7AC93EB6DCDA9226165D5BC354FE7BC6 /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = AF0512E36BF85E2834825888F2CC88AD /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7DAC86DCBC36C10F43FA5FEB819B7BF1 /* Functional.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEDEA881448CE1614CEF5B455702DFCF /* Functional.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7F7C4C9A4BE3A22087F992806F1C90E0 /* OHHTTPStubs-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AEAAC23D095AEB693B0E5976EE4A68CE /* OHHTTPStubs-dummy.m */; };
806B9040D79A3DC58FB56EAC16FE19BF /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F68C517CFE9BF46A005B9AD8F96D27CC /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
80DEBE41D84FBA1C4D4FE00C8D797E82 /* CwlPreconditionTesting.h in Headers */ = {isa = PBXBuildFile; fileRef = 716A465E0CB151E14466B130D973D483 /* CwlPreconditionTesting.h */; settings = {ATTRIBUTES = (Public, ); }; };
8278FF9FD4D316C6B7253D2E95609D38 /* Common.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22EC31E855E64F4D1BB41C1574A9CFE5 /* Common.swift */; };
83976C4AC81DBA1656F1358F25032074 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDB3AC6E8013FB03900FC49BFCFF5E5B /* World.swift */; };
8582F2C9F87F4C529250F1AE8769CC0A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5102C6091E8114B4E7BC26D83F6A630D /* Foundation.framework */; };
8911DDD5910AA1C6E099EBF768AFC8F7 /* QuickSpecBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 45049F1BBA2CEB4D25DA949A6E0724B7 /* QuickSpecBase.h */; settings = {ATTRIBUTES = (Project, ); }; };
89EE4D6DBDB79963D65AA1E67B543B6D /* CwlCatchBadInstruction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39E4E7616EEB4F7F264FD2B88DD936C4 /* CwlCatchBadInstruction.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8A0EF19254BAC5DF0885D1FBA345E016 /* CwlMachBadInstructionHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 83844CDEAC9B435455826D218E804D27 /* CwlMachBadInstructionHandler.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8D17749611AB0C8BD51C068749D8DF68 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 510DAEB833A1C5680C2F05D8CB399D99 /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; };
8D543DAD9A6C0B8BF8A5DB38AD876677 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA9065950159BE69311C316316A0DFD0 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8D75EC8969EA46FBD6E1BED7791A3C37 /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81B34999F6151BE236250F63257C9B61 /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
92506A7A62E10713A921D19DD0107CCA /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E727847D9D062BB442FACED09AD23DE /* SuiteHooks.swift */; };
94DA3131D64B3D904BE28E72F1871065 /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD5A88106040503B5D78ADDD3CA01A77 /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
979FA0DBF4A09572B0B55C141252527D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5102C6091E8114B4E7BC26D83F6A630D /* Foundation.framework */; };
99E8019F4689A514DAC6AA40AFF7352E /* NMBObjCMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 978E44626EBF0068FF4321024F34C213 /* NMBObjCMatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9B9714C476F416AD7FD803EA1184D113 /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97DC93E3D21B0475C8B88C8622778E8A /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9BB5E9B6487FE95C710687B484C17161 /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = F4B2B58D8206E3F67A0F89EE1239BE33 /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; };
9BB78DC33523C76095B1D95D5CEF44CA /* OHHTTPStubs.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E83F2DE61126944F1431E96D41FC2BC /* OHHTTPStubs.h */; settings = {ATTRIBUTES = (Public, ); }; };
9C460BA614D4B1D314A252C4C5CE1D87 /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = B855AB7F1A4C4097C1204C60EE474201 /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
9F70369EF71BD9ABAFF687AF532CC20D /* CwlMachBadInstructionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 55EA2DCEBF803D37011076E81EB89A58 /* CwlMachBadInstructionHandler.h */; settings = {ATTRIBUTES = (Public, ); }; };
A205E5FE1599A32AC27D72F550EAE84F /* QuickSpecBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 45707A4480EE9CAD251A699A682AE68C /* QuickSpecBase.m */; };
A36E722E97F456C32398D76A577CC8FB /* NSURLRequest+HTTPBodyTesting.m in Sources */ = {isa = PBXBuildFile; fileRef = F57CC4F5CE027CC4B2A6E8B8DB8C2C69 /* NSURLRequest+HTTPBodyTesting.m */; };
A559D43197103737084704684E8B40DA /* Local.swift in Sources */ = {isa = PBXBuildFile; fileRef = 492378DBC904C08C4C0991A62E3FB1F7 /* Local.swift */; };
A5E9844304C9F21B2886386EF2C0FE91 /* Pods-KZFileWatchers_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9540260142ED116EDB4AAA6FA3C126F2 /* Pods-KZFileWatchers_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A9996A6303084D17B9C439CB132A1F69 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCD0703F483D1252ED1F17E6EDC1FF16 /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
AD69407E2FA1D39A9E09248052F2D81B /* ExpectationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C239E8D2B947485A5741F6E65E9C730E /* ExpectationMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B2A65EEDB5D5EC246EA68E10964FF7B3 /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E16B7E20983619A6965BE981ABE86D8 /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B302667CF1F7A758EF92599C477962E9 /* QuickConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43CE11E189BA9E534625AA79FBEB855E /* QuickConfiguration.swift */; };
B4058A2AA8486E9879F113E6F67B9679 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73E9237274FF50484C134F86F02CE08A /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B6607A673440A83CE99361A08D82C734 /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8722D9F08AB7E505A329CD477FB885 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
B6CC23C6C288F4EB9EDD3A06F1F5F094 /* Predicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBAA91DA497DABAF472B979ADAE1D6EB /* Predicate.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B71070160CF07EFA99ED0445B0D191E7 /* Nimble-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D9729BF3915CA07F511281EDAE442F51 /* Nimble-dummy.m */; };
B7662703AF8D3FFFCB0070C50FEDCC58 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7410EDFD3CDF3BB5231AF034F85085E2 /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B79FC6E46F642C3FC74B3E6D9175B1AB /* SatisfyAllOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = B34AA5AC9B750EE435441F1CB5B0CE26 /* SatisfyAllOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B7E45C4365BE7112D6D4D84544D840B8 /* OHHTTPStubsResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = B65068D2FB99831A8C61B7A85B0EF1E4 /* OHHTTPStubsResponse.m */; };
B9BAD09DD8C4075B3EE2230D8E2E033C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5102C6091E8114B4E7BC26D83F6A630D /* Foundation.framework */; };
BCC838993C29682C5BAEBAEEE8374714 /* OHHTTPStubsSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A8F2F893934273F8A5FA35CBF46CFDF /* OHHTTPStubsSwift.swift */; };
BE8471A5CDE9E7A6C10E9044E4DEBCEC /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4F0905F6372BF28BF22D75143A5FB617 /* CFNetwork.framework */; };
C051C0411627BD5FCDA031782EB1F716 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EF8FC9BD66727BADFC8582BE115BF18 /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
C0C98C8C7D07E1598F20EE2F0539197D /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB53D7B66950AA163480DC67FCB325B /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C271B106D26C7852C5CE48CCCDAC15C8 /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 498C7E850F1B03331F907A26B43A816F /* ExampleGroup.swift */; };
C37AB03E7188A7AEEBA352A03E323345 /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C07CB739A2741310027F60023D469B8 /* QuickSelectedTestSuiteBuilder.swift */; };
C60C3ED1EDC2A1F16FFBE40563712276 /* NSURLRequest+HTTPBodyTesting.h in Headers */ = {isa = PBXBuildFile; fileRef = 428710F410D9759550489E3305FD70C1 /* NSURLRequest+HTTPBodyTesting.h */; settings = {ATTRIBUTES = (Public, ); }; };
C903AEFEEB4E73644A03FB8285543107 /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57C4B6BD9398A374AC976025F058E00B /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C979EEB0159A65246F6BD2C906A8ADB7 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C19100D062A37A25CC30256EB6C7AF /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C9804B63544FEDC2346DC4A752672ECD /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = B56E22CD9FB6A677BDDFF835BA557089 /* QCKDSL.m */; };
C99BBC3F70E056CB6A3CC0516318939D /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09D2D95432B197B1AE05FE8FD534DC17 /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
CA27256DC58202C86D5DE65F56FB4F19 /* OHPathHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BD35660BE07FCC630FED0A3AE3E6122 /* OHPathHelpers.h */; settings = {ATTRIBUTES = (Public, ); }; };
CD1AB65BA0770CC8ABD2F830A4A70C83 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B032F165E8B8852B0591E84D55FA6DE /* Filter.swift */; };
CD6B1F146B0E157FE5B9CAFFAE77A5B5 /* Nimble-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C2EE8AF543F66F1ACCE8989B09845E /* Nimble-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
CEE8D31A4E76BB7B350BF2A7175D4BC2 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 94496459194F4AD28FB7210794E39F11 /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
CF9218FF56D8EE43681150A3E1635C9A /* ToSucceed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 840D34FC3E31E1D97506843D844A49C8 /* ToSucceed.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D34D0540ADCBF163575B6B5444B1AAF6 /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0AC879D4A5BE7967881A2E75629261 /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D54C0CA8ABB0F9811EBAA92D6E10045B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5102C6091E8114B4E7BC26D83F6A630D /* Foundation.framework */; };
D9CFB8E5E354D7BE61D092259779F437 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1C02A3710593DB1F00A200D793FEF66 /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D9D6150D329A87CBB415FD349F0C50FD /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58271A8608C74B11B7F6B378AF407655 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
DB84342A0C0DEABBF7F729DE55225D82 /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E68CC2F3B61AD7EEBC49DB879549DB4 /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
DCD198D49C0A198A09525B7688EE3BC9 /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 932BA6FB61B16E56E202D7A7F42CAD59 /* Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
DED813943ABF7ACBD1C38B2D8024DA9C /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A9580B5D04B0279C75ADB216AEFC0C6 /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; };
DFAAEF3440DDBCA8719DD048DAE27FDF /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 7403B008540A2BD82A5119CB41B21B8A /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
E0EAC85F7ACFAD998B14FCE66144000E /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = C59361F4ACB127A8BF72B65325E34833 /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; };
E458AAE1AE9E2250F29806E5633B1860 /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB323C8858E89205CF58B8F0044E2E22 /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
E4D3413849CFA118036E980BB1EB85EF /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5DFE2637EA1DE65034A16A007ED1A3A /* NSBundle+CurrentTestBundle.swift */; };
E4D86D844A2A806F06A325A5B5A70296 /* Remote.swift in Sources */ = {isa = PBXBuildFile; fileRef = C21A69846B8CEEDDAD3C285A901B48A6 /* Remote.swift */; };
EC7EF3D5778783BD93EBC6F82016ADA9 /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4E1FF9382D80FF2BBE6948281FBBBFB /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
ECCA1FA570A912E8CDB54EB843F1D030 /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C9CEB93E63E67F01256941D75911119 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
EE157DBCE1F197BC50B908D77778B508 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 0106DF9228FC5A92B1657BD1FB55879B /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; };
F27A7DE93F66B0C12B4C646D99F5B9F4 /* CwlCatchException.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E6E083F2D6124913A4ADCD0BFE21334 /* CwlCatchException.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F310B21703A7BC438A09DDB96670583F /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = A24483F5EFB4FA68C9FDEAA939290E7C /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F42E00F96FA3C7D9F5FA5554A128C479 /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC9B49853742245F37E9F8E6BD9BD5EB /* QuickTestSuite.swift */; };
F4877B3857C780DCDB7F413A03F95600 /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5631C87DA15854A33F594613EB1391E7 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F78E35D04F09485FA5DFA72FE1AD5AB2 /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = DF4CF7843B6EC0FC5044A26FDB0AF587 /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F7A21FDE2DB02CCA800873A54BBA38F3 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4620FD8663B64CE89F7E94264B8A62B0 /* XCTest.framework */; };
F83CA1780F5D9C6432CE9D7248D9B35A /* Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = C4677BF2753993AFA8F72066A32FE39E /* Compatibility.h */; settings = {ATTRIBUTES = (Public, ); }; };
F9E85548BF1EF8C5035BAF92233C34B6 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0A3895806C3F368C32611FC790B8C8D /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
FBD83FEF1CE5B319531FB6E5FFB4F22C /* OHHTTPStubsResponse+JSON.m in Sources */ = {isa = PBXBuildFile; fileRef = F5D1D275F8BE2430C3978EDB54259D65 /* OHHTTPStubsResponse+JSON.m */; };
FF920E965F1CA016FF302DE8C92C5122 /* CwlBadInstructionException.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA6699156359FD914F45C72DA3950644 /* CwlBadInstructionException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
FFB20EE60273038323880E0E31C78056 /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F6079F2A760BA2859E0325A5D214097 /* ExampleHooks.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
38359247A10F8CD879ECED28D028838A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = A983A2D06C5B6AA3D6ABA5CCC0A16725;
remoteInfo = OHHTTPStubs;
};
4E232092EA75E3401295B3DA0C3126D8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 6F13695E06195A78EA8A95F8C7ED0D2F;
remoteInfo = Nimble;
};
747ACECE7FD1E6F2E89A5EAFB5489D6B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = D7E1E9D93D086F66302FAAF7A2B354C6;
remoteInfo = "Pods-KZFileWatchers_Example";
};
7F9D33C32D18B7D3D22E28602FFBB948 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = C82891EAB7293DBEE916B21F57E8474D;
remoteInfo = Quick;
};
D2350F50FA1FE280DB9262A4AA61F976 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 471EC512D75B1827859B4F07F430F65F;
remoteInfo = KZFileWatchers;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0106DF9228FC5A92B1657BD1FB55879B /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Sources/QuickObjectiveC/QuickSpec.h; sourceTree = "<group>"; };
0118F81089F9ECE19459981E4A3AAE84 /* Nimble.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Nimble.release.xcconfig; sourceTree = "<group>"; };
01F84E761B98B4E7A41C72D170CE12B1 /* OHHTTPStubs+NSURLSessionConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OHHTTPStubs+NSURLSessionConfiguration.m"; path = "OHHTTPStubs/Sources/NSURLSession/OHHTTPStubs+NSURLSessionConfiguration.m"; sourceTree = "<group>"; };
022ACD32E33469CB4FD6AC5168DF9BD3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; };
033331B23D82766B5AC18E639725D84B /* Pods-KZFileWatchers_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-KZFileWatchers_Example.modulemap"; sourceTree = "<group>"; };
09D2D95432B197B1AE05FE8FD534DC17 /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Sources/Nimble/Adapters/AssertionDispatcher.swift; sourceTree = "<group>"; };
0B18C5BE99DF01B2F11DD832CF106719 /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Sources/Nimble/Matchers/BeIdenticalTo.swift; sourceTree = "<group>"; };
0C07CB739A2741310027F60023D469B8 /* QuickSelectedTestSuiteBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickSelectedTestSuiteBuilder.swift; path = Sources/Quick/QuickSelectedTestSuiteBuilder.swift; sourceTree = "<group>"; };
0C2F271B331F5F6088153DF3D7CABEA8 /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Sources/Nimble/Matchers/EndWith.swift; sourceTree = "<group>"; };
0D631E9908483F9525A6B3F36F16CC61 /* Quick.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Quick.framework; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0D64EF1FE66DD5FE651F03EE88D93884 /* Await.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Await.swift; path = Sources/Nimble/Utils/Await.swift; sourceTree = "<group>"; };
0D85EC25D76C0E6518AC50422991089A /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Sources/QuickObjectiveC/QuickSpec.m; sourceTree = "<group>"; };
0DA702D90641179195155E3FC284597F /* Quick.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.debug.xcconfig; sourceTree = "<group>"; };
13AF810E313528046E3A87A0F44F3D0A /* Pods-KZFileWatchers_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-KZFileWatchers_Tests-Info.plist"; sourceTree = "<group>"; };
17D24121DC8BFC6F27A134A5EA868350 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Sources/Quick/ExampleMetadata.swift; sourceTree = "<group>"; };
17E33041B314FA837A3CAEB9DF3CDE9F /* OHHTTPStubs.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = OHHTTPStubs.framework; path = OHHTTPStubs.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1824505E8ADC548ADC6518F2D403D1C0 /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Sources/Nimble/Matchers/MatcherProtocols.swift; sourceTree = "<group>"; };
184EE06984DA105847555AB7E90720B9 /* ErrorUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErrorUtility.swift; path = Sources/Quick/ErrorUtility.swift; sourceTree = "<group>"; };
1A1788C164A9BFDD181261910BDFB1CE /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Sources/Nimble/Matchers/BeGreaterThan.swift; sourceTree = "<group>"; };
1E68CC2F3B61AD7EEBC49DB879549DB4 /* XCTestObservationCenter+Register.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestObservationCenter+Register.m"; path = "Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m"; sourceTree = "<group>"; };
1FB4F711056A926B702466AD197D3779 /* Quick.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Quick.modulemap; sourceTree = "<group>"; };
2183850B0351C1E42DE2B0D1AF87F20D /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Quick/DSL/DSL.swift; sourceTree = "<group>"; };
22EC31E855E64F4D1BB41C1574A9CFE5 /* Common.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Common.swift; path = KZFileWatchers/Classes/Common.swift; sourceTree = "<group>"; };
2470E8CED679445A52928AAD5D8F6428 /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Sources/Quick/Example.swift; sourceTree = "<group>"; };
283B3108FA95C3EAA74A78FFF1B9291B /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Sources/Nimble/Matchers/AllPass.swift; sourceTree = "<group>"; };
2A8722D9F08AB7E505A329CD477FB885 /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Sources/QuickObjectiveC/DSL/QCKDSL.h; sourceTree = "<group>"; };
2A8F2F893934273F8A5FA35CBF46CFDF /* OHHTTPStubsSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OHHTTPStubsSwift.swift; path = OHHTTPStubs/Sources/Swift/OHHTTPStubsSwift.swift; sourceTree = "<group>"; };
2BAAE86CCB50323E0AC13DD2CC867848 /* Pods-KZFileWatchers_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-KZFileWatchers_Example-frameworks.sh"; sourceTree = "<group>"; };
2CDB9F326ACA01DCE272B1ED12CBD711 /* Quick-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-prefix.pch"; sourceTree = "<group>"; };
2E83F2DE61126944F1431E96D41FC2BC /* OHHTTPStubs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OHHTTPStubs.h; path = OHHTTPStubs/Sources/OHHTTPStubs.h; sourceTree = "<group>"; };
2EB942BED478D2AF228A6F77B2E5D739 /* OHHTTPStubsMethodSwizzling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OHHTTPStubsMethodSwizzling.h; path = OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.h; sourceTree = "<group>"; };
2F0363CDCCE3B0BC79461F0C04BF9380 /* CwlCatchException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchException.h; path = Carthage/Checkouts/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h; sourceTree = "<group>"; };
2F58E427ECA84A6C5C9BA69030D0B1C5 /* URL+FileName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+FileName.swift"; path = "Sources/Quick/URL+FileName.swift"; sourceTree = "<group>"; };
3020D545E47DB5F838519E3BE0332F90 /* Pods_KZFileWatchers_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_KZFileWatchers_Tests.framework; path = "Pods-KZFileWatchers_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
38C19100D062A37A25CC30256EB6C7AF /* BeVoid.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeVoid.swift; path = Sources/Nimble/Matchers/BeVoid.swift; sourceTree = "<group>"; };
39E4E7616EEB4F7F264FD2B88DD936C4 /* CwlCatchBadInstruction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstruction.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift; sourceTree = "<group>"; };
3B032F165E8B8852B0591E84D55FA6DE /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Quick/Filter.swift; sourceTree = "<group>"; };
3C9CEB93E63E67F01256941D75911119 /* NimbleEnvironment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleEnvironment.swift; path = Sources/Nimble/Adapters/NimbleEnvironment.swift; sourceTree = "<group>"; };
3E6E083F2D6124913A4ADCD0BFE21334 /* CwlCatchException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchException.m; path = Carthage/Checkouts/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m; sourceTree = "<group>"; };
3F9A494F9B18E1B8D43E55F7732BBC02 /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Sources/Quick/Callsite.swift; sourceTree = "<group>"; };
40E516713DC93E9F7BEAB77EE1E09256 /* mach_excServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mach_excServer.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.h; sourceTree = "<group>"; };
417E09F45F806A28BB9F28F317706865 /* Pods-KZFileWatchers_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-KZFileWatchers_Tests-frameworks.sh"; sourceTree = "<group>"; };
428710F410D9759550489E3305FD70C1 /* NSURLRequest+HTTPBodyTesting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLRequest+HTTPBodyTesting.h"; path = "OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.h"; sourceTree = "<group>"; };
43CE11E189BA9E534625AA79FBEB855E /* QuickConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickConfiguration.swift; path = Sources/Quick/Configuration/QuickConfiguration.swift; sourceTree = "<group>"; };
4466AECB8E56E91F855661F22B8E24D2 /* Pods-KZFileWatchers_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-KZFileWatchers_Tests.modulemap"; sourceTree = "<group>"; };
45049F1BBA2CEB4D25DA949A6E0724B7 /* QuickSpecBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpecBase.h; path = Sources/QuickSpecBase/include/QuickSpecBase.h; sourceTree = "<group>"; };
45707A4480EE9CAD251A699A682AE68C /* QuickSpecBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpecBase.m; path = Sources/QuickSpecBase/QuickSpecBase.m; sourceTree = "<group>"; };
457E3828E2674B97B71037EEB9EF3C29 /* Nimble.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Nimble.debug.xcconfig; sourceTree = "<group>"; };
45DD3BC5F8729EEC69C0375FB6677CC1 /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Wait.swift"; path = "Sources/Nimble/DSL+Wait.swift"; sourceTree = "<group>"; };
4620FD8663B64CE89F7E94264B8A62B0 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
46EF1EF4FCBDD20530D2D61127059FA2 /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = "<group>"; };
4761FEA5DD2D25770DE09DA139ABF5F2 /* Pods-KZFileWatchers_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-KZFileWatchers_Tests.debug.xcconfig"; sourceTree = "<group>"; };
48DE83FE282865474B03179913B47835 /* XCTestSuite+QuickTestSuiteBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestSuite+QuickTestSuiteBuilder.m"; path = "Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m"; sourceTree = "<group>"; };
492378DBC904C08C4C0991A62E3FB1F7 /* Local.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Local.swift; sourceTree = "<group>"; };
498C7E850F1B03331F907A26B43A816F /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Sources/Quick/ExampleGroup.swift; sourceTree = "<group>"; };
4A9580B5D04B0279C75ADB216AEFC0C6 /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Sources/QuickObjectiveC/Quick.h; sourceTree = "<group>"; };
4E3E63D95C3278939274EABD79EE2A50 /* OHHTTPStubsResponse+JSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "OHHTTPStubsResponse+JSON.h"; path = "OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.h"; sourceTree = "<group>"; };
4EF8FC9BD66727BADFC8582BE115BF18 /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Sources/NimbleObjectiveC/DSL.h; sourceTree = "<group>"; };
4F0905F6372BF28BF22D75143A5FB617 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; };
4F444CB395ACBB10517F218AC465C679 /* Quick.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.release.xcconfig; sourceTree = "<group>"; };
4F4D28F6D6589824BA8A77019E78B098 /* MatcherFunc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherFunc.swift; path = Sources/Nimble/Matchers/MatcherFunc.swift; sourceTree = "<group>"; };
4F5CF7C32298D37DF1EDE8AF6CB37A72 /* KZFileWatchers-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KZFileWatchers-umbrella.h"; sourceTree = "<group>"; };
5102C6091E8114B4E7BC26D83F6A630D /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
510DAEB833A1C5680C2F05D8CB399D99 /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Sources/NimbleObjectiveC/NMBExceptionCapture.h; sourceTree = "<group>"; };
515763EB5229E373CEC58A50CE790D56 /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Sources/Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = "<group>"; };
55EA2DCEBF803D37011076E81EB89A58 /* CwlMachBadInstructionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlMachBadInstructionHandler.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h; sourceTree = "<group>"; };
5631C87DA15854A33F594613EB1391E7 /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Sources/Nimble/Matchers/BeCloseTo.swift; sourceTree = "<group>"; };
57C4B6BD9398A374AC976025F058E00B /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Sources/Nimble/Matchers/BeEmpty.swift; sourceTree = "<group>"; };
58271A8608C74B11B7F6B378AF407655 /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Sources/Nimble/Utils/SourceLocation.swift; sourceTree = "<group>"; };
5B1544330DF2AACEAAFE07488389E201 /* Pods-KZFileWatchers_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-KZFileWatchers_Example-acknowledgements.plist"; sourceTree = "<group>"; };
6409232DFECB9E2BFFF1D44165E01733 /* ThrowAssertion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowAssertion.swift; path = Sources/Nimble/Matchers/ThrowAssertion.swift; sourceTree = "<group>"; };
64FEE49831977D89EC452FF520534B49 /* Pods-KZFileWatchers_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-KZFileWatchers_Tests-dummy.m"; sourceTree = "<group>"; };
681D04B4A8091224E4D21B0D0AF0A7D0 /* Nimble-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Nimble-Info.plist"; sourceTree = "<group>"; };
68F0681635676017418472A82CF71C31 /* Pods-KZFileWatchers_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-KZFileWatchers_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
6B91F0A0C54A92FB20223442D8A327EB /* KZFileWatchers.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KZFileWatchers.release.xcconfig; sourceTree = "<group>"; };
6E727847D9D062BB442FACED09AD23DE /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Sources/Quick/Hooks/SuiteHooks.swift; sourceTree = "<group>"; };
6F6079F2A760BA2859E0325A5D214097 /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Sources/Quick/Hooks/ExampleHooks.swift; sourceTree = "<group>"; };
70F1F0105E9A30D97355C5B5A2E8D57A /* Pods-KZFileWatchers_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-KZFileWatchers_Example-umbrella.h"; sourceTree = "<group>"; };
70FFDAD75DA90B93F5CCDB73FC153074 /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Sources/Nimble/FailureMessage.swift; sourceTree = "<group>"; };
716A465E0CB151E14466B130D973D483 /* CwlPreconditionTesting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlPreconditionTesting.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/include/CwlPreconditionTesting.h; sourceTree = "<group>"; };
73048F68DF0D41B51C260BB3E02E724D /* KZFileWatchers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = KZFileWatchers.framework; path = KZFileWatchers.framework; sourceTree = BUILT_PRODUCTS_DIR; };
73E9237274FF50484C134F86F02CE08A /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Sources/Nimble/Adapters/AdapterProtocols.swift; sourceTree = "<group>"; };
7403B008540A2BD82A5119CB41B21B8A /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.h; sourceTree = "<group>"; };
7410EDFD3CDF3BB5231AF034F85085E2 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/Nimble/Utils/Errors.swift; sourceTree = "<group>"; };
74229C1C2B8EA99E92BE12D01EF6831C /* HooksPhase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HooksPhase.swift; path = Sources/Quick/Hooks/HooksPhase.swift; sourceTree = "<group>"; };
749D5F6C2F90DF1CA04166FB2354D793 /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.m; sourceTree = "<group>"; };
7AE2BE55DC254869AF1FFB3BC2413504 /* Pods-KZFileWatchers_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-KZFileWatchers_Tests.release.xcconfig"; sourceTree = "<group>"; };
7BD35660BE07FCC630FED0A3AE3E6122 /* OHPathHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OHPathHelpers.h; path = OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.h; sourceTree = "<group>"; };
7D453A0C60962DF8C5DFB60C8657D6A7 /* OHHTTPStubs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OHHTTPStubs.m; path = OHHTTPStubs/Sources/OHHTTPStubs.m; sourceTree = "<group>"; };
80754B2039A13B1C89B1AC7807C6EC4A /* Quick-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Quick-Info.plist"; sourceTree = "<group>"; };
81B34999F6151BE236250F63257C9B61 /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Sources/Nimble/Matchers/BeLogical.swift; sourceTree = "<group>"; };
826226E9EE243A2722E44E1340865790 /* Pods-KZFileWatchers_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-KZFileWatchers_Example.release.xcconfig"; sourceTree = "<group>"; };
8335EA5541F230F9342EEB2CFF37A2CA /* OHHTTPStubsResponse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OHHTTPStubsResponse.h; path = OHHTTPStubs/Sources/OHHTTPStubsResponse.h; sourceTree = "<group>"; };
83844CDEAC9B435455826D218E804D27 /* CwlMachBadInstructionHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlMachBadInstructionHandler.m; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m; sourceTree = "<group>"; };
840D34FC3E31E1D97506843D844A49C8 /* ToSucceed.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToSucceed.swift; path = Sources/Nimble/Matchers/ToSucceed.swift; sourceTree = "<group>"; };
85FFE57108F9B1C423CEE9A6353CEE76 /* ContainElementSatisfying.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContainElementSatisfying.swift; path = Sources/Nimble/Matchers/ContainElementSatisfying.swift; sourceTree = "<group>"; };
871AC1E3EFE6969E45BBD0ABF0C8ABDE /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Sources/Nimble/Expectation.swift; sourceTree = "<group>"; };
8789676C3E8F0FB008645F61EFB2AF50 /* OHHTTPStubsMethodSwizzling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OHHTTPStubsMethodSwizzling.m; path = OHHTTPStubs/Sources/NSURLSession/OHHTTPStubsMethodSwizzling.m; sourceTree = "<group>"; };
8CAF8F73D395E3C3FD141658356590D6 /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Sources/Quick/DSL/World+DSL.swift"; sourceTree = "<group>"; };
8E16B7E20983619A6965BE981ABE86D8 /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Sources/Nimble/Matchers/ThrowError.swift; sourceTree = "<group>"; };
9131AA0918F61FE6287E2F27DF32F331 /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Sources/Nimble/Matchers/Match.swift; sourceTree = "<group>"; };
91B7DEBBD6B224297E8528E57878AFF1 /* OHHTTPStubs.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OHHTTPStubs.release.xcconfig; sourceTree = "<group>"; };
932BA6FB61B16E56E202D7A7F42CAD59 /* Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Async.swift; path = Sources/Nimble/Matchers/Async.swift; sourceTree = "<group>"; };
9414468CC8456339CC2F98E0066C822C /* ElementsEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementsEqual.swift; path = Sources/Nimble/Matchers/ElementsEqual.swift; sourceTree = "<group>"; };
94496459194F4AD28FB7210794E39F11 /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Sources/NimbleObjectiveC/NMBExceptionCapture.m; sourceTree = "<group>"; };
9540260142ED116EDB4AAA6FA3C126F2 /* Pods-KZFileWatchers_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-KZFileWatchers_Tests-umbrella.h"; sourceTree = "<group>"; };
96C2EE8AF543F66F1ACCE8989B09845E /* Nimble-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-umbrella.h"; sourceTree = "<group>"; };
978E44626EBF0068FF4321024F34C213 /* NMBObjCMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBObjCMatcher.swift; path = Sources/Nimble/Adapters/NMBObjCMatcher.swift; sourceTree = "<group>"; };
97A6FE787336F1B610297D8F41E537F5 /* KZFileWatchers.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KZFileWatchers.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
97DC93E3D21B0475C8B88C8622778E8A /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Sources/Nimble/Matchers/BeLessThan.swift; sourceTree = "<group>"; };
9C095C52338764DBC665DD208ED5B595 /* KZFileWatchers.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = KZFileWatchers.modulemap; sourceTree = "<group>"; };
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
9E283BD733C2BCB54E984ED1A4213AFB /* KZFileWatchers-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KZFileWatchers-prefix.pch"; sourceTree = "<group>"; };
9F173488E424D921113A174BC9D914F6 /* OHPathHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OHPathHelpers.m; path = OHHTTPStubs/Sources/OHPathHelpers/OHPathHelpers.m; sourceTree = "<group>"; };
A18809EDF74F93AAD07BB974D7040382 /* Behavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Behavior.swift; path = Sources/Quick/Behavior.swift; sourceTree = "<group>"; };
A24483F5EFB4FA68C9FDEAA939290E7C /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Sources/Nimble/Adapters/AssertionRecorder.swift; sourceTree = "<group>"; };
A3E569367E525604D125BAC8AAA5CDA6 /* PostNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PostNotification.swift; path = Sources/Nimble/Matchers/PostNotification.swift; sourceTree = "<group>"; };
A4E41B681314B0E53D68FB9584566877 /* CwlCatchException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchException.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Dependencies/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift; sourceTree = "<group>"; };
A9673F1E893FA8E198A967B5DC575CC2 /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Sources/Nimble/Matchers/HaveCount.swift; sourceTree = "<group>"; };
AEAAC23D095AEB693B0E5976EE4A68CE /* OHHTTPStubs-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OHHTTPStubs-dummy.m"; sourceTree = "<group>"; };
AEDEA881448CE1614CEF5B455702DFCF /* Functional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Functional.swift; path = Sources/Nimble/Utils/Functional.swift; sourceTree = "<group>"; };
AF0512E36BF85E2834825888F2CC88AD /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Sources/NimbleObjectiveC/DSL.m; sourceTree = "<group>"; };
B34AA5AC9B750EE435441F1CB5B0CE26 /* SatisfyAllOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAllOf.swift; path = Sources/Nimble/Matchers/SatisfyAllOf.swift; sourceTree = "<group>"; };
B3D61757C34D70847EC9FC41082A974E /* OHHTTPStubs.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OHHTTPStubs.debug.xcconfig; sourceTree = "<group>"; };
B4E1FF9382D80FF2BBE6948281FBBBFB /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Sources/Nimble/Matchers/BeNil.swift; sourceTree = "<group>"; };
B53F52EC5646831625972FF4C6B00DDD /* KZFileWatchers-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KZFileWatchers-dummy.m"; sourceTree = "<group>"; };
B56E22CD9FB6A677BDDFF835BA557089 /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Sources/QuickObjectiveC/DSL/QCKDSL.m; sourceTree = "<group>"; };
B65068D2FB99831A8C61B7A85B0EF1E4 /* OHHTTPStubsResponse.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OHHTTPStubsResponse.m; path = OHHTTPStubs/Sources/OHHTTPStubsResponse.m; sourceTree = "<group>"; };
B855AB7F1A4C4097C1204C60EE474201 /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Sources/Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = "<group>"; };
B9EBBF191D5932E928483F5227D557BB /* Pods-KZFileWatchers_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-KZFileWatchers_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
BA9065950159BE69311C316316A0DFD0 /* SatisfyAnyOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAnyOf.swift; path = Sources/Nimble/Matchers/SatisfyAnyOf.swift; sourceTree = "<group>"; };
BAE263041362D074978BB3B577DF0A05 /* Nimble.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Nimble.framework; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BB323C8858E89205CF58B8F0044E2E22 /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Sources/Nimble/Expression.swift; sourceTree = "<group>"; };
BC9B49853742245F37E9F8E6BD9BD5EB /* QuickTestSuite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestSuite.swift; path = Sources/Quick/QuickTestSuite.swift; sourceTree = "<group>"; };
BCDFF4ECBA69F172B702C4B7BAC0B554 /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Sources/Nimble/Matchers/BeginWith.swift; sourceTree = "<group>"; };
BCF483219145693126D1E7BF7D60B5BE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; };
BDB53D7B66950AA163480DC67FCB325B /* NMBExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBExpectation.swift; path = Sources/Nimble/Adapters/NMBExpectation.swift; sourceTree = "<group>"; };
C004110BF333E198EDD1FB962BE86072 /* MatchError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatchError.swift; path = Sources/Nimble/Matchers/MatchError.swift; sourceTree = "<group>"; };
C10026EBBDC5921994D532165056F13C /* CwlDarwinDefinitions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlDarwinDefinitions.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift; sourceTree = "<group>"; };
C1FAF8B93C615633BB88F0F8C0F60E82 /* OHHTTPStubs.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = OHHTTPStubs.modulemap; sourceTree = "<group>"; };
C21A69846B8CEEDDAD3C285A901B48A6 /* Remote.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Remote.swift; sourceTree = "<group>"; };
C239E8D2B947485A5741F6E65E9C730E /* ExpectationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpectationMessage.swift; path = Sources/Nimble/ExpectationMessage.swift; sourceTree = "<group>"; };
C3A2BAA5ED02E377B92A7231A1A08FB0 /* Pods-KZFileWatchers_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-KZFileWatchers_Example.debug.xcconfig"; sourceTree = "<group>"; };
C4677BF2753993AFA8F72066A32FE39E /* Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compatibility.h; path = OHHTTPStubs/Sources/Compatibility.h; sourceTree = "<group>"; };
C59361F4ACB127A8BF72B65325E34833 /* NMBStringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBStringify.h; path = Sources/NimbleObjectiveC/NMBStringify.h; sourceTree = "<group>"; };
C9EAA3C82889896769CFD053E8751AB1 /* Pods_KZFileWatchers_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_KZFileWatchers_Example.framework; path = "Pods-KZFileWatchers_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
CCB77D8989353041B2A953931EB3E59A /* Nimble-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-prefix.pch"; sourceTree = "<group>"; };
CCD0703F483D1252ED1F17E6EDC1FF16 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Nimble/DSL.swift; sourceTree = "<group>"; };
CE8B303D953E7165483372F69397BECA /* Pods-KZFileWatchers_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-KZFileWatchers_Example-Info.plist"; sourceTree = "<group>"; };
D0A3895806C3F368C32611FC790B8C8D /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Sources/Nimble/Matchers/RaisesException.swift; sourceTree = "<group>"; };
D1833CDD829E4755C5C7CA9FCC0282C8 /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Sources/Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = "<group>"; };
D1CA6E777E4C2B988CAFB712FF9D8080 /* OHHTTPStubs-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OHHTTPStubs-umbrella.h"; sourceTree = "<group>"; };
D9729BF3915CA07F511281EDAE442F51 /* Nimble-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-dummy.m"; sourceTree = "<group>"; };
DA433C029740895C663DB759419C9FA6 /* Pods-KZFileWatchers_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-KZFileWatchers_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
DCC143BB7B00FB654910C91182B418C3 /* KZFileWatchers-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "KZFileWatchers-Info.plist"; sourceTree = "<group>"; };
DD0AC879D4A5BE7967881A2E75629261 /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Sources/Nimble/Matchers/Contain.swift; sourceTree = "<group>"; };
DD5A88106040503B5D78ADDD3CA01A77 /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Sources/Nimble/Matchers/BeAKindOf.swift; sourceTree = "<group>"; };
DF4CF7843B6EC0FC5044A26FDB0AF587 /* NMBStringify.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBStringify.m; path = Sources/NimbleObjectiveC/NMBStringify.m; sourceTree = "<group>"; };
E1C02A3710593DB1F00A200D793FEF66 /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Sources/Nimble/Matchers/Equal.swift; sourceTree = "<group>"; };
E2C5EF1849B7A78A4082C9229A6AB782 /* Quick-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Quick-dummy.m"; sourceTree = "<group>"; };
EBAA91DA497DABAF472B979ADAE1D6EB /* Predicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Predicate.swift; path = Sources/Nimble/Matchers/Predicate.swift; sourceTree = "<group>"; };
EC32B8EE4C81A25F9CDDA38A3C1C39F4 /* mach_excServer.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mach_excServer.c; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c; sourceTree = "<group>"; };
ED572C1A47EAE3F6890D5FA6B4F05D34 /* Quick-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-umbrella.h"; sourceTree = "<group>"; };
F01DD9A63DB069526B970A1797833424 /* OHHTTPStubs-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OHHTTPStubs-prefix.pch"; sourceTree = "<group>"; };
F1E6B6B6758ECBB2A9476E943F7D233D /* OHHTTPStubs-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "OHHTTPStubs-Info.plist"; sourceTree = "<group>"; };
F37DDDF2117C65236554D47A9547A3A1 /* String+C99ExtendedIdentifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+C99ExtendedIdentifier.swift"; path = "Sources/Quick/String+C99ExtendedIdentifier.swift"; sourceTree = "<group>"; };
F3DDFA3E750F1CA39A30BF2AB85F3132 /* Pods-KZFileWatchers_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-KZFileWatchers_Example-dummy.m"; sourceTree = "<group>"; };
F4B2B58D8206E3F67A0F89EE1239BE33 /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Sources/Nimble/Nimble.h; sourceTree = "<group>"; };
F52DB45B418407857EA05F27132BD0FD /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Sources/Quick/Configuration/Configuration.swift; sourceTree = "<group>"; };
F57CC4F5CE027CC4B2A6E8B8DB8C2C69 /* NSURLRequest+HTTPBodyTesting.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLRequest+HTTPBodyTesting.m"; path = "OHHTTPStubs/Sources/NSURLSession/NSURLRequest+HTTPBodyTesting.m"; sourceTree = "<group>"; };
F5D1D275F8BE2430C3978EDB54259D65 /* OHHTTPStubsResponse+JSON.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "OHHTTPStubsResponse+JSON.m"; path = "OHHTTPStubs/Sources/JSON/OHHTTPStubsResponse+JSON.m"; sourceTree = "<group>"; };
F5DFE2637EA1DE65034A16A007ED1A3A /* NSBundle+CurrentTestBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSBundle+CurrentTestBundle.swift"; path = "Sources/Quick/NSBundle+CurrentTestBundle.swift"; sourceTree = "<group>"; };
F68C517CFE9BF46A005B9AD8F96D27CC /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Sources/Nimble/Utils/Stringers.swift; sourceTree = "<group>"; };
FA6699156359FD914F45C72DA3950644 /* CwlBadInstructionException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlBadInstructionException.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift; sourceTree = "<group>"; };
FD332317D319610F358125FD5CA1A9EB /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Sources/Quick/Hooks/Closures.swift; sourceTree = "<group>"; };
FDB3AC6E8013FB03900FC49BFCFF5E5B /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Sources/Quick/World.swift; sourceTree = "<group>"; };
FE06DA7A888BFB24269506334E8C8FB1 /* Nimble.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Nimble.modulemap; sourceTree = "<group>"; };
FFF3EF5020286E2EB5389B69EBFD7B20 /* KZFileWatchers.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KZFileWatchers.debug.xcconfig; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
0B8AE404673E2EBB324F285A600856F9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D54C0CA8ABB0F9811EBAA92D6E10045B /* Foundation.framework in Frameworks */,
F7A21FDE2DB02CCA800873A54BBA38F3 /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
0F93B25E5E15C82AAF65457D25963800 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5CAFF11E9522A44ADB603FD3EE9ADB10 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
44B0EA3537E6FCC57B0A442579FBB1F4 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8582F2C9F87F4C529250F1AE8769CC0A /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
55C81EE76C6A69F1F69792A679310C68 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
02EDE6F260E8E95CAC741342606CBE65 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
5CE63E52033B9EB192CC73B2CB7700E8 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
BE8471A5CDE9E7A6C10E9044E4DEBCEC /* CFNetwork.framework in Frameworks */,
979FA0DBF4A09572B0B55C141252527D /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E17D6620FD783464FBED5579B4F7412A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B9BAD09DD8C4075B3EE2230D8E2E033C /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
03C5C200A0787E300053CFA8F53CA094 /* Frameworks */ = {
isa = PBXGroup;
children = (
90F6A2529D4DF0BC9156E54DB310FD3F /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
0AEB50D9E70CCE23D67B5A92021C37DD /* Support Files */ = {
isa = PBXGroup;
children = (
1FB4F711056A926B702466AD197D3779 /* Quick.modulemap */,
E2C5EF1849B7A78A4082C9229A6AB782 /* Quick-dummy.m */,
80754B2039A13B1C89B1AC7807C6EC4A /* Quick-Info.plist */,
2CDB9F326ACA01DCE272B1ED12CBD711 /* Quick-prefix.pch */,
ED572C1A47EAE3F6890D5FA6B4F05D34 /* Quick-umbrella.h */,
0DA702D90641179195155E3FC284597F /* Quick.debug.xcconfig */,
4F444CB395ACBB10517F218AC465C679 /* Quick.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/Quick";
sourceTree = "<group>";
};
1C53C1BD9C9CF2ECC55A3E3F4F1FB99D /* Targets Support Files */ = {
isa = PBXGroup;
children = (
960D49D3045DA0EE57CD01AAFC89F6EE /* Pods-KZFileWatchers_Example */,
CAFBFF335A9D5B2BC5C9EB789C5DCC8A /* Pods-KZFileWatchers_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
25A673DB9FBE47AD4665301D68A054FD /* Quick */ = {
isa = PBXGroup;
children = (
A18809EDF74F93AAD07BB974D7040382 /* Behavior.swift */,
3F9A494F9B18E1B8D43E55F7732BBC02 /* Callsite.swift */,
FD332317D319610F358125FD5CA1A9EB /* Closures.swift */,
F52DB45B418407857EA05F27132BD0FD /* Configuration.swift */,
2183850B0351C1E42DE2B0D1AF87F20D /* DSL.swift */,
184EE06984DA105847555AB7E90720B9 /* ErrorUtility.swift */,
2470E8CED679445A52928AAD5D8F6428 /* Example.swift */,
498C7E850F1B03331F907A26B43A816F /* ExampleGroup.swift */,
6F6079F2A760BA2859E0325A5D214097 /* ExampleHooks.swift */,
17D24121DC8BFC6F27A134A5EA868350 /* ExampleMetadata.swift */,
3B032F165E8B8852B0591E84D55FA6DE /* Filter.swift */,
74229C1C2B8EA99E92BE12D01EF6831C /* HooksPhase.swift */,
F5DFE2637EA1DE65034A16A007ED1A3A /* NSBundle+CurrentTestBundle.swift */,
2A8722D9F08AB7E505A329CD477FB885 /* QCKDSL.h */,
B56E22CD9FB6A677BDDFF835BA557089 /* QCKDSL.m */,
4A9580B5D04B0279C75ADB216AEFC0C6 /* Quick.h */,
7403B008540A2BD82A5119CB41B21B8A /* QuickConfiguration.h */,
749D5F6C2F90DF1CA04166FB2354D793 /* QuickConfiguration.m */,
43CE11E189BA9E534625AA79FBEB855E /* QuickConfiguration.swift */,
0C07CB739A2741310027F60023D469B8 /* QuickSelectedTestSuiteBuilder.swift */,
0106DF9228FC5A92B1657BD1FB55879B /* QuickSpec.h */,
0D85EC25D76C0E6518AC50422991089A /* QuickSpec.m */,
45049F1BBA2CEB4D25DA949A6E0724B7 /* QuickSpecBase.h */,
45707A4480EE9CAD251A699A682AE68C /* QuickSpecBase.m */,
BC9B49853742245F37E9F8E6BD9BD5EB /* QuickTestSuite.swift */,
F37DDDF2117C65236554D47A9547A3A1 /* String+C99ExtendedIdentifier.swift */,
6E727847D9D062BB442FACED09AD23DE /* SuiteHooks.swift */,
2F58E427ECA84A6C5C9BA69030D0B1C5 /* URL+FileName.swift */,
FDB3AC6E8013FB03900FC49BFCFF5E5B /* World.swift */,
8CAF8F73D395E3C3FD141658356590D6 /* World+DSL.swift */,
48DE83FE282865474B03179913B47835 /* XCTestSuite+QuickTestSuiteBuilder.m */,
0AEB50D9E70CCE23D67B5A92021C37DD /* Support Files */,
);
name = Quick;
path = Quick;
sourceTree = "<group>";
};
2EA61047052380EAC8F7139AF550D16C /* Swift */ = {
isa = PBXGroup;
children = (
2A8F2F893934273F8A5FA35CBF46CFDF /* OHHTTPStubsSwift.swift */,
);
name = Swift;
sourceTree = "<group>";
};
30D3EBB96860B70AF842D30C3DAE8066 /* Support Files */ = {
isa = PBXGroup;
children = (
C1FAF8B93C615633BB88F0F8C0F60E82 /* OHHTTPStubs.modulemap */,
AEAAC23D095AEB693B0E5976EE4A68CE /* OHHTTPStubs-dummy.m */,
F1E6B6B6758ECBB2A9476E943F7D233D /* OHHTTPStubs-Info.plist */,
F01DD9A63DB069526B970A1797833424 /* OHHTTPStubs-prefix.pch */,
D1CA6E777E4C2B988CAFB712FF9D8080 /* OHHTTPStubs-umbrella.h */,
B3D61757C34D70847EC9FC41082A974E /* OHHTTPStubs.debug.xcconfig */,
91B7DEBBD6B224297E8528E57878AFF1 /* OHHTTPStubs.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/OHHTTPStubs";
sourceTree = "<group>";
};
4500AFC1A2F1B90BCBA673C3E5E8922F /* KZFileWatchers */ = {
isa = PBXGroup;
children = (
22EC31E855E64F4D1BB41C1574A9CFE5 /* Common.swift */,
4CC2081A731F83B5DD2DBE22B24E1BE8 /* Local */,
67AC86FDE0F7A8347B5F465EEF5F1D2C /* Pod */,
7EBFDF9430B17A76AA08676D7716CFD5 /* Remote */,
D0396EDA647BFE6363169D4F3149891A /* Support Files */,
);
name = KZFileWatchers;
path = ../..;
sourceTree = "<group>";
};
4CC2081A731F83B5DD2DBE22B24E1BE8 /* Local */ = {
isa = PBXGroup;
children = (
492378DBC904C08C4C0991A62E3FB1F7 /* Local.swift */,
);
name = Local;
path = KZFileWatchers/Classes/Local;
sourceTree = "<group>";
};
4CC72F6ECB53DBA6CD23CCB5180405DD /* Pods */ = {
isa = PBXGroup;
children = (
549532BF7B96761FB244A9ABF0FAB7F5 /* Nimble */,
CDA52ECB61E9CF9382D93B7B1BD13AD8 /* OHHTTPStubs */,
25A673DB9FBE47AD4665301D68A054FD /* Quick */,
);
name = Pods;
sourceTree = "<group>";
};
5123E920E951CD8C98DBD3621A55D082 /* OHPathHelpers */ = {
isa = PBXGroup;
children = (
7BD35660BE07FCC630FED0A3AE3E6122 /* OHPathHelpers.h */,
9F173488E424D921113A174BC9D914F6 /* OHPathHelpers.m */,
);
name = OHPathHelpers;
sourceTree = "<group>";
};
549532BF7B96761FB244A9ABF0FAB7F5 /* Nimble */ = {
isa = PBXGroup;
children = (
73E9237274FF50484C134F86F02CE08A /* AdapterProtocols.swift */,
283B3108FA95C3EAA74A78FFF1B9291B /* AllPass.swift */,
09D2D95432B197B1AE05FE8FD534DC17 /* AssertionDispatcher.swift */,
A24483F5EFB4FA68C9FDEAA939290E7C /* AssertionRecorder.swift */,
932BA6FB61B16E56E202D7A7F42CAD59 /* Async.swift */,
0D64EF1FE66DD5FE651F03EE88D93884 /* Await.swift */,
DD5A88106040503B5D78ADDD3CA01A77 /* BeAKindOf.swift */,
B855AB7F1A4C4097C1204C60EE474201 /* BeAnInstanceOf.swift */,
5631C87DA15854A33F594613EB1391E7 /* BeCloseTo.swift */,
57C4B6BD9398A374AC976025F058E00B /* BeEmpty.swift */,
BCDFF4ECBA69F172B702C4B7BAC0B554 /* BeginWith.swift */,
1A1788C164A9BFDD181261910BDFB1CE /* BeGreaterThan.swift */,
46EF1EF4FCBDD20530D2D61127059FA2 /* BeGreaterThanOrEqualTo.swift */,
0B18C5BE99DF01B2F11DD832CF106719 /* BeIdenticalTo.swift */,
97DC93E3D21B0475C8B88C8622778E8A /* BeLessThan.swift */,
515763EB5229E373CEC58A50CE790D56 /* BeLessThanOrEqual.swift */,
81B34999F6151BE236250F63257C9B61 /* BeLogical.swift */,
B4E1FF9382D80FF2BBE6948281FBBBFB /* BeNil.swift */,
38C19100D062A37A25CC30256EB6C7AF /* BeVoid.swift */,
DD0AC879D4A5BE7967881A2E75629261 /* Contain.swift */,
85FFE57108F9B1C423CEE9A6353CEE76 /* ContainElementSatisfying.swift */,
FA6699156359FD914F45C72DA3950644 /* CwlBadInstructionException.swift */,
39E4E7616EEB4F7F264FD2B88DD936C4 /* CwlCatchBadInstruction.swift */,
2F0363CDCCE3B0BC79461F0C04BF9380 /* CwlCatchException.h */,
3E6E083F2D6124913A4ADCD0BFE21334 /* CwlCatchException.m */,
A4E41B681314B0E53D68FB9584566877 /* CwlCatchException.swift */,
C10026EBBDC5921994D532165056F13C /* CwlDarwinDefinitions.swift */,
55EA2DCEBF803D37011076E81EB89A58 /* CwlMachBadInstructionHandler.h */,
83844CDEAC9B435455826D218E804D27 /* CwlMachBadInstructionHandler.m */,
716A465E0CB151E14466B130D973D483 /* CwlPreconditionTesting.h */,
4EF8FC9BD66727BADFC8582BE115BF18 /* DSL.h */,
AF0512E36BF85E2834825888F2CC88AD /* DSL.m */,
CCD0703F483D1252ED1F17E6EDC1FF16 /* DSL.swift */,
45DD3BC5F8729EEC69C0375FB6677CC1 /* DSL+Wait.swift */,
9414468CC8456339CC2F98E0066C822C /* ElementsEqual.swift */,
0C2F271B331F5F6088153DF3D7CABEA8 /* EndWith.swift */,
E1C02A3710593DB1F00A200D793FEF66 /* Equal.swift */,
7410EDFD3CDF3BB5231AF034F85085E2 /* Errors.swift */,
871AC1E3EFE6969E45BBD0ABF0C8ABDE /* Expectation.swift */,
C239E8D2B947485A5741F6E65E9C730E /* ExpectationMessage.swift */,
BB323C8858E89205CF58B8F0044E2E22 /* Expression.swift */,
70FFDAD75DA90B93F5CCDB73FC153074 /* FailureMessage.swift */,
AEDEA881448CE1614CEF5B455702DFCF /* Functional.swift */,
A9673F1E893FA8E198A967B5DC575CC2 /* HaveCount.swift */,
EC32B8EE4C81A25F9CDDA38A3C1C39F4 /* mach_excServer.c */,
40E516713DC93E9F7BEAB77EE1E09256 /* mach_excServer.h */,
9131AA0918F61FE6287E2F27DF32F331 /* Match.swift */,
4F4D28F6D6589824BA8A77019E78B098 /* MatcherFunc.swift */,
1824505E8ADC548ADC6518F2D403D1C0 /* MatcherProtocols.swift */,
C004110BF333E198EDD1FB962BE86072 /* MatchError.swift */,
F4B2B58D8206E3F67A0F89EE1239BE33 /* Nimble.h */,
3C9CEB93E63E67F01256941D75911119 /* NimbleEnvironment.swift */,
D1833CDD829E4755C5C7CA9FCC0282C8 /* NimbleXCTestHandler.swift */,
510DAEB833A1C5680C2F05D8CB399D99 /* NMBExceptionCapture.h */,
94496459194F4AD28FB7210794E39F11 /* NMBExceptionCapture.m */,
BDB53D7B66950AA163480DC67FCB325B /* NMBExpectation.swift */,
978E44626EBF0068FF4321024F34C213 /* NMBObjCMatcher.swift */,
C59361F4ACB127A8BF72B65325E34833 /* NMBStringify.h */,
DF4CF7843B6EC0FC5044A26FDB0AF587 /* NMBStringify.m */,
A3E569367E525604D125BAC8AAA5CDA6 /* PostNotification.swift */,
EBAA91DA497DABAF472B979ADAE1D6EB /* Predicate.swift */,
D0A3895806C3F368C32611FC790B8C8D /* RaisesException.swift */,
B34AA5AC9B750EE435441F1CB5B0CE26 /* SatisfyAllOf.swift */,
BA9065950159BE69311C316316A0DFD0 /* SatisfyAnyOf.swift */,
58271A8608C74B11B7F6B378AF407655 /* SourceLocation.swift */,
F68C517CFE9BF46A005B9AD8F96D27CC /* Stringers.swift */,
6409232DFECB9E2BFFF1D44165E01733 /* ThrowAssertion.swift */,
8E16B7E20983619A6965BE981ABE86D8 /* ThrowError.swift */,
840D34FC3E31E1D97506843D844A49C8 /* ToSucceed.swift */,
1E68CC2F3B61AD7EEBC49DB879549DB4 /* XCTestObservationCenter+Register.m */,
A73F635D6277A494BDEE5AF5A8A76907 /* Support Files */,
);
name = Nimble;
path = Nimble;
sourceTree = "<group>";
};
58131E68BD869729A2F27D206CCC5775 /* Products */ = {
isa = PBXGroup;
children = (
73048F68DF0D41B51C260BB3E02E724D /* KZFileWatchers.framework */,
BAE263041362D074978BB3B577DF0A05 /* Nimble.framework */,
17E33041B314FA837A3CAEB9DF3CDE9F /* OHHTTPStubs.framework */,
C9EAA3C82889896769CFD053E8751AB1 /* Pods_KZFileWatchers_Example.framework */,
3020D545E47DB5F838519E3BE0332F90 /* Pods_KZFileWatchers_Tests.framework */,
0D631E9908483F9525A6B3F36F16CC61 /* Quick.framework */,
);
name = Products;
sourceTree = "<group>";
};
67AC86FDE0F7A8347B5F465EEF5F1D2C /* Pod */ = {
isa = PBXGroup;
children = (
97A6FE787336F1B610297D8F41E537F5 /* KZFileWatchers.podspec */,
BCF483219145693126D1E7BF7D60B5BE /* LICENSE */,
022ACD32E33469CB4FD6AC5168DF9BD3 /* README.md */,
);
name = Pod;
sourceTree = "<group>";
};
7EBFDF9430B17A76AA08676D7716CFD5 /* Remote */ = {
isa = PBXGroup;
children = (
C21A69846B8CEEDDAD3C285A901B48A6 /* Remote.swift */,
);
name = Remote;
path = KZFileWatchers/Classes/Remote;
sourceTree = "<group>";
};
90F6A2529D4DF0BC9156E54DB310FD3F /* iOS */ = {
isa = PBXGroup;
children = (
4F0905F6372BF28BF22D75143A5FB617 /* CFNetwork.framework */,
5102C6091E8114B4E7BC26D83F6A630D /* Foundation.framework */,
4620FD8663B64CE89F7E94264B8A62B0 /* XCTest.framework */,
);
name = iOS;
sourceTree = "<group>";
};
960D49D3045DA0EE57CD01AAFC89F6EE /* Pods-KZFileWatchers_Example */ = {
isa = PBXGroup;
children = (
033331B23D82766B5AC18E639725D84B /* Pods-KZFileWatchers_Example.modulemap */,
B9EBBF191D5932E928483F5227D557BB /* Pods-KZFileWatchers_Example-acknowledgements.markdown */,
5B1544330DF2AACEAAFE07488389E201 /* Pods-KZFileWatchers_Example-acknowledgements.plist */,
F3DDFA3E750F1CA39A30BF2AB85F3132 /* Pods-KZFileWatchers_Example-dummy.m */,
2BAAE86CCB50323E0AC13DD2CC867848 /* Pods-KZFileWatchers_Example-frameworks.sh */,
CE8B303D953E7165483372F69397BECA /* Pods-KZFileWatchers_Example-Info.plist */,
70F1F0105E9A30D97355C5B5A2E8D57A /* Pods-KZFileWatchers_Example-umbrella.h */,
C3A2BAA5ED02E377B92A7231A1A08FB0 /* Pods-KZFileWatchers_Example.debug.xcconfig */,
826226E9EE243A2722E44E1340865790 /* Pods-KZFileWatchers_Example.release.xcconfig */,
);
name = "Pods-KZFileWatchers_Example";
path = "Target Support Files/Pods-KZFileWatchers_Example";
sourceTree = "<group>";
};
A73F635D6277A494BDEE5AF5A8A76907 /* Support Files */ = {
isa = PBXGroup;
children = (
FE06DA7A888BFB24269506334E8C8FB1 /* Nimble.modulemap */,
D9729BF3915CA07F511281EDAE442F51 /* Nimble-dummy.m */,
681D04B4A8091224E4D21B0D0AF0A7D0 /* Nimble-Info.plist */,
CCB77D8989353041B2A953931EB3E59A /* Nimble-prefix.pch */,
96C2EE8AF543F66F1ACCE8989B09845E /* Nimble-umbrella.h */,
457E3828E2674B97B71037EEB9EF3C29 /* Nimble.debug.xcconfig */,
0118F81089F9ECE19459981E4A3AAE84 /* Nimble.release.xcconfig */,
);
name = "Support Files";
path = "../Target Support Files/Nimble";
sourceTree = "<group>";
};
C0F5218F015BCEE9C3E6FE8CDFEA8E52 /* NSURLSession */ = {
isa = PBXGroup;
children = (
428710F410D9759550489E3305FD70C1 /* NSURLRequest+HTTPBodyTesting.h */,
F57CC4F5CE027CC4B2A6E8B8DB8C2C69 /* NSURLRequest+HTTPBodyTesting.m */,
01F84E761B98B4E7A41C72D170CE12B1 /* OHHTTPStubs+NSURLSessionConfiguration.m */,
2EB942BED478D2AF228A6F77B2E5D739 /* OHHTTPStubsMethodSwizzling.h */,
8789676C3E8F0FB008645F61EFB2AF50 /* OHHTTPStubsMethodSwizzling.m */,
);
name = NSURLSession;
sourceTree = "<group>";
};
C147BB93CBDFF64034F16B07B3F78059 /* Development Pods */ = {
isa = PBXGroup;
children = (
4500AFC1A2F1B90BCBA673C3E5E8922F /* KZFileWatchers */,
);
name = "Development Pods";
sourceTree = "<group>";
};
CAFBFF335A9D5B2BC5C9EB789C5DCC8A /* Pods-KZFileWatchers_Tests */ = {
isa = PBXGroup;
children = (
4466AECB8E56E91F855661F22B8E24D2 /* Pods-KZFileWatchers_Tests.modulemap */,
DA433C029740895C663DB759419C9FA6 /* Pods-KZFileWatchers_Tests-acknowledgements.markdown */,
68F0681635676017418472A82CF71C31 /* Pods-KZFileWatchers_Tests-acknowledgements.plist */,
64FEE49831977D89EC452FF520534B49 /* Pods-KZFileWatchers_Tests-dummy.m */,
417E09F45F806A28BB9F28F317706865 /* Pods-KZFileWatchers_Tests-frameworks.sh */,
13AF810E313528046E3A87A0F44F3D0A /* Pods-KZFileWatchers_Tests-Info.plist */,
9540260142ED116EDB4AAA6FA3C126F2 /* Pods-KZFileWatchers_Tests-umbrella.h */,
4761FEA5DD2D25770DE09DA139ABF5F2 /* Pods-KZFileWatchers_Tests.debug.xcconfig */,
7AE2BE55DC254869AF1FFB3BC2413504 /* Pods-KZFileWatchers_Tests.release.xcconfig */,
);
name = "Pods-KZFileWatchers_Tests";
path = "Target Support Files/Pods-KZFileWatchers_Tests";
sourceTree = "<group>";
};
CDA52ECB61E9CF9382D93B7B1BD13AD8 /* OHHTTPStubs */ = {
isa = PBXGroup;
children = (
F160038F12F5301BACEEED0EADCFEACE /* Core */,
E4A9AC0EBDDAA355EEF9120BA9E2E963 /* JSON */,
C0F5218F015BCEE9C3E6FE8CDFEA8E52 /* NSURLSession */,
5123E920E951CD8C98DBD3621A55D082 /* OHPathHelpers */,
30D3EBB96860B70AF842D30C3DAE8066 /* Support Files */,
2EA61047052380EAC8F7139AF550D16C /* Swift */,
);
name = OHHTTPStubs;
path = OHHTTPStubs;
sourceTree = "<group>";
};
CF1408CF629C7361332E53B88F7BD30C = {
isa = PBXGroup;
children = (
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
C147BB93CBDFF64034F16B07B3F78059 /* Development Pods */,
03C5C200A0787E300053CFA8F53CA094 /* Frameworks */,
4CC72F6ECB53DBA6CD23CCB5180405DD /* Pods */,
58131E68BD869729A2F27D206CCC5775 /* Products */,
1C53C1BD9C9CF2ECC55A3E3F4F1FB99D /* Targets Support Files */,
);
sourceTree = "<group>";
};
D0396EDA647BFE6363169D4F3149891A /* Support Files */ = {
isa = PBXGroup;
children = (
9C095C52338764DBC665DD208ED5B595 /* KZFileWatchers.modulemap */,
B53F52EC5646831625972FF4C6B00DDD /* KZFileWatchers-dummy.m */,
DCC143BB7B00FB654910C91182B418C3 /* KZFileWatchers-Info.plist */,
9E283BD733C2BCB54E984ED1A4213AFB /* KZFileWatchers-prefix.pch */,
4F5CF7C32298D37DF1EDE8AF6CB37A72 /* KZFileWatchers-umbrella.h */,
FFF3EF5020286E2EB5389B69EBFD7B20 /* KZFileWatchers.debug.xcconfig */,
6B91F0A0C54A92FB20223442D8A327EB /* KZFileWatchers.release.xcconfig */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/KZFileWatchers";
sourceTree = "<group>";
};
E4A9AC0EBDDAA355EEF9120BA9E2E963 /* JSON */ = {
isa = PBXGroup;
children = (
4E3E63D95C3278939274EABD79EE2A50 /* OHHTTPStubsResponse+JSON.h */,
F5D1D275F8BE2430C3978EDB54259D65 /* OHHTTPStubsResponse+JSON.m */,
);
name = JSON;
sourceTree = "<group>";
};
F160038F12F5301BACEEED0EADCFEACE /* Core */ = {
isa = PBXGroup;
children = (
C4677BF2753993AFA8F72066A32FE39E /* Compatibility.h */,
2E83F2DE61126944F1431E96D41FC2BC /* OHHTTPStubs.h */,
7D453A0C60962DF8C5DFB60C8657D6A7 /* OHHTTPStubs.m */,
8335EA5541F230F9342EEB2CFF37A2CA /* OHHTTPStubsResponse.h */,
B65068D2FB99831A8C61B7A85B0EF1E4 /* OHHTTPStubsResponse.m */,
);
name = Core;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
1C702E466F85FEF44F680EB17B6EDEED /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
768B947C9E040CB87ED61BE11D4FE690 /* KZFileWatchers-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
222AC9A0004F142037506904FF61E931 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
B6607A673440A83CE99361A08D82C734 /* QCKDSL.h in Headers */,
0837CAE176AE66736FE457DDAAF5E01D /* Quick-umbrella.h in Headers */,
DED813943ABF7ACBD1C38B2D8024DA9C /* Quick.h in Headers */,
DFAAEF3440DDBCA8719DD048DAE27FDF /* QuickConfiguration.h in Headers */,
EE157DBCE1F197BC50B908D77778B508 /* QuickSpec.h in Headers */,
8911DDD5910AA1C6E099EBF768AFC8F7 /* QuickSpecBase.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
245B2044FC0E21765220C8307E99A1BB /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
F83CA1780F5D9C6432CE9D7248D9B35A /* Compatibility.h in Headers */,
C60C3ED1EDC2A1F16FFBE40563712276 /* NSURLRequest+HTTPBodyTesting.h in Headers */,
165F2A6DF189151CDBCA366DD275ABEA /* OHHTTPStubs-umbrella.h in Headers */,
9BB78DC33523C76095B1D95D5CEF44CA /* OHHTTPStubs.h in Headers */,
0C78BF11377F17C8F5B8CD7604269361 /* OHHTTPStubsMethodSwizzling.h in Headers */,
276071E9DBAAA08BBBD569288E026156 /* OHHTTPStubsResponse+JSON.h in Headers */,
6555C9FEB29EA5DC75C9086D8B14BCCD /* OHHTTPStubsResponse.h in Headers */,
CA27256DC58202C86D5DE65F56FB4F19 /* OHPathHelpers.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
51A00ABBA2BEF3913A4628399CEBD45B /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
092256E303520E50ADEFF25EEB4E73EE /* CwlCatchException.h in Headers */,
9F70369EF71BD9ABAFF687AF532CC20D /* CwlMachBadInstructionHandler.h in Headers */,
80DEBE41D84FBA1C4D4FE00C8D797E82 /* CwlPreconditionTesting.h in Headers */,
C051C0411627BD5FCDA031782EB1F716 /* DSL.h in Headers */,
3BD0C370BBCEBDEA68B8EDBD969370EB /* mach_excServer.h in Headers */,
CD6B1F146B0E157FE5B9CAFFAE77A5B5 /* Nimble-umbrella.h in Headers */,
9BB5E9B6487FE95C710687B484C17161 /* Nimble.h in Headers */,
8D17749611AB0C8BD51C068749D8DF68 /* NMBExceptionCapture.h in Headers */,
E0EAC85F7ACFAD998B14FCE66144000E /* NMBStringify.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
5482F35628BA30451AB0FDA8E426E580 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
23FE2BC2C69DE130BE9BB3F7539E045F /* Pods-KZFileWatchers_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E343EE2142AC1D071E92D70619DBD29D /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
A5E9844304C9F21B2886386EF2C0FE91 /* Pods-KZFileWatchers_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
471EC512D75B1827859B4F07F430F65F /* KZFileWatchers */ = {
isa = PBXNativeTarget;
buildConfigurationList = 00A62F2F889B9D87EF20F2C37FC7616C /* Build configuration list for PBXNativeTarget "KZFileWatchers" */;
buildPhases = (
1C702E466F85FEF44F680EB17B6EDEED /* Headers */,
21CD9699A882BB562D68761147834019 /* Sources */,
44B0EA3537E6FCC57B0A442579FBB1F4 /* Frameworks */,
C24B3F185219E110E7FE5F8D63010971 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = KZFileWatchers;
productName = KZFileWatchers;
productReference = 73048F68DF0D41B51C260BB3E02E724D /* KZFileWatchers.framework */;
productType = "com.apple.product-type.framework";
};
6F13695E06195A78EA8A95F8C7ED0D2F /* Nimble */ = {
isa = PBXNativeTarget;
buildConfigurationList = 9AC65E53333ACA93EEB1D8EBAB58CBB6 /* Build configuration list for PBXNativeTarget "Nimble" */;
buildPhases = (
51A00ABBA2BEF3913A4628399CEBD45B /* Headers */,
D399136A0E6FE19CACE7F05143312FB1 /* Sources */,
55C81EE76C6A69F1F69792A679310C68 /* Frameworks */,
D7EBE1F47ACC336A60ED6056AF3261E1 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = Nimble;
productName = Nimble;
productReference = BAE263041362D074978BB3B577DF0A05 /* Nimble.framework */;
productType = "com.apple.product-type.framework";
};
A983A2D06C5B6AA3D6ABA5CCC0A16725 /* OHHTTPStubs */ = {
isa = PBXNativeTarget;
buildConfigurationList = 922F19B1A739BBFD2F4284423D72D365 /* Build configuration list for PBXNativeTarget "OHHTTPStubs" */;
buildPhases = (
245B2044FC0E21765220C8307E99A1BB /* Headers */,
AE1498E53F6DDAB37C2BF20AE40A82D9 /* Sources */,
5CE63E52033B9EB192CC73B2CB7700E8 /* Frameworks */,
0FC690F64DA2FCEC04C4AD1BEC983511 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = OHHTTPStubs;
productName = OHHTTPStubs;
productReference = 17E33041B314FA837A3CAEB9DF3CDE9F /* OHHTTPStubs.framework */;
productType = "com.apple.product-type.framework";
};
C82891EAB7293DBEE916B21F57E8474D /* Quick */ = {
isa = PBXNativeTarget;
buildConfigurationList = 53945ADFA8D79915C0D0011CB37313D8 /* Build configuration list for PBXNativeTarget "Quick" */;
buildPhases = (
222AC9A0004F142037506904FF61E931 /* Headers */,
6B696486F0A1F297138BE66AE2B9596D /* Sources */,
0B8AE404673E2EBB324F285A600856F9 /* Frameworks */,
13D971888606E36632CFC3485CE8B169 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = Quick;
productName = Quick;
productReference = 0D631E9908483F9525A6B3F36F16CC61 /* Quick.framework */;
productType = "com.apple.product-type.framework";
};
D7E1E9D93D086F66302FAAF7A2B354C6 /* Pods-KZFileWatchers_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = A220BF2BC47F3C1850DD65682987CDDA /* Build configuration list for PBXNativeTarget "Pods-KZFileWatchers_Example" */;
buildPhases = (
5482F35628BA30451AB0FDA8E426E580 /* Headers */,
A64E3FAEEE81517BF932EFC4511E7778 /* Sources */,
0F93B25E5E15C82AAF65457D25963800 /* Frameworks */,
00850273DD8E364627354EB8EF4FB671 /* Resources */,
);
buildRules = (
);
dependencies = (
58EF19F38DF8FB522CA855016570F9B7 /* PBXTargetDependency */,
);
name = "Pods-KZFileWatchers_Example";
productName = "Pods-KZFileWatchers_Example";
productReference = C9EAA3C82889896769CFD053E8751AB1 /* Pods_KZFileWatchers_Example.framework */;
productType = "com.apple.product-type.framework";
};
E26CCC982FC8C62200722DDB4B21B045 /* Pods-KZFileWatchers_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 8FF4FE9AF2EF5D9D02B322BEE2123D9A /* Build configuration list for PBXNativeTarget "Pods-KZFileWatchers_Tests" */;
buildPhases = (
E343EE2142AC1D071E92D70619DBD29D /* Headers */,
402C203BE4C6CBE9A6E55F013250B840 /* Sources */,
E17D6620FD783464FBED5579B4F7412A /* Frameworks */,
8AA54B124B83898E88D77AC147F70DED /* Resources */,
);
buildRules = (
);
dependencies = (
60C48501CEBDABBFF641441D19E69B89 /* PBXTargetDependency */,
4F52C48FB520456552DB5D602A7F3289 /* PBXTargetDependency */,
36C403D3FA429C809360CC2C8F8CFF2E /* PBXTargetDependency */,
347DB66EB51724BDC99F429E1ABA1BC3 /* PBXTargetDependency */,
);
name = "Pods-KZFileWatchers_Tests";
productName = "Pods-KZFileWatchers_Tests";
productReference = 3020D545E47DB5F838519E3BE0332F90 /* Pods_KZFileWatchers_Tests.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */