forked from jaronoff97/SwiftDog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.pbxproj
1717 lines (1705 loc) · 123 KB
/
project.pbxproj
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 */
01A35720D3948E0AA2BAAAC0D4D79103 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = E90840E5916EB122714B8DB9378FFDC9 /* DSL.swift */; };
07909679B907EFBBE529C156CD52A339 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB6E60DE42825C0AF064D069DE7A7C2F /* Foundation.framework */; };
0A2CA8B0DD7E300ABFCF1956E6B58248 /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C8AEF59732ADADA22799B8A6E7901E /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; };
17C8EE7DF3F57C8F99EAF63C6E61EA99 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DE896824F7803D7FE8455C55579FA6D /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
1A0E1EA6F1038DF7F15B7C4573A32BEC /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA23CC2264618F259CB8DFB4C8388983 /* ErrorUtility.swift */; };
1A3E19B9F5EEB773C3BB61CA42F8BF62 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2B33D219B0B8729BF03128A7FE2FC2B /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
1C06010FC4277C50D7D1227FA5FED82D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB6E60DE42825C0AF064D069DE7A7C2F /* Foundation.framework */; };
1E1CE28FFCCD7499620B47C910E9B9E9 /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C7B901FE42B2EBBD0FED8CD4DAFE5CF /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
202CA898C032FAF0DD98F4257657FF59 /* Datadog.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2000BE4B3DE96CD6C2E1C239AB22503 /* Datadog.swift */; };
2075119FAF97423E57BF569E407D9FCD /* NSString+C99ExtendedIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F0EB1083E4851113EC893B4BC46DC8A /* NSString+C99ExtendedIdentifier.swift */; };
21D4EA3E23FC09E9DF97E1A29B224AF9 /* Pods-SwiftDog_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 14309058A882FFA8351337B616A4172B /* Pods-SwiftDog_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
22C2E874D544C8F2A92090A2C907B069 /* Pods-SwiftDog_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D5229C29A1D0FF02FC990A211627FC62 /* Pods-SwiftDog_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
22E9F6FA56858A5F7A5D664E5968ECB0 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 391B60B566A92977169E60A07DDDD9DD /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; };
2593CE3925D061F00372D8C5DFE003D8 /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E0B1E13F67C647317B5875020EA7B5C /* QCKDSL.m */; };
25D1805055756CAA69A167CA03B2465C /* ContainElementSatisfying.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95FFB4F0B2187461D8BE44D2579FDAD8 /* ContainElementSatisfying.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
27877E6594C4307AC03676EA7B73ED5F /* QuickSpecBase.m in Sources */ = {isa = PBXBuildFile; fileRef = D63A215878807FAFB8B3F958FB495805 /* QuickSpecBase.m */; };
29812DFEB983DC452D45DEBC2A1C91A2 /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE973F383F820A8FFE77B48E3EC288D9 /* HooksPhase.swift */; };
29A65FF7D1752DFFF87F5DC8F55CE859 /* ToSucceed.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DF2A2AF527993833F0CAA153818776C /* ToSucceed.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
2AF9DFD32F9DECBAF8869CBE8A60E730 /* Metric.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F25079DA8B9D0C575B2B60A48563ACF /* Metric.swift */; };
31C39ED8CB1C9317F1F2840FC919662D /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71F9DCB27036010817AE8CA9DF43E1AD /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
3297AE36EEA2390072E5D50B63669CD9 /* Types.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FCA38101E1DE2677DF1DA7D40C29BFB /* Types.swift */; };
32B38992751B96F21324BFC9923BFCBD /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E25A20BB677EB9EFA151D3889A31E24 /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
35CADB1AD8E063A35DF68147F3183206 /* CwlMachBadInstructionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F967EDF677E3F853BC8C97FD12E4C185 /* CwlMachBadInstructionHandler.h */; settings = {ATTRIBUTES = (Public, ); }; };
388C92C879B0C876E721B9F0326C9A60 /* Quick-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1338869D989A9427749BFB1EBEB34710 /* Quick-dummy.m */; };
3A875DC56924ADBD3EB00B5FEF1D740E /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5998C441D5A5DAB5C6B55290C9D623D4 /* XCTestSuite+QuickTestSuiteBuilder.m */; };
3AFDC72182A877F8DBAE5137D489F853 /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2BCFA479A8338F217749DE1BA2321C1 /* Closures.swift */; };
3B3A88E074630B1EBC2139F4F70F0443 /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EEA578D7E5B2B5B163D38AF62C256A3 /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
3C66D2692E811DAE57A244A67E7AC555 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFA5E76DCA22628D169DD6C30C6C8E9A /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
3D1A89FDD6B579BAA92AD398E5C019F9 /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77401AFF4E5BC66AA06F4C34E0F5425E /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
3E04D23B2995705A6106D41F3E3E4E33 /* ExpectationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 578E57C6E02F4677402DBFA93018E271 /* ExpectationMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
400C10B9E661A4D70B448B2E4E176C39 /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 633D7BA162C64C25E971246610C8554F /* QuickConfiguration.m */; };
40C024D00B87A102D687031F76BC1994 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CBC4FF8CF1FA52360C2A3884A99C2A7 /* Example.swift */; };
41C783192F7ECD485C8C6384D30CBF11 /* CwlDarwinDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17D7327C95C53E892A62581DA59F0A6B /* CwlDarwinDefinitions.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
42EAAE8CFB95F2352FCE036F263263E1 /* CwlCatchException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D058BEDF22937D8E4E981AF5F594AFA /* CwlCatchException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
43D6E730C05B6803B021B66438BCFE26 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB6E60DE42825C0AF064D069DE7A7C2F /* Foundation.framework */; };
45F183320C688F9978649F30ABE21D09 /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = E469B3E3ECFB4CA37ABA3A37BE0F6D58 /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
4C37841EA4241495CD63C8A710A69BD9 /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = ED770D0EDD3B9EADCEA218C2A4EFB448 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
4CDACD8A5A6CFB688838AA988E7D1E43 /* Nimble-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0751EB737635E1F3A98CB8F6B99A3E93 /* Nimble-dummy.m */; };
4EE25FA4C2596266104AE032D4844349 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB6E60DE42825C0AF064D069DE7A7C2F /* Foundation.framework */; };
4FABBF5CA8F735F48035BE4144613CB7 /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB46B83D12D3001F43E30D308E9E619F /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
50633D41355E47B33EE1C5200375C482 /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F80315664F4085952E3898FF9C10EDB /* QuickTestSuite.swift */; };
54CC2049C937561A469575AF9E6A6FE9 /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = C030FD45DF0FF7E64A3333915D4FFD7F /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
58C0125D796A97541FDE3414001D8A92 /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 302D9E43032B4EA7F91B47663D78E7EF /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
58D964317DFBB10F54A273CB12843017 /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85BD409BED93F1BA2CF983413C4D31A5 /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
5AB9DB61D62D8BF7B1C734B373F361E7 /* CurrentTestCaseTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E883A9F1BA81549504E5513DC57C58 /* CurrentTestCaseTracker.h */; settings = {ATTRIBUTES = (Private, ); }; };
5BF274C2DEF332ED79B1CD15CFEC3498 /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E3A83C952FA8F869FD4B37124EE20F5 /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
5DBCC0E4C72649C9A39A00D40D944DDA /* Nimble-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 93747A9E7F79391C53C2634D40B0A4A8 /* Nimble-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
5F9AFDECC14365CD10F3D83D50020E32 /* CwlMachBadInstructionHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 05795DB188F2D188E970AB8799459A38 /* CwlMachBadInstructionHandler.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
604CA50DC04B7C5B8F1BAD05453A43E8 /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62ECFE61E095DF5C1A24D947BB71A84F /* QuickSelectedTestSuiteBuilder.swift */; };
622DB041FE16BB5A356FEC92CD19FA0D /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = EC59ED4C6C76E6E82309046527B11A65 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
624D36054600B6B20081A917BCC5AA40 /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3237B251C7D6A8B0E6136B8E5366101 /* ExampleHooks.swift */; };
62D26CE7BA3AEDB4E5E87218FDCBBA90 /* Functional.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6E6791C8334521A6245048A2C601BD /* Functional.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
6514877D6A77A00A8A3559CA2CC0F15E /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2D14A92E8C1A921D506BBBC33D2FAD9 /* NSBundle+CurrentTestBundle.swift */; };
6593C547A71CCEFC480CD578080A327F /* mach_excServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BB165DE9617587088AFD408A68F3525 /* mach_excServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
65985C142EE8A74E6E56D5E30A39C79C /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B329B28D2DEF44887FB6D66AF056136 /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
669B62106E5719BC51E1EE8D1F940296 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FCA9CDEA087B90C9358CB8BB7153A58 /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; };
6716D0C7EB19B91519C7A99C05E2AE9D /* KeychainAccess.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 50EADC46058E4AC2D88B2B8AB4679A31 /* KeychainAccess.framework */; };
68FD03C72D719117929696B62038B3D7 /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11F9E959A5F421BB5D1E1ADEB73C110D /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
69B80157634D6FAF248D37F397732357 /* CwlPreconditionTesting.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D706275B0C392DAD857AD7CAD6244D /* CwlPreconditionTesting.h */; settings = {ATTRIBUTES = (Public, ); }; };
6BB0EBEB4730B94AC07458E398D142C8 /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23AE763E5A0ED7BD7D9340942320AF84 /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
6CB4890B9BF5F846E980634AFE83917D /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 188A29A85EB6F5D6DF78224210040401 /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
6CC2F90E8677838012FC0091BC29BEB3 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B8C9487A1B2A7E9B5BFF3B0D5839E86 /* World.swift */; };
6D84DC781BCFEF58A41D5833F109DDA6 /* Behavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C5728308F2E48B995C535FA85024EEE /* Behavior.swift */; };
73BC5AC2ECDB8722E085F14B53E0D24E /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AF206210A20594DA0A559AD514BDB68 /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
75538A8B20C7A20AF3D54BBF35D56FFE /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 830C9FB47E4D4338942F7272B35CB159 /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
75ABB48E3C30C2D736C3D05D6FD566A8 /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B73E028EE43C409797029443CFEB3FF /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
76D13B24D7C22D3DBC2F47D944CFB736 /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74EC54FEF02B29AE7C8FB432B0E563C6 /* ExampleGroup.swift */; };
7B5222991D1C53DF737242CA6C90012C /* CwlCatchException.m in Sources */ = {isa = PBXBuildFile; fileRef = 06CA5B2528EF8D51A93A658C9768B049 /* CwlCatchException.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
7CFDC5EE552E9852B227BF0136EE0EF5 /* SwiftDog-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 553E684535CB84D88BEA1AB6F10823DE /* SwiftDog-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
7E0C9AE6468A5DF91F0F4C7A387D725C /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 985C3C19B7A24D102D8D521532E27BE6 /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
8170866E2ACE0ACFBC6D90081354EC65 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DAD56FCAC57BB67CA9D205B1B9789F7 /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
827A509E09441B766C39818BB50D33EA /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0693A1E55592A27B1AE99FAB0CC36990 /* Callsite.swift */; };
8B55BD430033027AD5FF22D630DD9F62 /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C38661726B123EAF865287B85709CA1 /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
92E0B8FA5E1DEC8ED2103272832C987E /* World.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DC1A687754842CDFA0C08AF6291D76E /* World.h */; settings = {ATTRIBUTES = (Project, ); }; };
96132E7432F8DD315A88A07C6B4F9C72 /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = EBB7E3D333F4149EFEB0A74B784B0B61 /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; };
988EED125395950177DC14AF9BC87D8D /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2577A4E282E18D6601EA64DE9536DFA /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
98D9856BD25F60A98096542420CC6AD1 /* Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DEC499AAE6C4B7AF36296E6A114FFD3 /* Event.swift */; };
99FFA02EBD8D5857A3CD64E514E9E84E /* Pods-SwiftDog_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E9E3C1A2E37984C50C8A88349B08E13 /* Pods-SwiftDog_Example-dummy.m */; };
A272932A4DF9AC2D3B0A21AC70606F6D /* CwlBadInstructionException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B9C9E5997C2C59DB707CE21BABCBA79 /* CwlBadInstructionException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
A3BF9C2926B14270FA066AD119808CD1 /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8029D635388D59506A1DE291815FCC0E /* World+DSL.swift */; };
A5466113FAD9466A9C5F857D6EAD5547 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FF5BAB59BC226171258CAA0DBC90664 /* QuickSpec.m */; };
A61ADD214AA182EEB2AC95EA3F3D658F /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = 001BBB786B569E07D06FDFC0CE3DCCF1 /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
A74537420FF0CEDC6B9E82E1DC4C2B15 /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B1D7B8D8C2849178AC6CEB4DA3E0557 /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
A748892B8C4750235F4A28AD3C32F028 /* QuickSpecBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BDCB8E638454DCABCA8ADD005EE9B0C /* QuickSpecBase.h */; settings = {ATTRIBUTES = (Project, ); }; };
A7C13C62E4116CA964A3E82179092AD5 /* NMBObjCMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075C42365A5ADD4121FC344C2BEC046B /* NMBObjCMatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
A967960EE4C1C1AF8A3FC3555BABDC58 /* Keychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC68E7DEA5B742423E9AB357A37BB2FF /* Keychain.swift */; };
AAA2830BBCD86431B3EEB0ED968DF4A3 /* CwlCatchException.h in Headers */ = {isa = PBXBuildFile; fileRef = 31ED447A2BD2063ADDE94BE1A8B65A03 /* CwlCatchException.h */; settings = {ATTRIBUTES = (Public, ); }; };
ADEE95A3A188BE3095990E20766BCCC8 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7E121F5415197AFD91235C008B559C /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
AE4DA49ECD693BF384CD824DF02D7C6E /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E872773F904815925CD9E36A32AD8B6 /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
AF1174085D9BC5D50FCE0480E9C2BE94 /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C330ECB584257D9CCC3AC8B4055F430 /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B102ABE4E54B71B3D2C2118E2782FAB9 /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD6D2DF4D3E5EC0BF6B8C7F65B4BBD53 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B2C151B20635A480E1937E3D2B509BB4 /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01B9C122B4B3AB58A433CF918413320D /* Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
B2C7401545D198A8095D8AB368B5A874 /* Pods-SwiftDog_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F37CC5522267209D67D7D18A7DA1B93 /* Pods-SwiftDog_Tests-dummy.m */; };
B50EFC6A37BCC369D20A97C7AFFA4909 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB6E60DE42825C0AF064D069DE7A7C2F /* Foundation.framework */; };
BBB344105B2DA8786F123DFA0597681E /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 29508E22F43C6FA6862275FE9F07E25A /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; };
BC7B9761322C74FA27969BD55833BA47 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F5CB1C016B316A8AFECC4C7DACAC224 /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
BDA750A5542A5D826A35B1BE6A69574A /* KeychainAccess-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F06CF3279AD1CE7F55F1582D42C6CF01 /* KeychainAccess-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
BF3B7218901760A6226C7F6346BEF454 /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD1264EC2F7B5D18BCEAC499E18EA4E7 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C06FA100C1BBEE34B863BCB8A65359C1 /* MatcherFunc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16913DC7BE1491784F3B499E570E93A1 /* MatcherFunc.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C1D862177DC2999FAC710AC25F253BD0 /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31060BD3DF609127635EEFC6B68215C3 /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C2467221FCD579800B9CD8FBBDB10B4D /* CwlCatchBadInstruction.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEE0EF1E92120EBCC0DEB04F07CFFA1B /* CwlCatchBadInstruction.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
C2993EA7E09BCC8C29847A52D9540917 /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7FBF1BD0EC72EB36DC869935EF4204F /* SuiteHooks.swift */; };
C35C2BE6043462D78685A80D209D2081 /* World+DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = DF504CA4786E79300A227C9D2E78C9B1 /* World+DSL.h */; settings = {ATTRIBUTES = (Project, ); }; };
C8320A6164C870ADDB8A855ADEBBBDC9 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26666B9D97BC102A1FFDF7B21DD81D11 /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
CCDAF11E7AF29E720C587B038145F622 /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA359B9719A11902339CCC33857A4B82 /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
CF55697859D633C852C3586384647EB6 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A3DC5F96A8F854A74D4B5C25836B8EC /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
D823270043210DD356225D7700FAF3E4 /* KeychainAccess-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CEA15A8C2CF30293A99D8755C0B6A0CF /* KeychainAccess-dummy.m */; };
D84BBE760CD6DD1BE136899AF462696C /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3882790C5CC356F8FDD2630BFBF8BD94 /* URL+FileName.swift */; };
D8A65F40B5E9ED7B9880A4D08DB19A53 /* IOSAgent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EF76356FD54FE25F86617F6C1752657 /* IOSAgent.swift */; };
D9E62C41794D0B5D2CD68CA92C4BA836 /* mach_excServer.c in Sources */ = {isa = PBXBuildFile; fileRef = B3D7747A26F38802F2BEA1F3DFB17442 /* mach_excServer.c */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
DF026F6F406A4FB6CEA63B0A4B9E27DD /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 775F019830840DB71A8C71782EA3DEDB /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
DF298610414C09E123B3666D050F371D /* Quick-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 81B54AC021F2EAE825F4E6AF10A848EB /* Quick-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
DF4A793D63E1AB91054A7747B9EEB88E /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9178EC855650E8737211522FB4D250E4 /* Configuration.swift */; };
E595AEFD20AF580B002DDF68 /* Authentication.swift in Sources */ = {isa = PBXBuildFile; fileRef = E595AEFC20AF580B002DDF68 /* Authentication.swift */; };
E595AEFF20AF618F002DDF68 /* EventData.swift in Sources */ = {isa = PBXBuildFile; fileRef = E595AEFE20AF618E002DDF68 /* EventData.swift */; };
E595AF0120AF6218002DDF68 /* MetricData.swift in Sources */ = {isa = PBXBuildFile; fileRef = E595AF0020AF6218002DDF68 /* MetricData.swift */; };
E8EACF383D5FC840CC04A183FAD043EC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB6E60DE42825C0AF064D069DE7A7C2F /* Foundation.framework */; };
EAAA05EBBC34225C0DB45797712E24A1 /* AsyncMatcherWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC0BA7C2BAD67EDE93015F9F07A00DFA /* AsyncMatcherWrapper.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
EAE2AAE5EB826B38978692984BB22FDD /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9712B5E9A31202FCAD17256FE9A11345 /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
EB3A73071ABA60E77E0704649637D8BD /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57F4E90F0347C53D0630C95072D99A66 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
EF8548E0C37E8888D9DDC11ED89D3568 /* Predicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE3B9ED2D4D827123E458FD68A8C8652 /* Predicate.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F19A31499F2C415F24744006E3A8FD4E /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8DA9C550FA7770B17085A90C390F4D9E /* XCTest.framework */; };
F28003B228B82B7E1497D4F41F55A31E /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = D47741BBECD9A4F187E3187F4F0AD6CF /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F337AA746EC0838E7E33BBF1D10D44C8 /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 623B842C201F4C6AC53CD4EF32D6BD21 /* ExampleMetadata.swift */; };
F3BAA36614ABDBC0538B0DEA99CF80A0 /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F96F77022AB5B43672D5951FF56EE7D8 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F3BE716B5AF5952568C7D8A12DC2080F /* SwiftDog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3895BAF6E40593417B6E4E9E33FFCB0 /* SwiftDog-dummy.m */; };
F4BD249C60F21F5E0F7C1FAC8A5BC2AF /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1BD2B95523FA5B359F19A349D5C5B3D /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
F79827C8E331B634F25A3987BE4F22F0 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6F3703A5E7E8D4B2331AC879BFC21F2 /* Filter.swift */; };
F9649DD59BAEE88C6864EEFE73ECA88C /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04D644CB8B83D0C64A7445234C5262C4 /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble"; }; };
FB433A84B0A557CD5E5948A8B6705024 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = CCC92586830E94E400BDAE26B485A014 /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
0198873CF795B6318343F4FDAAADC200 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 448F0EFEA6E5283639AECD3B3FD6502B;
remoteInfo = Quick;
};
3E2B2597C55D9787DFC412142C8BEED7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DD7C8BF89FE8053D0A2A2D88BB49CF07;
remoteInfo = Nimble;
};
C393ADD840B962FD2A326067B5D4E7FC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8905DB6521F8FDC34752B69DEE3FDEB7;
remoteInfo = KeychainAccess;
};
C5C204DC17598001E1B1F9172F78B046 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8905DB6521F8FDC34752B69DEE3FDEB7;
remoteInfo = KeychainAccess;
};
E54ED4961D23EE98F2EAFB32CFF9D76C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 06CA862C3BDD2FB05C2873C56CDBCCAB;
remoteInfo = SwiftDog;
};
F04A60DB0242994F2E74C0296528457A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8905DB6521F8FDC34752B69DEE3FDEB7;
remoteInfo = KeychainAccess;
};
FCD9312A8A838BFAF5BF13ACFBE8E4FA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 06CA862C3BDD2FB05C2873C56CDBCCAB;
remoteInfo = SwiftDog;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
001BBB786B569E07D06FDFC0CE3DCCF1 /* XCTestObservationCenter+Register.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestObservationCenter+Register.m"; path = "Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m"; sourceTree = "<group>"; };
001E787522589996FF826DC65B705A81 /* Pods-SwiftDog_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftDog_Tests-resources.sh"; sourceTree = "<group>"; };
01B9C122B4B3AB58A433CF918413320D /* Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Async.swift; path = Sources/Nimble/Utils/Async.swift; sourceTree = "<group>"; };
04D644CB8B83D0C64A7445234C5262C4 /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Sources/Nimble/Adapters/AdapterProtocols.swift; sourceTree = "<group>"; };
05795DB188F2D188E970AB8799459A38 /* CwlMachBadInstructionHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlMachBadInstructionHandler.m; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m; sourceTree = "<group>"; };
0693A1E55592A27B1AE99FAB0CC36990 /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Sources/Quick/Callsite.swift; sourceTree = "<group>"; };
06CA5B2528EF8D51A93A658C9768B049 /* CwlCatchException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchException.m; path = Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m; sourceTree = "<group>"; };
0751EB737635E1F3A98CB8F6B99A3E93 /* Nimble-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-dummy.m"; sourceTree = "<group>"; };
075C42365A5ADD4121FC344C2BEC046B /* NMBObjCMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBObjCMatcher.swift; path = Sources/Nimble/Adapters/NMBObjCMatcher.swift; sourceTree = "<group>"; };
0CBC4FF8CF1FA52360C2A3884A99C2A7 /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Sources/Quick/Example.swift; sourceTree = "<group>"; };
0E872773F904815925CD9E36A32AD8B6 /* NMBStringify.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBStringify.m; path = Sources/NimbleObjectiveC/NMBStringify.m; sourceTree = "<group>"; };
0F25079DA8B9D0C575B2B60A48563ACF /* Metric.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Metric.swift; sourceTree = "<group>"; };
0FCA38101E1DE2677DF1DA7D40C29BFB /* Types.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Types.swift; sourceTree = "<group>"; };
11F9E959A5F421BB5D1E1ADEB73C110D /* NMBExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBExpectation.swift; path = Sources/Nimble/Adapters/NMBExpectation.swift; sourceTree = "<group>"; };
1338869D989A9427749BFB1EBEB34710 /* Quick-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Quick-dummy.m"; sourceTree = "<group>"; };
14309058A882FFA8351337B616A4172B /* Pods-SwiftDog_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SwiftDog_Example-umbrella.h"; sourceTree = "<group>"; };
16913DC7BE1491784F3B499E570E93A1 /* MatcherFunc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherFunc.swift; path = Sources/Nimble/Matchers/MatcherFunc.swift; sourceTree = "<group>"; };
17D7327C95C53E892A62581DA59F0A6B /* CwlDarwinDefinitions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlDarwinDefinitions.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift; sourceTree = "<group>"; };
188A29A85EB6F5D6DF78224210040401 /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Sources/NimbleObjectiveC/NMBExceptionCapture.m; sourceTree = "<group>"; };
1AF206210A20594DA0A559AD514BDB68 /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Sources/Nimble/Adapters/AssertionRecorder.swift; sourceTree = "<group>"; };
1DEC499AAE6C4B7AF36296E6A114FFD3 /* Event.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Event.swift; sourceTree = "<group>"; };
1E0B1E13F67C647317B5875020EA7B5C /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Sources/QuickObjectiveC/DSL/QCKDSL.m; sourceTree = "<group>"; };
1E25A20BB677EB9EFA151D3889A31E24 /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Sources/Nimble/Adapters/AssertionDispatcher.swift; sourceTree = "<group>"; };
1E3A83C952FA8F869FD4B37124EE20F5 /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Sources/Nimble/Matchers/ThrowError.swift; sourceTree = "<group>"; };
23AE763E5A0ED7BD7D9340942320AF84 /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Sources/Nimble/Matchers/MatcherProtocols.swift; sourceTree = "<group>"; };
26666B9D97BC102A1FFDF7B21DD81D11 /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Sources/Nimble/Matchers/Equal.swift; sourceTree = "<group>"; };
29508E22F43C6FA6862275FE9F07E25A /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Sources/QuickObjectiveC/Quick.h; sourceTree = "<group>"; };
2B1D7B8D8C2849178AC6CEB4DA3E0557 /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Sources/Nimble/Matchers/Contain.swift; sourceTree = "<group>"; };
2BDA3A419B70F93F410D09ACF8648441 /* Pods-SwiftDog_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SwiftDog_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
2C21330B601D64CD28BF0CDC5E54875A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
2DAD56FCAC57BB67CA9D205B1B9789F7 /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Sources/Nimble/Utils/Stringers.swift; sourceTree = "<group>"; };
302D9E43032B4EA7F91B47663D78E7EF /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Sources/Nimble/Matchers/BeEmpty.swift; sourceTree = "<group>"; };
31060BD3DF609127635EEFC6B68215C3 /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Sources/Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = "<group>"; };
31ED447A2BD2063ADDE94BE1A8B65A03 /* CwlCatchException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchException.h; path = Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h; sourceTree = "<group>"; };
32E2F984563FFF5097D834F46269B9B2 /* Quick.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; };
36897A3037BBF09690ECA1E4DCE0DF3D /* Nimble.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Nimble.modulemap; sourceTree = "<group>"; };
3882790C5CC356F8FDD2630BFBF8BD94 /* URL+FileName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+FileName.swift"; path = "Sources/Quick/URL+FileName.swift"; sourceTree = "<group>"; };
391B60B566A92977169E60A07DDDD9DD /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Sources/NimbleObjectiveC/NMBExceptionCapture.h; sourceTree = "<group>"; };
3B329B28D2DEF44887FB6D66AF056136 /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Sources/Nimble/Expectation.swift; sourceTree = "<group>"; };
3DC1A687754842CDFA0C08AF6291D76E /* World.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = World.h; path = Sources/QuickObjectiveC/World.h; sourceTree = "<group>"; };
3F0EB1083E4851113EC893B4BC46DC8A /* NSString+C99ExtendedIdentifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSString+C99ExtendedIdentifier.swift"; path = "Sources/Quick/NSString+C99ExtendedIdentifier.swift"; sourceTree = "<group>"; };
3FC03E836FCFA193F41C8E9C35890985 /* Pods-SwiftDog_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftDog_Tests.debug.xcconfig"; sourceTree = "<group>"; };
4B5AA79E85CAB048BA82A23EFC3E43A8 /* Pods-SwiftDog_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftDog_Tests.release.xcconfig"; sourceTree = "<group>"; };
4DF2A2AF527993833F0CAA153818776C /* ToSucceed.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToSucceed.swift; path = Sources/Nimble/Matchers/ToSucceed.swift; sourceTree = "<group>"; };
4E5620FF431620AF21B5DFEE8EBC828C /* Pods_SwiftDog_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SwiftDog_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
50EADC46058E4AC2D88B2B8AB4679A31 /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
524831F5C55C7CD658CAB75570698FB7 /* SwiftDog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftDog.xcconfig; sourceTree = "<group>"; };
53C16EC344EEAB646619E7D00B408F3B /* KeychainAccess.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeychainAccess.xcconfig; sourceTree = "<group>"; };
553E684535CB84D88BEA1AB6F10823DE /* SwiftDog-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftDog-umbrella.h"; sourceTree = "<group>"; };
578E57C6E02F4677402DBFA93018E271 /* ExpectationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpectationMessage.swift; path = Sources/Nimble/ExpectationMessage.swift; sourceTree = "<group>"; };
57F4E90F0347C53D0630C95072D99A66 /* SatisfyAnyOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAnyOf.swift; path = Sources/Nimble/Matchers/SatisfyAnyOf.swift; sourceTree = "<group>"; };
5998C441D5A5DAB5C6B55290C9D623D4 /* XCTestSuite+QuickTestSuiteBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestSuite+QuickTestSuiteBuilder.m"; path = "Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m"; sourceTree = "<group>"; };
5A3DC5F96A8F854A74D4B5C25836B8EC /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Sources/Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = "<group>"; };
5BB165DE9617587088AFD408A68F3525 /* 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>"; };
5C38661726B123EAF865287B85709CA1 /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Sources/NimbleObjectiveC/DSL.m; sourceTree = "<group>"; };
5EEA578D7E5B2B5B163D38AF62C256A3 /* ThrowAssertion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowAssertion.swift; path = Sources/Nimble/Matchers/ThrowAssertion.swift; sourceTree = "<group>"; };
612AA6DC76FC2CE94C6B356498610462 /* Pods-SwiftDog_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftDog_Tests-frameworks.sh"; sourceTree = "<group>"; };
623B842C201F4C6AC53CD4EF32D6BD21 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Sources/Quick/ExampleMetadata.swift; sourceTree = "<group>"; };
62ECFE61E095DF5C1A24D947BB71A84F /* QuickSelectedTestSuiteBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickSelectedTestSuiteBuilder.swift; path = Sources/Quick/QuickSelectedTestSuiteBuilder.swift; sourceTree = "<group>"; };
633D7BA162C64C25E971246610C8554F /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.m; sourceTree = "<group>"; };
66E883A9F1BA81549504E5513DC57C58 /* CurrentTestCaseTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CurrentTestCaseTracker.h; path = Sources/NimbleObjectiveC/CurrentTestCaseTracker.h; sourceTree = "<group>"; };
6B73E028EE43C409797029443CFEB3FF /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Sources/Nimble/Matchers/BeNil.swift; sourceTree = "<group>"; };
6B8C9487A1B2A7E9B5BFF3B0D5839E86 /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Sources/Quick/World.swift; sourceTree = "<group>"; };
6BDCB8E638454DCABCA8ADD005EE9B0C /* QuickSpecBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpecBase.h; path = Sources/QuickSpecBase/include/QuickSpecBase.h; sourceTree = "<group>"; };
6C047927761F572FD805B6676D683D4A /* KeychainAccess-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-prefix.pch"; sourceTree = "<group>"; };
6C5728308F2E48B995C535FA85024EEE /* Behavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Behavior.swift; path = Sources/Quick/Behavior.swift; sourceTree = "<group>"; };
6C8EECDC5FA6B0843D3D742CD7F9FEAF /* Pods_SwiftDog_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SwiftDog_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
6E76F173F7E63D69942A852A45770A65 /* Quick.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Quick.modulemap; sourceTree = "<group>"; };
71F9DCB27036010817AE8CA9DF43E1AD /* PostNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PostNotification.swift; path = Sources/Nimble/Matchers/PostNotification.swift; sourceTree = "<group>"; };
74C8AEF59732ADADA22799B8A6E7901E /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Sources/Nimble/Nimble.h; sourceTree = "<group>"; };
74EC54FEF02B29AE7C8FB432B0E563C6 /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Sources/Quick/ExampleGroup.swift; sourceTree = "<group>"; };
77401AFF4E5BC66AA06F4C34E0F5425E /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Sources/Nimble/Matchers/EndWith.swift; sourceTree = "<group>"; };
775F019830840DB71A8C71782EA3DEDB /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Sources/Nimble/Matchers/AllPass.swift; sourceTree = "<group>"; };
7B9C9E5997C2C59DB707CE21BABCBA79 /* CwlBadInstructionException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlBadInstructionException.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift; sourceTree = "<group>"; };
7D058BEDF22937D8E4E981AF5F594AFA /* CwlCatchException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchException.swift; path = Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift; sourceTree = "<group>"; };
7DE896824F7803D7FE8455C55579FA6D /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Sources/Nimble/FailureMessage.swift; sourceTree = "<group>"; };
7E15D2888FAB82184989BB8D5A484563 /* Pods-SwiftDog_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftDog_Example-frameworks.sh"; sourceTree = "<group>"; };
7E659503E25F47F8E3D12E37C6DA2B5C /* KeychainAccess.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KeychainAccess.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7E9E3C1A2E37984C50C8A88349B08E13 /* Pods-SwiftDog_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SwiftDog_Example-dummy.m"; sourceTree = "<group>"; };
7EA236B2EBF6E2506AE6B8B068CB76E6 /* Pods-SwiftDog_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-SwiftDog_Tests.modulemap"; sourceTree = "<group>"; };
7F80315664F4085952E3898FF9C10EDB /* QuickTestSuite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestSuite.swift; path = Sources/Quick/QuickTestSuite.swift; sourceTree = "<group>"; };
8029D635388D59506A1DE291815FCC0E /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Sources/Quick/DSL/World+DSL.swift"; sourceTree = "<group>"; };
81B54AC021F2EAE825F4E6AF10A848EB /* Quick-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-umbrella.h"; sourceTree = "<group>"; };
830C9FB47E4D4338942F7272B35CB159 /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Sources/Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = "<group>"; };
85BD409BED93F1BA2CF983413C4D31A5 /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = "<group>"; };
879257CAE64AF4B3B571CDCBBD906E23 /* Pods-SwiftDog_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftDog_Example-resources.sh"; sourceTree = "<group>"; };
8A9280C88F99B9A950111F564DF493F0 /* SwiftDog.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftDog.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8A98B2D820972D84A93C4B8935B3E2A4 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8DA9C550FA7770B17085A90C390F4D9E /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
8F5CB1C016B316A8AFECC4C7DACAC224 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/Nimble/Utils/Errors.swift; sourceTree = "<group>"; };
8FF5BAB59BC226171258CAA0DBC90664 /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Sources/QuickObjectiveC/QuickSpec.m; sourceTree = "<group>"; };
9178EC855650E8737211522FB4D250E4 /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Sources/Quick/Configuration/Configuration.swift; sourceTree = "<group>"; };
93747A9E7F79391C53C2634D40B0A4A8 /* Nimble-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-umbrella.h"; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
95FFB4F0B2187461D8BE44D2579FDAD8 /* ContainElementSatisfying.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContainElementSatisfying.swift; path = Sources/Nimble/Matchers/ContainElementSatisfying.swift; sourceTree = "<group>"; };
9712B5E9A31202FCAD17256FE9A11345 /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Sources/Nimble/Matchers/RaisesException.swift; sourceTree = "<group>"; };
985C3C19B7A24D102D8D521532E27BE6 /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Sources/Nimble/Matchers/BeAKindOf.swift; sourceTree = "<group>"; };
993D7CCA4F623BB0568A108A0F4E317B /* Quick.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.xcconfig; sourceTree = "<group>"; };
9C330ECB584257D9CCC3AC8B4055F430 /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Sources/Nimble/Matchers/BeGreaterThan.swift; sourceTree = "<group>"; };
9C7B901FE42B2EBBD0FED8CD4DAFE5CF /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Sources/Nimble/Matchers/BeLogical.swift; sourceTree = "<group>"; };
9D1E35076D127E7FA36C7E01D764FF80 /* Pods-SwiftDog_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SwiftDog_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
9D77A43BA3324F8873C116BBE41D8EF3 /* Pods-SwiftDog_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftDog_Example.release.xcconfig"; sourceTree = "<group>"; };
9EF76356FD54FE25F86617F6C1752657 /* IOSAgent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = IOSAgent.swift; sourceTree = "<group>"; };
9F37CC5522267209D67D7D18A7DA1B93 /* Pods-SwiftDog_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SwiftDog_Tests-dummy.m"; sourceTree = "<group>"; };
9FCA9CDEA087B90C9358CB8BB7153A58 /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Sources/QuickObjectiveC/QuickSpec.h; sourceTree = "<group>"; };
A286B1CD9B1B87C780182C6E98A80A96 /* Nimble-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-prefix.pch"; sourceTree = "<group>"; };
A2B33D219B0B8729BF03128A7FE2FC2B /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Nimble/DSL.swift; sourceTree = "<group>"; };
A3BD6C440866F73EDDBD32642F81FF18 /* Nimble.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Nimble.xcconfig; sourceTree = "<group>"; };
A6D706275B0C392DAD857AD7CAD6244D /* CwlPreconditionTesting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlPreconditionTesting.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Mach/CwlPreconditionTesting.h; sourceTree = "<group>"; };
AC0BA7C2BAD67EDE93015F9F07A00DFA /* AsyncMatcherWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncMatcherWrapper.swift; path = Sources/Nimble/Matchers/AsyncMatcherWrapper.swift; sourceTree = "<group>"; };
AEE0EF1E92120EBCC0DEB04F07CFFA1B /* CwlCatchBadInstruction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstruction.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift; sourceTree = "<group>"; };
B1BD2B95523FA5B359F19A349D5C5B3D /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Sources/Nimble/Matchers/BeIdenticalTo.swift; sourceTree = "<group>"; };
B3D7747A26F38802F2BEA1F3DFB17442 /* mach_excServer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mach_excServer.c; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/mach_excServer.c; sourceTree = "<group>"; };
BD1264EC2F7B5D18BCEAC499E18EA4E7 /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Sources/Nimble/Matchers/BeCloseTo.swift; sourceTree = "<group>"; };
BE973F383F820A8FFE77B48E3EC288D9 /* HooksPhase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HooksPhase.swift; path = Sources/Quick/Hooks/HooksPhase.swift; sourceTree = "<group>"; };
C030FD45DF0FF7E64A3333915D4FFD7F /* NimbleEnvironment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleEnvironment.swift; path = Sources/Nimble/Adapters/NimbleEnvironment.swift; sourceTree = "<group>"; };
C6F3703A5E7E8D4B2331AC879BFC21F2 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Quick/Filter.swift; sourceTree = "<group>"; };
C787AEF689AEEA473D3F79C5C5EEC009 /* Pods-SwiftDog_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SwiftDog_Example-acknowledgements.plist"; sourceTree = "<group>"; };
C9C17152A584A0D4145C5C5EC699282A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
CAC31CAD7406857DB1E71932ED895B1E /* SwiftDog.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SwiftDog.modulemap; sourceTree = "<group>"; };
CB19E566597FD48DABD331B36202C8AE /* Pods-SwiftDog_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SwiftDog_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
CB46B83D12D3001F43E30D308E9E619F /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Sources/Nimble/Expression.swift; sourceTree = "<group>"; };
CCC92586830E94E400BDAE26B485A014 /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Sources/NimbleObjectiveC/DSL.h; sourceTree = "<group>"; };
CD6D2DF4D3E5EC0BF6B8C7F65B4BBD53 /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Sources/Nimble/Matchers/BeLessThan.swift; sourceTree = "<group>"; };
CEA15A8C2CF30293A99D8755C0B6A0CF /* KeychainAccess-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeychainAccess-dummy.m"; sourceTree = "<group>"; };
D2577A4E282E18D6601EA64DE9536DFA /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Sources/Nimble/Matchers/HaveCount.swift; sourceTree = "<group>"; };
D2D14A92E8C1A921D506BBBC33D2FAD9 /* NSBundle+CurrentTestBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSBundle+CurrentTestBundle.swift"; path = "Sources/Quick/NSBundle+CurrentTestBundle.swift"; sourceTree = "<group>"; };
D3D6DD0F1BFAEBBECB2A819DF50A6CB7 /* Quick-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-prefix.pch"; sourceTree = "<group>"; };
D47741BBECD9A4F187E3187F4F0AD6CF /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Sources/Nimble/Matchers/Match.swift; sourceTree = "<group>"; };
D5229C29A1D0FF02FC990A211627FC62 /* Pods-SwiftDog_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SwiftDog_Tests-umbrella.h"; sourceTree = "<group>"; };
D57980EBBECB1BEE165D9ABCBBA2F694 /* KeychainAccess.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = KeychainAccess.modulemap; sourceTree = "<group>"; };
D63A215878807FAFB8B3F958FB495805 /* QuickSpecBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpecBase.m; path = Sources/QuickSpecBase/QuickSpecBase.m; sourceTree = "<group>"; };
D7FBF1BD0EC72EB36DC869935EF4204F /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Sources/Quick/Hooks/SuiteHooks.swift; sourceTree = "<group>"; };
DA23CC2264618F259CB8DFB4C8388983 /* ErrorUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErrorUtility.swift; path = Sources/Quick/ErrorUtility.swift; sourceTree = "<group>"; };
DA7E121F5415197AFD91235C008B559C /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Wait.swift"; path = "Sources/Nimble/DSL+Wait.swift"; sourceTree = "<group>"; };
DD6E6791C8334521A6245048A2C601BD /* Functional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Functional.swift; path = Sources/Nimble/Utils/Functional.swift; sourceTree = "<group>"; };
DE3B9ED2D4D827123E458FD68A8C8652 /* Predicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Predicate.swift; path = Sources/Nimble/Matchers/Predicate.swift; sourceTree = "<group>"; };
DF504CA4786E79300A227C9D2E78C9B1 /* World+DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "World+DSL.h"; path = "Sources/QuickObjectiveC/DSL/World+DSL.h"; sourceTree = "<group>"; };
DFA5E76DCA22628D169DD6C30C6C8E9A /* BeVoid.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeVoid.swift; path = Sources/Nimble/Matchers/BeVoid.swift; sourceTree = "<group>"; };
E0CC96EB28317DADED964279ED9C73A7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
E3895BAF6E40593417B6E4E9E33FFCB0 /* SwiftDog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftDog-dummy.m"; sourceTree = "<group>"; };
E42CACF2DA6524425E3FC6EAA086CCF4 /* Pods-SwiftDog_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-SwiftDog_Example.modulemap"; sourceTree = "<group>"; };
E469B3E3ECFB4CA37ABA3A37BE0F6D58 /* MatchError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatchError.swift; path = Sources/Nimble/Matchers/MatchError.swift; sourceTree = "<group>"; };
E595AEFC20AF580B002DDF68 /* Authentication.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Authentication.swift; sourceTree = "<group>"; };
E595AEFE20AF618E002DDF68 /* EventData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventData.swift; sourceTree = "<group>"; };
E595AF0020AF6218002DDF68 /* MetricData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MetricData.swift; sourceTree = "<group>"; };
E90840E5916EB122714B8DB9378FFDC9 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Quick/DSL/DSL.swift; sourceTree = "<group>"; };
E98BD4A62DFCC168F4019B0B43EC0549 /* Nimble.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };
EA359B9719A11902339CCC33857A4B82 /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Sources/Nimble/Matchers/BeginWith.swift; sourceTree = "<group>"; };
EB6E60DE42825C0AF064D069DE7A7C2F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
EBB7E3D333F4149EFEB0A74B784B0B61 /* NMBStringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBStringify.h; path = Sources/NimbleObjectiveC/NMBStringify.h; sourceTree = "<group>"; };
EC59ED4C6C76E6E82309046527B11A65 /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Sources/QuickObjectiveC/DSL/QCKDSL.h; sourceTree = "<group>"; };
ED2F7F5369234279947DD8F3AD77EE36 /* Pods-SwiftDog_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftDog_Example.debug.xcconfig"; sourceTree = "<group>"; };
ED770D0EDD3B9EADCEA218C2A4EFB448 /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.h; sourceTree = "<group>"; };
F06CF3279AD1CE7F55F1582D42C6CF01 /* KeychainAccess-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainAccess-umbrella.h"; sourceTree = "<group>"; };
F1039F4B57845878829F817363E753FC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
F2000BE4B3DE96CD6C2E1C239AB22503 /* Datadog.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Datadog.swift; sourceTree = "<group>"; };
F2BCFA479A8338F217749DE1BA2321C1 /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Sources/Quick/Hooks/Closures.swift; sourceTree = "<group>"; };
F3237B251C7D6A8B0E6136B8E5366101 /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Sources/Quick/Hooks/ExampleHooks.swift; sourceTree = "<group>"; };
F849B697CCD81FB489BD6319AB381338 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
F967EDF677E3F853BC8C97FD12E4C185 /* CwlMachBadInstructionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlMachBadInstructionHandler.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h; sourceTree = "<group>"; };
F96F77022AB5B43672D5951FF56EE7D8 /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Sources/Nimble/Utils/SourceLocation.swift; sourceTree = "<group>"; };
FC68E7DEA5B742423E9AB357A37BB2FF /* Keychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Keychain.swift; path = Lib/KeychainAccess/Keychain.swift; sourceTree = "<group>"; };
FE65115F35E1DB668A27C2560024EB9C /* SwiftDog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftDog-prefix.pch"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
2DDC844C06D46A3907C42C9964BC7434 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
E8EACF383D5FC840CC04A183FAD043EC /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
564CFFA6E1F7AE925876897298B69BFC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
1C06010FC4277C50D7D1227FA5FED82D /* Foundation.framework in Frameworks */,
F19A31499F2C415F24744006E3A8FD4E /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7D3E95AACB4217EBBC6D593B14C0E14C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
07909679B907EFBBE529C156CD52A339 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
819A9B65073BE3B5599196C0A3B27EBC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
4EE25FA4C2596266104AE032D4844349 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A1A7D0D69EB6F634AC72726BA1E18C52 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B50EFC6A37BCC369D20A97C7AFFA4909 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DF9FFF1B7AFF829BC946E80884A828A7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
43D6E730C05B6803B021B66438BCFE26 /* Foundation.framework in Frameworks */,
6716D0C7EB19B91519C7A99C05E2AE9D /* KeychainAccess.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
014FE384E94786B4FD6CF2F04F31E6B0 /* Pods */ = {
isa = PBXGroup;
children = (
7E4FED99D877A2D0A88A56656C69FDAE /* KeychainAccess */,
47979BACC5DAB6A566A7C7EE8911F4AA /* Nimble */,
A69FC02E3135B2C56C6782BA13452A59 /* Quick */,
);
name = Pods;
sourceTree = "<group>";
};
0E2564732ADFB24040F059A1E860ECC6 /* Support Files */ = {
isa = PBXGroup;
children = (
E0CC96EB28317DADED964279ED9C73A7 /* Info.plist */,
CAC31CAD7406857DB1E71932ED895B1E /* SwiftDog.modulemap */,
524831F5C55C7CD658CAB75570698FB7 /* SwiftDog.xcconfig */,
E3895BAF6E40593417B6E4E9E33FFCB0 /* SwiftDog-dummy.m */,
FE65115F35E1DB668A27C2560024EB9C /* SwiftDog-prefix.pch */,
553E684535CB84D88BEA1AB6F10823DE /* SwiftDog-umbrella.h */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/SwiftDog";
sourceTree = "<group>";
};
15E4DF852094D71961F27948FEE1BF8D /* SwiftDog */ = {
isa = PBXGroup;
children = (
F19AC7DDEC3420C7BFC6197E00642E2D /* Classes */,
);
path = SwiftDog;
sourceTree = "<group>";
};
1C156AD0C5C85F7139AE5BF629E2FFED /* Pods-SwiftDog_Example */ = {
isa = PBXGroup;
children = (
F849B697CCD81FB489BD6319AB381338 /* Info.plist */,
E42CACF2DA6524425E3FC6EAA086CCF4 /* Pods-SwiftDog_Example.modulemap */,
2BDA3A419B70F93F410D09ACF8648441 /* Pods-SwiftDog_Example-acknowledgements.markdown */,
C787AEF689AEEA473D3F79C5C5EEC009 /* Pods-SwiftDog_Example-acknowledgements.plist */,
7E9E3C1A2E37984C50C8A88349B08E13 /* Pods-SwiftDog_Example-dummy.m */,
7E15D2888FAB82184989BB8D5A484563 /* Pods-SwiftDog_Example-frameworks.sh */,
879257CAE64AF4B3B571CDCBBD906E23 /* Pods-SwiftDog_Example-resources.sh */,
14309058A882FFA8351337B616A4172B /* Pods-SwiftDog_Example-umbrella.h */,
ED2F7F5369234279947DD8F3AD77EE36 /* Pods-SwiftDog_Example.debug.xcconfig */,
9D77A43BA3324F8873C116BBE41D8EF3 /* Pods-SwiftDog_Example.release.xcconfig */,
);
name = "Pods-SwiftDog_Example";
path = "Target Support Files/Pods-SwiftDog_Example";
sourceTree = "<group>";
};
1F60855A67180457FB88458E22B6BCB2 /* Products */ = {
isa = PBXGroup;
children = (
7E659503E25F47F8E3D12E37C6DA2B5C /* KeychainAccess.framework */,
E98BD4A62DFCC168F4019B0B43EC0549 /* Nimble.framework */,
4E5620FF431620AF21B5DFEE8EBC828C /* Pods_SwiftDog_Example.framework */,
6C8EECDC5FA6B0843D3D742CD7F9FEAF /* Pods_SwiftDog_Tests.framework */,
32E2F984563FFF5097D834F46269B9B2 /* Quick.framework */,
8A9280C88F99B9A950111F564DF493F0 /* SwiftDog.framework */,
);
name = Products;
sourceTree = "<group>";
};
2D10C843B152AAF5E1F655B34A638C30 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
1C156AD0C5C85F7139AE5BF629E2FFED /* Pods-SwiftDog_Example */,
7D0CD5B74F0FF02313998A46AC625C9C /* Pods-SwiftDog_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
34A74405AC26BD0883C3476B398C9302 /* Development Pods */ = {
isa = PBXGroup;
children = (
9663781D8560BF6FC59595A9D3A2A9E7 /* SwiftDog */,
);
name = "Development Pods";
sourceTree = "<group>";
};
390DB5A8F476F8C107AE88513430C52E /* Support Files */ = {
isa = PBXGroup;
children = (
8A98B2D820972D84A93C4B8935B3E2A4 /* Info.plist */,
D57980EBBECB1BEE165D9ABCBBA2F694 /* KeychainAccess.modulemap */,
53C16EC344EEAB646619E7D00B408F3B /* KeychainAccess.xcconfig */,
CEA15A8C2CF30293A99D8755C0B6A0CF /* KeychainAccess-dummy.m */,
6C047927761F572FD805B6676D683D4A /* KeychainAccess-prefix.pch */,
F06CF3279AD1CE7F55F1582D42C6CF01 /* KeychainAccess-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/KeychainAccess";
sourceTree = "<group>";
};
43EF2659B6ACCC96DB7ABD42B529179F /* Support Files */ = {
isa = PBXGroup;
children = (
2C21330B601D64CD28BF0CDC5E54875A /* Info.plist */,
36897A3037BBF09690ECA1E4DCE0DF3D /* Nimble.modulemap */,
A3BD6C440866F73EDDBD32642F81FF18 /* Nimble.xcconfig */,
0751EB737635E1F3A98CB8F6B99A3E93 /* Nimble-dummy.m */,
A286B1CD9B1B87C780182C6E98A80A96 /* Nimble-prefix.pch */,
93747A9E7F79391C53C2634D40B0A4A8 /* Nimble-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Nimble";
sourceTree = "<group>";
};
47979BACC5DAB6A566A7C7EE8911F4AA /* Nimble */ = {
isa = PBXGroup;
children = (
04D644CB8B83D0C64A7445234C5262C4 /* AdapterProtocols.swift */,
775F019830840DB71A8C71782EA3DEDB /* AllPass.swift */,
1E25A20BB677EB9EFA151D3889A31E24 /* AssertionDispatcher.swift */,
1AF206210A20594DA0A559AD514BDB68 /* AssertionRecorder.swift */,
01B9C122B4B3AB58A433CF918413320D /* Async.swift */,
AC0BA7C2BAD67EDE93015F9F07A00DFA /* AsyncMatcherWrapper.swift */,
985C3C19B7A24D102D8D521532E27BE6 /* BeAKindOf.swift */,
31060BD3DF609127635EEFC6B68215C3 /* BeAnInstanceOf.swift */,
BD1264EC2F7B5D18BCEAC499E18EA4E7 /* BeCloseTo.swift */,
302D9E43032B4EA7F91B47663D78E7EF /* BeEmpty.swift */,
EA359B9719A11902339CCC33857A4B82 /* BeginWith.swift */,
9C330ECB584257D9CCC3AC8B4055F430 /* BeGreaterThan.swift */,
85BD409BED93F1BA2CF983413C4D31A5 /* BeGreaterThanOrEqualTo.swift */,
B1BD2B95523FA5B359F19A349D5C5B3D /* BeIdenticalTo.swift */,
CD6D2DF4D3E5EC0BF6B8C7F65B4BBD53 /* BeLessThan.swift */,
830C9FB47E4D4338942F7272B35CB159 /* BeLessThanOrEqual.swift */,
9C7B901FE42B2EBBD0FED8CD4DAFE5CF /* BeLogical.swift */,
6B73E028EE43C409797029443CFEB3FF /* BeNil.swift */,
DFA5E76DCA22628D169DD6C30C6C8E9A /* BeVoid.swift */,
2B1D7B8D8C2849178AC6CEB4DA3E0557 /* Contain.swift */,
95FFB4F0B2187461D8BE44D2579FDAD8 /* ContainElementSatisfying.swift */,
66E883A9F1BA81549504E5513DC57C58 /* CurrentTestCaseTracker.h */,
7B9C9E5997C2C59DB707CE21BABCBA79 /* CwlBadInstructionException.swift */,
AEE0EF1E92120EBCC0DEB04F07CFFA1B /* CwlCatchBadInstruction.swift */,
31ED447A2BD2063ADDE94BE1A8B65A03 /* CwlCatchException.h */,
06CA5B2528EF8D51A93A658C9768B049 /* CwlCatchException.m */,
7D058BEDF22937D8E4E981AF5F594AFA /* CwlCatchException.swift */,
17D7327C95C53E892A62581DA59F0A6B /* CwlDarwinDefinitions.swift */,
F967EDF677E3F853BC8C97FD12E4C185 /* CwlMachBadInstructionHandler.h */,
05795DB188F2D188E970AB8799459A38 /* CwlMachBadInstructionHandler.m */,
A6D706275B0C392DAD857AD7CAD6244D /* CwlPreconditionTesting.h */,
CCC92586830E94E400BDAE26B485A014 /* DSL.h */,
5C38661726B123EAF865287B85709CA1 /* DSL.m */,
A2B33D219B0B8729BF03128A7FE2FC2B /* DSL.swift */,
DA7E121F5415197AFD91235C008B559C /* DSL+Wait.swift */,
77401AFF4E5BC66AA06F4C34E0F5425E /* EndWith.swift */,
26666B9D97BC102A1FFDF7B21DD81D11 /* Equal.swift */,
8F5CB1C016B316A8AFECC4C7DACAC224 /* Errors.swift */,
3B329B28D2DEF44887FB6D66AF056136 /* Expectation.swift */,
578E57C6E02F4677402DBFA93018E271 /* ExpectationMessage.swift */,
CB46B83D12D3001F43E30D308E9E619F /* Expression.swift */,
7DE896824F7803D7FE8455C55579FA6D /* FailureMessage.swift */,
DD6E6791C8334521A6245048A2C601BD /* Functional.swift */,
D2577A4E282E18D6601EA64DE9536DFA /* HaveCount.swift */,
B3D7747A26F38802F2BEA1F3DFB17442 /* mach_excServer.c */,
5BB165DE9617587088AFD408A68F3525 /* mach_excServer.h */,
D47741BBECD9A4F187E3187F4F0AD6CF /* Match.swift */,
16913DC7BE1491784F3B499E570E93A1 /* MatcherFunc.swift */,
23AE763E5A0ED7BD7D9340942320AF84 /* MatcherProtocols.swift */,
E469B3E3ECFB4CA37ABA3A37BE0F6D58 /* MatchError.swift */,
74C8AEF59732ADADA22799B8A6E7901E /* Nimble.h */,
C030FD45DF0FF7E64A3333915D4FFD7F /* NimbleEnvironment.swift */,
5A3DC5F96A8F854A74D4B5C25836B8EC /* NimbleXCTestHandler.swift */,
391B60B566A92977169E60A07DDDD9DD /* NMBExceptionCapture.h */,
188A29A85EB6F5D6DF78224210040401 /* NMBExceptionCapture.m */,
11F9E959A5F421BB5D1E1ADEB73C110D /* NMBExpectation.swift */,
075C42365A5ADD4121FC344C2BEC046B /* NMBObjCMatcher.swift */,
EBB7E3D333F4149EFEB0A74B784B0B61 /* NMBStringify.h */,
0E872773F904815925CD9E36A32AD8B6 /* NMBStringify.m */,
71F9DCB27036010817AE8CA9DF43E1AD /* PostNotification.swift */,
DE3B9ED2D4D827123E458FD68A8C8652 /* Predicate.swift */,
9712B5E9A31202FCAD17256FE9A11345 /* RaisesException.swift */,
57F4E90F0347C53D0630C95072D99A66 /* SatisfyAnyOf.swift */,
F96F77022AB5B43672D5951FF56EE7D8 /* SourceLocation.swift */,
2DAD56FCAC57BB67CA9D205B1B9789F7 /* Stringers.swift */,
5EEA578D7E5B2B5B163D38AF62C256A3 /* ThrowAssertion.swift */,
1E3A83C952FA8F869FD4B37124EE20F5 /* ThrowError.swift */,
4DF2A2AF527993833F0CAA153818776C /* ToSucceed.swift */,
001BBB786B569E07D06FDFC0CE3DCCF1 /* XCTestObservationCenter+Register.m */,
43EF2659B6ACCC96DB7ABD42B529179F /* Support Files */,
);
path = Nimble;
sourceTree = "<group>";
};
5379DCCAA7FAE20E11DCC297F20A63D5 /* Support Files */ = {
isa = PBXGroup;
children = (
C9C17152A584A0D4145C5C5EC699282A /* Info.plist */,
6E76F173F7E63D69942A852A45770A65 /* Quick.modulemap */,
993D7CCA4F623BB0568A108A0F4E317B /* Quick.xcconfig */,
1338869D989A9427749BFB1EBEB34710 /* Quick-dummy.m */,
D3D6DD0F1BFAEBBECB2A819DF50A6CB7 /* Quick-prefix.pch */,
81B54AC021F2EAE825F4E6AF10A848EB /* Quick-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Quick";
sourceTree = "<group>";
};
6053EC5E4791C55C623043FDD8064B1E /* Frameworks */ = {
isa = PBXGroup;
children = (
50EADC46058E4AC2D88B2B8AB4679A31 /* KeychainAccess.framework */,
72B354F784455B2644CB79BA93F9A944 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
72B354F784455B2644CB79BA93F9A944 /* iOS */ = {
isa = PBXGroup;
children = (
EB6E60DE42825C0AF064D069DE7A7C2F /* Foundation.framework */,
8DA9C550FA7770B17085A90C390F4D9E /* XCTest.framework */,
);
name = iOS;
sourceTree = "<group>";
};
7D0CD5B74F0FF02313998A46AC625C9C /* Pods-SwiftDog_Tests */ = {
isa = PBXGroup;
children = (
F1039F4B57845878829F817363E753FC /* Info.plist */,
7EA236B2EBF6E2506AE6B8B068CB76E6 /* Pods-SwiftDog_Tests.modulemap */,
CB19E566597FD48DABD331B36202C8AE /* Pods-SwiftDog_Tests-acknowledgements.markdown */,
9D1E35076D127E7FA36C7E01D764FF80 /* Pods-SwiftDog_Tests-acknowledgements.plist */,
9F37CC5522267209D67D7D18A7DA1B93 /* Pods-SwiftDog_Tests-dummy.m */,
612AA6DC76FC2CE94C6B356498610462 /* Pods-SwiftDog_Tests-frameworks.sh */,
001E787522589996FF826DC65B705A81 /* Pods-SwiftDog_Tests-resources.sh */,
D5229C29A1D0FF02FC990A211627FC62 /* Pods-SwiftDog_Tests-umbrella.h */,
3FC03E836FCFA193F41C8E9C35890985 /* Pods-SwiftDog_Tests.debug.xcconfig */,
4B5AA79E85CAB048BA82A23EFC3E43A8 /* Pods-SwiftDog_Tests.release.xcconfig */,
);
name = "Pods-SwiftDog_Tests";
path = "Target Support Files/Pods-SwiftDog_Tests";
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
34A74405AC26BD0883C3476B398C9302 /* Development Pods */,
6053EC5E4791C55C623043FDD8064B1E /* Frameworks */,
014FE384E94786B4FD6CF2F04F31E6B0 /* Pods */,
1F60855A67180457FB88458E22B6BCB2 /* Products */,
2D10C843B152AAF5E1F655B34A638C30 /* Targets Support Files */,
);
sourceTree = "<group>";
};
7E4FED99D877A2D0A88A56656C69FDAE /* KeychainAccess */ = {
isa = PBXGroup;
children = (
FC68E7DEA5B742423E9AB357A37BB2FF /* Keychain.swift */,
390DB5A8F476F8C107AE88513430C52E /* Support Files */,
);
path = KeychainAccess;
sourceTree = "<group>";
};
9663781D8560BF6FC59595A9D3A2A9E7 /* SwiftDog */ = {
isa = PBXGroup;
children = (
0E2564732ADFB24040F059A1E860ECC6 /* Support Files */,
15E4DF852094D71961F27948FEE1BF8D /* SwiftDog */,
);
name = SwiftDog;
path = ../..;
sourceTree = "<group>";
};
A69FC02E3135B2C56C6782BA13452A59 /* Quick */ = {
isa = PBXGroup;
children = (
6C5728308F2E48B995C535FA85024EEE /* Behavior.swift */,
0693A1E55592A27B1AE99FAB0CC36990 /* Callsite.swift */,
F2BCFA479A8338F217749DE1BA2321C1 /* Closures.swift */,
9178EC855650E8737211522FB4D250E4 /* Configuration.swift */,
E90840E5916EB122714B8DB9378FFDC9 /* DSL.swift */,
DA23CC2264618F259CB8DFB4C8388983 /* ErrorUtility.swift */,
0CBC4FF8CF1FA52360C2A3884A99C2A7 /* Example.swift */,
74EC54FEF02B29AE7C8FB432B0E563C6 /* ExampleGroup.swift */,
F3237B251C7D6A8B0E6136B8E5366101 /* ExampleHooks.swift */,
623B842C201F4C6AC53CD4EF32D6BD21 /* ExampleMetadata.swift */,
C6F3703A5E7E8D4B2331AC879BFC21F2 /* Filter.swift */,
BE973F383F820A8FFE77B48E3EC288D9 /* HooksPhase.swift */,
D2D14A92E8C1A921D506BBBC33D2FAD9 /* NSBundle+CurrentTestBundle.swift */,
3F0EB1083E4851113EC893B4BC46DC8A /* NSString+C99ExtendedIdentifier.swift */,
EC59ED4C6C76E6E82309046527B11A65 /* QCKDSL.h */,
1E0B1E13F67C647317B5875020EA7B5C /* QCKDSL.m */,
29508E22F43C6FA6862275FE9F07E25A /* Quick.h */,
ED770D0EDD3B9EADCEA218C2A4EFB448 /* QuickConfiguration.h */,
633D7BA162C64C25E971246610C8554F /* QuickConfiguration.m */,
62ECFE61E095DF5C1A24D947BB71A84F /* QuickSelectedTestSuiteBuilder.swift */,
9FCA9CDEA087B90C9358CB8BB7153A58 /* QuickSpec.h */,
8FF5BAB59BC226171258CAA0DBC90664 /* QuickSpec.m */,
6BDCB8E638454DCABCA8ADD005EE9B0C /* QuickSpecBase.h */,
D63A215878807FAFB8B3F958FB495805 /* QuickSpecBase.m */,
7F80315664F4085952E3898FF9C10EDB /* QuickTestSuite.swift */,
D7FBF1BD0EC72EB36DC869935EF4204F /* SuiteHooks.swift */,
3882790C5CC356F8FDD2630BFBF8BD94 /* URL+FileName.swift */,
3DC1A687754842CDFA0C08AF6291D76E /* World.h */,
6B8C9487A1B2A7E9B5BFF3B0D5839E86 /* World.swift */,
DF504CA4786E79300A227C9D2E78C9B1 /* World+DSL.h */,
8029D635388D59506A1DE291815FCC0E /* World+DSL.swift */,
5998C441D5A5DAB5C6B55290C9D623D4 /* XCTestSuite+QuickTestSuiteBuilder.m */,
5379DCCAA7FAE20E11DCC297F20A63D5 /* Support Files */,
);
path = Quick;
sourceTree = "<group>";
};
F19AC7DDEC3420C7BFC6197E00642E2D /* Classes */ = {
isa = PBXGroup;
children = (
F2000BE4B3DE96CD6C2E1C239AB22503 /* Datadog.swift */,
1DEC499AAE6C4B7AF36296E6A114FFD3 /* Event.swift */,
9EF76356FD54FE25F86617F6C1752657 /* IOSAgent.swift */,
0F25079DA8B9D0C575B2B60A48563ACF /* Metric.swift */,
0FCA38101E1DE2677DF1DA7D40C29BFB /* Types.swift */,
E595AEFC20AF580B002DDF68 /* Authentication.swift */,
E595AEFE20AF618E002DDF68 /* EventData.swift */,
E595AF0020AF6218002DDF68 /* MetricData.swift */,
);
path = Classes;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
0A86FF0B50BD0728EA9653F47BA8A83A /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
21D4EA3E23FC09E9DF97E1A29B224AF9 /* Pods-SwiftDog_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
580543820A5F2AB99A79BCF5E944A0A2 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
7CFDC5EE552E9852B227BF0136EE0EF5 /* SwiftDog-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6A4C146CFA33E6167049F4C98C62ADC1 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
622DB041FE16BB5A356FEC92CD19FA0D /* QCKDSL.h in Headers */,
DF298610414C09E123B3666D050F371D /* Quick-umbrella.h in Headers */,
BBB344105B2DA8786F123DFA0597681E /* Quick.h in Headers */,
4C37841EA4241495CD63C8A710A69BD9 /* QuickConfiguration.h in Headers */,
669B62106E5719BC51E1EE8D1F940296 /* QuickSpec.h in Headers */,
A748892B8C4750235F4A28AD3C32F028 /* QuickSpecBase.h in Headers */,
C35C2BE6043462D78685A80D209D2081 /* World+DSL.h in Headers */,
92E0B8FA5E1DEC8ED2103272832C987E /* World.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7CD0ED0A00BA1B6545F62F7B9C53F6F5 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
22C2E874D544C8F2A92090A2C907B069 /* Pods-SwiftDog_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
85497845823171A47E23A59621A44463 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
5AB9DB61D62D8BF7B1C734B373F361E7 /* CurrentTestCaseTracker.h in Headers */,
AAA2830BBCD86431B3EEB0ED968DF4A3 /* CwlCatchException.h in Headers */,
35CADB1AD8E063A35DF68147F3183206 /* CwlMachBadInstructionHandler.h in Headers */,
69B80157634D6FAF248D37F397732357 /* CwlPreconditionTesting.h in Headers */,
FB433A84B0A557CD5E5948A8B6705024 /* DSL.h in Headers */,
6593C547A71CCEFC480CD578080A327F /* mach_excServer.h in Headers */,
5DBCC0E4C72649C9A39A00D40D944DDA /* Nimble-umbrella.h in Headers */,
0A2CA8B0DD7E300ABFCF1956E6B58248 /* Nimble.h in Headers */,
22E9F6FA56858A5F7A5D664E5968ECB0 /* NMBExceptionCapture.h in Headers */,
96132E7432F8DD315A88A07C6B4F9C72 /* NMBStringify.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
93DE0E803396B824DE9F75CA3683CEC3 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
BDA750A5542A5D826A35B1BE6A69574A /* KeychainAccess-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
06CA862C3BDD2FB05C2873C56CDBCCAB /* SwiftDog */ = {
isa = PBXNativeTarget;
buildConfigurationList = 695AE5598174E11746E8B0CC5163D606 /* Build configuration list for PBXNativeTarget "SwiftDog" */;
buildPhases = (
F195E646FBE8BF3AEE215E4035E098FE /* Sources */,
DF9FFF1B7AFF829BC946E80884A828A7 /* Frameworks */,
580543820A5F2AB99A79BCF5E944A0A2 /* Headers */,
);
buildRules = (
);
dependencies = (
993C2A2BF8759D92FD858010D9657789 /* PBXTargetDependency */,
);
name = SwiftDog;
productName = SwiftDog;
productReference = 8A9280C88F99B9A950111F564DF493F0 /* SwiftDog.framework */;
productType = "com.apple.product-type.framework";
};
448F0EFEA6E5283639AECD3B3FD6502B /* Quick */ = {
isa = PBXNativeTarget;
buildConfigurationList = 8FA41A7D396E4E5FF65D8B1D301332EA /* Build configuration list for PBXNativeTarget "Quick" */;
buildPhases = (
607CAE5CAAB19ACA4AA4F3A863415E93 /* Sources */,
564CFFA6E1F7AE925876897298B69BFC /* Frameworks */,
6A4C146CFA33E6167049F4C98C62ADC1 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = Quick;
productName = Quick;
productReference = 32E2F984563FFF5097D834F46269B9B2 /* Quick.framework */;
productType = "com.apple.product-type.framework";
};
8905DB6521F8FDC34752B69DEE3FDEB7 /* KeychainAccess */ = {
isa = PBXNativeTarget;
buildConfigurationList = 9FA048BBEA093CDB3F69C5B36929A5AF /* Build configuration list for PBXNativeTarget "KeychainAccess" */;
buildPhases = (
D26A24617ECAE11F29337DC26BE0E14F /* Sources */,
2DDC844C06D46A3907C42C9964BC7434 /* Frameworks */,
93DE0E803396B824DE9F75CA3683CEC3 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = KeychainAccess;
productName = KeychainAccess;
productReference = 7E659503E25F47F8E3D12E37C6DA2B5C /* KeychainAccess.framework */;
productType = "com.apple.product-type.framework";
};
C335F400ECEBCE3957A138F5EE850FC5 /* Pods-SwiftDog_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = B38CADB1C78504BDDB4C2B976CBCCB39 /* Build configuration list for PBXNativeTarget "Pods-SwiftDog_Example" */;
buildPhases = (
68421E09293D7DAEF1D23AD8F5E8D9D2 /* Sources */,
A1A7D0D69EB6F634AC72726BA1E18C52 /* Frameworks */,
0A86FF0B50BD0728EA9653F47BA8A83A /* Headers */,
);
buildRules = (
);
dependencies = (
C6696C4927A4EE9E6036ECB13B894F12 /* PBXTargetDependency */,
BDAA879D15C1346E2E561E42110BFB2F /* PBXTargetDependency */,
);
name = "Pods-SwiftDog_Example";
productName = "Pods-SwiftDog_Example";
productReference = 4E5620FF431620AF21B5DFEE8EBC828C /* Pods_SwiftDog_Example.framework */;
productType = "com.apple.product-type.framework";
};
DD7C8BF89FE8053D0A2A2D88BB49CF07 /* Nimble */ = {
isa = PBXNativeTarget;
buildConfigurationList = 439502BDB29394EE0D69336E69C8494C /* Build configuration list for PBXNativeTarget "Nimble" */;
buildPhases = (
3B8E072FBCB923980AC89BAC33C449B9 /* Sources */,
819A9B65073BE3B5599196C0A3B27EBC /* Frameworks */,
85497845823171A47E23A59621A44463 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = Nimble;
productName = Nimble;
productReference = E98BD4A62DFCC168F4019B0B43EC0549 /* Nimble.framework */;
productType = "com.apple.product-type.framework";
};
F634538B9EF826FCB44DE59C38122B1B /* Pods-SwiftDog_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = C8D82938C2109CF9C196F20404D5E636 /* Build configuration list for PBXNativeTarget "Pods-SwiftDog_Tests" */;
buildPhases = (
AEA2C89D9D3FA33745581058854EC1BD /* Sources */,
7D3E95AACB4217EBBC6D593B14C0E14C /* Frameworks */,
7CD0ED0A00BA1B6545F62F7B9C53F6F5 /* Headers */,
);
buildRules = (
);
dependencies = (
168F02B07AB94883EFA923A357A68483 /* PBXTargetDependency */,
00D3BDF285705AE6C063E87774EF9ED8 /* PBXTargetDependency */,
FAED327921025A28863D0133AADFCCAF /* PBXTargetDependency */,
BA62684893C63C713166378C76F76E26 /* PBXTargetDependency */,
);
name = "Pods-SwiftDog_Tests";
productName = "Pods-SwiftDog_Tests";
productReference = 6C8EECDC5FA6B0843D3D742CD7F9FEAF /* Pods_SwiftDog_Tests.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0730;
LastUpgradeCheck = 0930;
};
buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
productRefGroup = 1F60855A67180457FB88458E22B6BCB2 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
8905DB6521F8FDC34752B69DEE3FDEB7 /* KeychainAccess */,
DD7C8BF89FE8053D0A2A2D88BB49CF07 /* Nimble */,
C335F400ECEBCE3957A138F5EE850FC5 /* Pods-SwiftDog_Example */,
F634538B9EF826FCB44DE59C38122B1B /* Pods-SwiftDog_Tests */,
448F0EFEA6E5283639AECD3B3FD6502B /* Quick */,
06CA862C3BDD2FB05C2873C56CDBCCAB /* SwiftDog */,
);
};
/* End PBXProject section */
/* Begin PBXSourcesBuildPhase section */
3B8E072FBCB923980AC89BAC33C449B9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
F9649DD59BAEE88C6864EEFE73ECA88C /* AdapterProtocols.swift in Sources */,
DF026F6F406A4FB6CEA63B0A4B9E27DD /* AllPass.swift in Sources */,
32B38992751B96F21324BFC9923BFCBD /* AssertionDispatcher.swift in Sources */,
73BC5AC2ECDB8722E085F14B53E0D24E /* AssertionRecorder.swift in Sources */,
B2C151B20635A480E1937E3D2B509BB4 /* Async.swift in Sources */,
EAAA05EBBC34225C0DB45797712E24A1 /* AsyncMatcherWrapper.swift in Sources */,
7E0C9AE6468A5DF91F0F4C7A387D725C /* BeAKindOf.swift in Sources */,
C1D862177DC2999FAC710AC25F253BD0 /* BeAnInstanceOf.swift in Sources */,
BF3B7218901760A6226C7F6346BEF454 /* BeCloseTo.swift in Sources */,
58C0125D796A97541FDE3414001D8A92 /* BeEmpty.swift in Sources */,
CCDAF11E7AF29E720C587B038145F622 /* BeginWith.swift in Sources */,
AF1174085D9BC5D50FCE0480E9C2BE94 /* BeGreaterThan.swift in Sources */,
58D964317DFBB10F54A273CB12843017 /* BeGreaterThanOrEqualTo.swift in Sources */,
F4BD249C60F21F5E0F7C1FAC8A5BC2AF /* BeIdenticalTo.swift in Sources */,
B102ABE4E54B71B3D2C2118E2782FAB9 /* BeLessThan.swift in Sources */,
75538A8B20C7A20AF3D54BBF35D56FFE /* BeLessThanOrEqual.swift in Sources */,
1E1CE28FFCCD7499620B47C910E9B9E9 /* BeLogical.swift in Sources */,
75ABB48E3C30C2D736C3D05D6FD566A8 /* BeNil.swift in Sources */,
3C66D2692E811DAE57A244A67E7AC555 /* BeVoid.swift in Sources */,
A74537420FF0CEDC6B9E82E1DC4C2B15 /* Contain.swift in Sources */,
25D1805055756CAA69A167CA03B2465C /* ContainElementSatisfying.swift in Sources */,
A272932A4DF9AC2D3B0A21AC70606F6D /* CwlBadInstructionException.swift in Sources */,
C2467221FCD579800B9CD8FBBDB10B4D /* CwlCatchBadInstruction.swift in Sources */,
7B5222991D1C53DF737242CA6C90012C /* CwlCatchException.m in Sources */,
42EAAE8CFB95F2352FCE036F263263E1 /* CwlCatchException.swift in Sources */,
41C783192F7ECD485C8C6384D30CBF11 /* CwlDarwinDefinitions.swift in Sources */,
5F9AFDECC14365CD10F3D83D50020E32 /* CwlMachBadInstructionHandler.m in Sources */,
ADEE95A3A188BE3095990E20766BCCC8 /* DSL+Wait.swift in Sources */,
8B55BD430033027AD5FF22D630DD9F62 /* DSL.m in Sources */,
1A3E19B9F5EEB773C3BB61CA42F8BF62 /* DSL.swift in Sources */,
3D1A89FDD6B579BAA92AD398E5C019F9 /* EndWith.swift in Sources */,
C8320A6164C870ADDB8A855ADEBBBDC9 /* Equal.swift in Sources */,
BC7B9761322C74FA27969BD55833BA47 /* Errors.swift in Sources */,
65985C142EE8A74E6E56D5E30A39C79C /* Expectation.swift in Sources */,
3E04D23B2995705A6106D41F3E3E4E33 /* ExpectationMessage.swift in Sources */,
4FABBF5CA8F735F48035BE4144613CB7 /* Expression.swift in Sources */,
17C8EE7DF3F57C8F99EAF63C6E61EA99 /* FailureMessage.swift in Sources */,
62D26CE7BA3AEDB4E5E87218FDCBBA90 /* Functional.swift in Sources */,
988EED125395950177DC14AF9BC87D8D /* HaveCount.swift in Sources */,
D9E62C41794D0B5D2CD68CA92C4BA836 /* mach_excServer.c in Sources */,
F28003B228B82B7E1497D4F41F55A31E /* Match.swift in Sources */,
C06FA100C1BBEE34B863BCB8A65359C1 /* MatcherFunc.swift in Sources */,
6BB0EBEB4730B94AC07458E398D142C8 /* MatcherProtocols.swift in Sources */,
45F183320C688F9978649F30ABE21D09 /* MatchError.swift in Sources */,
4CDACD8A5A6CFB688838AA988E7D1E43 /* Nimble-dummy.m in Sources */,
54CC2049C937561A469575AF9E6A6FE9 /* NimbleEnvironment.swift in Sources */,
CF55697859D633C852C3586384647EB6 /* NimbleXCTestHandler.swift in Sources */,
6CB4890B9BF5F846E980634AFE83917D /* NMBExceptionCapture.m in Sources */,
68FD03C72D719117929696B62038B3D7 /* NMBExpectation.swift in Sources */,
A7C13C62E4116CA964A3E82179092AD5 /* NMBObjCMatcher.swift in Sources */,