-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1732 lines (1720 loc) · 139 KB
/
Copy pathproject.pbxproj
File metadata and controls
1732 lines (1720 loc) · 139 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
02A2EDA5F16DDDC57F9F84E1A35CDAC3 /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CC8DBE433A202DCF807B91BB5557F6D /* BeginWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
03803CFC82ACD7FE01A1901C7134F342 /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC9AD5FA0EE5E85143D7DD2030D6818D /* BeAKindOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
043DC66C138C0EABE29593FF74DE3ECE /* CollieGallery.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9956526F732F44374BB43852BE53AC8 /* CollieGallery.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
047794B84CD5AC9233EACE5AF5DA0D84 /* CollieGallery-iOS8.3-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F2BBC88CEABF3D1989F197D338DA87D3 /* CollieGallery-iOS8.3-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
05EAAE98DBC88B86821B872FC930045F /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42DD07575CFDE63DE6412F425FDBED71 /* SuiteHooks.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
079840DA6A990A1936EC94F345D964EC /* Pods-CollieGallery_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A464811EC48A3E094618C0392A3EA4F /* Pods-CollieGallery_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
0A2CA8B0DD7E300ABFCF1956E6B58248 /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = 2727DBDF3F41A52F002F6B1992165881 /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; };
0ABBB672C09A81AB3CD54D54D03B092C /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 605EF2A73B22D3E0863B202A2B7CFDEE /* BeNil.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
0CE57E98BDEB4E2056F3A73464D026EE /* mach_excServer.c in Sources */ = {isa = PBXBuildFile; fileRef = 679FFD5386CAB1887F96D8FF6D84B7B8 /* mach_excServer.c */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
0D69FD1047DAD74F73BD83C0A8FCFD12 /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C846417EADDAAFF733CF6AC8FEB5EEA /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; };
0E5E651C03635CE8E0F0A8BBA87951A3 /* BeVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = D31FA66A5FC0844A36FC1358ACE2220C /* BeVoid.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
0E608DDDC7556CF4212CF76B794EEB23 /* NMBStringify.m in Sources */ = {isa = PBXBuildFile; fileRef = 613C21AD6E98946BCAA54F25374CE020 /* NMBStringify.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
10DF7E96930427911431C990FDAB71AB /* CollieGalleryOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E14A889135E70AF797B51884DBCA371F /* CollieGalleryOptions.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
19849BF6EFE5D202593B70FE7D3DA1EF /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F4384CDA1479E6D88E3486B78FD7485 /* MatcherProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
1B781B5A2E5290FF21BE376A4E226E4C /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3FBDD60AB5EC0183A198A13D9A5D7BCE /* XCTest.framework */; };
1FA4B3EBF17212B0486F51806CC9E2FF /* CollieGalleryZoomTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5039839E80C1CD5BA9B9E99BD9E3586E /* CollieGalleryZoomTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
204EC69B82E6B78B158F99F19B67AAB2 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77125F245BAE7809A034657A48A40830 /* Errors.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
21B03844F3C5EB3D5838441782A41F20 /* Predicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE960FDA70783D86C4832257093317D2 /* Predicate.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
22E9F6FA56858A5F7A5D664E5968ECB0 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 88CCA655A571DD68102067AFB473BD77 /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; };
232C23C460B56B0B2E662CA362F29FFD /* MatchError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35AEA5EE84902B2868710A17C747AE0E /* MatchError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
26B14B4F25BBA7D8492857524371670D /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = D685C0D509328CD8778F99DD53A49A48 /* Closures.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
2902CCBBC67986F143E745941FA51E5C /* QuickSelectedTestSuiteBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4C7D6328493B73EF741AC61F4CEF01E /* QuickSelectedTestSuiteBuilder.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
2C37372BD332C4A65660FEC163268265 /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = A45DFC46E4EDF480399017D92090D5C1 /* Async.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
2F4D0D4988B144CB17FB2B803E8E93ED /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67C7BB2DC0DED3CBCF5D776D9E39AB30 /* Match.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
32C5D72A5F8B835CED8844C78085DCB2 /* CwlMachBadInstructionHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F7F7F422628BD0102712BD3296ED4AD /* CwlMachBadInstructionHandler.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
35A1AA8C441C5604A7DB689748927603 /* CollieGalleryPicture.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5426981FD415EA7E7A369053CBBF6CEC /* CollieGalleryPicture.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
35B068CCE2D50FCE34BD30055FB8B710 /* PostNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E0D34DBF4CE55E4FF1BADBA826F9389 /* PostNotification.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
35CADB1AD8E063A35DF68147F3183206 /* CwlMachBadInstructionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = EF959663D47B18687B5785D72D856CB6 /* CwlMachBadInstructionHandler.h */; settings = {ATTRIBUTES = (Public, ); }; };
378A01370E6BAA0476C3A9A58E6DFFD3 /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40E944EFD24B41C7BD60837DFABAFB06 /* BeGreaterThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
382B4098CFDA3935D116D24129E55A21 /* SatisfyAnyOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77C2834A0AE71F3E85759885C0557533 /* SatisfyAnyOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
3BD159C8498F135242413CD0B0DC05CB /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D35B9829391F58D646F665CACF28F89 /* DSL.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
3D0DFC8224C058C7ED67A1BA3FA5C98E /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBD64278700877FA62EC38F4B27A4881 /* BeCloseTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
3EB854B3E0B1BE136986C8C26F68362E /* CollieGalleryTransitionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97D31B1E445659065B444CAE83A2558B /* CollieGalleryTransitionType.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
3FFD8F96B5D7C7BBE22F1DC81937B8BA /* ThrowAssertion.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AB0094EAAC3C18B000459B228F01637 /* ThrowAssertion.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
4551BA04EE17C450BFA740BD358D67F5 /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 440EEE98EDFE4F4752E17AFA3F550530 /* BeGreaterThanOrEqualTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
46EB19F1D7BDB01D2A00F22F479FE24C /* Pods-CollieGallery_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F9AB85B1282D35A630C3B1C7D9AFD9 /* Pods-CollieGallery_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
4790034F8BE04518179C4BB80D171D8D /* CollieGalleryAppearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C5A08CBB62E7288960C60347D98F30 /* CollieGalleryAppearance.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
48C5277098D073808384FA0996366F0B /* Quick-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A9D7EA20C39A55A1EF0C23094895A75 /* Quick-dummy.m */; };
499EF2F53452B6D2A5B7AA77EE20E826 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26D7B54C77385B78FFA011C64D94E436 /* AllPass.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
49A027D5BC1647165E5AF7831E27AE59 /* World+DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 467F00CAF06ADEF612F697F068843FB2 /* World+DSL.h */; settings = {ATTRIBUTES = (Project, ); }; };
49DE42A30F7D46D317E1DF75E034869E /* CollieGalleryTheme.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96D4EF27277984C746C22B7DCBAE9918 /* CollieGalleryTheme.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
4CDACD8A5A6CFB688838AA988E7D1E43 /* Nimble-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8686015D3977C1730000CD277955566D /* Nimble-dummy.m */; };
4D9ED4F86FB9C3BB6A6D6E2E0522B298 /* Pods-CollieGallery_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B32D6139F8FBC8F3027BD363B0B5229 /* Pods-CollieGallery_Tests-dummy.m */; };
5031DC7E46DF7C64432999454C87064A /* CollieGalleryDefaultTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 129F218CB8C34A4D45BBF560C2112064 /* CollieGalleryDefaultTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
50698F14E7847E18B907E9373FBF4C21 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5D8173434FE00016739EAFDEFEA9313 /* Foundation.framework */; };
5180AFF8B29B7385C3CD1ECAD0DC04DD /* CollieGallery-iOS8.3-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AB30E8D8B71DB06701AA5841329C0E4A /* CollieGallery-iOS8.3-dummy.m */; };
519BC3E2DCF7C89A0023344915E8FEFF /* CollieGalleryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F47025E242836E2994C59D8D9758ABA7 /* CollieGalleryView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
53DE126D8DE6ED7A93BF9A326DD6DDAF /* QuickSpecBase.m in Sources */ = {isa = PBXBuildFile; fileRef = E585A4F6C1434FD922B8371E432B5051 /* QuickSpecBase.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
54BF22CC5B8EE1556B1910114B0A344B /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 495BFC3F9A44D525D4BFC5B10557E6C3 /* AssertionDispatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
56F1AA62A4A63EA055876472F53C543C /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4751C923ACB051055F76821461557965 /* DSL+Wait.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
573CED8A89A898D64D29D8785BA95C11 /* CollieGalleryCaptionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36AF94294D44D4560C02F27D54D13C3E /* CollieGalleryCaptionView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
57AE21B167E417C779BB8483EC6D4CC6 /* CollieGalleryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F47025E242836E2994C59D8D9758ABA7 /* CollieGalleryView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
5AB9DB61D62D8BF7B1C734B373F361E7 /* CurrentTestCaseTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F18AD3DFDC80322BBE0B149EC31BCC7 /* CurrentTestCaseTracker.h */; settings = {ATTRIBUTES = (Private, ); }; };
5BF985585A09203B37CB2F2167A3AEC6 /* CwlBadInstructionException.swift in Sources */ = {isa = PBXBuildFile; fileRef = B887FE600257A86B38E726B0E1D628AF /* CwlBadInstructionException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
5DBCC0E4C72649C9A39A00D40D944DDA /* Nimble-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 148B405578D3A3DC218BD48032E30DEF /* Nimble-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
5E55B79540BDA86F407EF3E4C3991472 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5626FB74EE8784DFFFC4B80B1061AB4 /* FailureMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
610F3BF659A5E2C154398A7C85E1272F /* CwlCatchException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53D1429ABADDB303927AEA89A830C740 /* CwlCatchException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
65285FA8825CF30990FF7127BE6CDB97 /* Pods-CollieGallery_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52B1B9B8B869F3A3032547D2C6143A22 /* Pods-CollieGallery_Example-dummy.m */; };
6593C547A71CCEFC480CD578080A327F /* mach_excServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 835B6DA0EF74C46A43F1142347E4B44E /* mach_excServer.h */; settings = {ATTRIBUTES = (Public, ); }; };
66AF09C8521FD4E9560C755FD0A173BA /* CollieGallery.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9956526F732F44374BB43852BE53AC8 /* CollieGallery.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
69B80157634D6FAF248D37F397732357 /* CwlPreconditionTesting.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB52415DA15D60348D226639C322706 /* CwlPreconditionTesting.h */; settings = {ATTRIBUTES = (Public, ); }; };
6A0A2A8C45C3AF314DAD20CAACB1A03E /* ContainElementSatisfying.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DD6CC02AD6D4C0E7D1169EF9ECB3706 /* ContainElementSatisfying.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
6BE0ED69A3B620A20B9940C16E30092C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5D8173434FE00016739EAFDEFEA9313 /* Foundation.framework */; };
6BEF3DD8C305522BCBAC125B0AF38C27 /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8452C5F4B63A4A0178E56CDC9E95DFE8 /* ExampleMetadata.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
6C249D51A6325B707753099AE90F53C9 /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65B4CDEF78BF13177A9303C1E765E5F6 /* World+DSL.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
6D9A0159A43F0400E6839236D2A3AA00 /* URL+FileName.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6D48A33A49B17952C7ABB6214240CB9 /* URL+FileName.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
6F6030E1B23C7BDC313FA4D9687F938B /* Functional.swift in Sources */ = {isa = PBXBuildFile; fileRef = D954E7E4D336837086313DAE758F7F32 /* Functional.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
6F8FF2D35AED45A66D95D7CC715546E0 /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = 645422FB2E7D26E7DD6556CCAC35DAF0 /* BeLogical.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
71C2760139B139848B6B72AE920E6995 /* CwlDarwinDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B6BAD1D6087151AE80585CD387919BA /* CwlDarwinDefinitions.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
73A8BD272EAF2069AE166A50B284BCE9 /* CollieGalleryZoomTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5039839E80C1CD5BA9B9E99BD9E3586E /* CollieGalleryZoomTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
7476DC60795B1CC1E95DAE1268547FB5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5D8173434FE00016739EAFDEFEA9313 /* Foundation.framework */; };
75603C7165BC5E8EB63042D204ED223A /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3018B485E8310AC7A651EF03D32D0823 /* Expectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
75A1462B99EBF871A730FB57BCF5CC9E /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1AB10174D3955FC8BF42A3B45B4C011 /* BeLessThan.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
75B9CF46B85A5AD239125F045EDA7D69 /* CollieGallery-iOS10.0-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CC27408B2387A81027E92C7E8190406 /* CollieGallery-iOS10.0-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
7693172A50CF2ECC06CB6371E72A9C62 /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5B11548A6516BB21526619897608E9F /* BeEmpty.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
76A06EDFD88469D7DDF132A9CCD04E02 /* CollieGalleryViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB73B61DDB53D8A585241237067C6E7A /* CollieGalleryViewDelegate.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
774D8E4E270819E95AF2AF24D3E8965C /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D2E298780429D096F1EC434CFC3B225 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
79AE82A21E5C82AD4D4F704D5FB5488E /* CollieGalleryOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E14A889135E70AF797B51884DBCA371F /* CollieGalleryOptions.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
7C41BBAF746B3905067057F1D93E07B2 /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2C2E6D41C88E8547B16FD2C42FEF515 /* AssertionRecorder.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
7D61EF5E34EA3A776311036DBBCCF1F5 /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FEA1DF1C7C22E7B20D2DC30FB9D3EF1 /* Configuration.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
82A8CF86C54998C21A2838B9C7791D04 /* ToSucceed.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCE295D4D0ED3F1666C5921320F0E2C6 /* ToSucceed.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
877008A1D01F478AD6005BB30BE1EDE3 /* CollieGalleryAppearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C5A08CBB62E7288960C60347D98F30 /* CollieGalleryAppearance.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
8B293115670A9C71C45B1869D816CCA9 /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 82267A98670DE3E96EAB2047A8872FE0 /* DSL.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
905D98354297AFE0D60FE60E4E899CEF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5D8173434FE00016739EAFDEFEA9313 /* Foundation.framework */; };
947D81330FBD26FFC34F742C28047D67 /* CollieGalleryTransitionProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BC344B96B13CE644A7FA3F2031B428D /* CollieGalleryTransitionProtocol.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
95069B55B6A19DD8497EA14E55367304 /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = EADFE06546D2FE7C91DF557E0F5ED093 /* SourceLocation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
952C74EFDBD1D0EC23E99465DBE7A299 /* CollieGalleryPicture.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5426981FD415EA7E7A369053CBBF6CEC /* CollieGalleryPicture.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
96132E7432F8DD315A88A07C6B4F9C72 /* NMBStringify.h in Headers */ = {isa = PBXBuildFile; fileRef = E15D0BD895E38B9512195BFED925B0F7 /* NMBStringify.h */; settings = {ATTRIBUTES = (Public, ); }; };
98459877B2AAA6FCAB7F65343EB15562 /* CollieGalleryTransitionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7450AAE58F23AEB99A64C071EFB97BCC /* CollieGalleryTransitionManager.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
994C6AEFB866528121745B0FD0D88519 /* CollieGalleryCaptionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36AF94294D44D4560C02F27D54D13C3E /* CollieGalleryCaptionView.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
996D6C00F3FD5EA54BDD6AEAD3FED165 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5378FB44B13DD72D6D9510C786BA96C5 /* AdapterProtocols.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
9A236AB1DCA45F106E9C2325F03D2DFA /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15A5A2213F831D11D721E17AA14BFB58 /* Equal.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
9B5D966DE899B303173C866A2EC08C1A /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EF0EA564D82AB46B710DC6096C1EA6B /* QuickConfiguration.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
9BB084428CC44CD2722BF4173F472B62 /* NSString+C99ExtendedIdentifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 057B1682EF92E71137867F0C259AF2CC /* NSString+C99ExtendedIdentifier.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
9FD3BA47B371B8CFB50B9B9E1D2D0ABD /* CollieGallery-iOS10.0-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 560C55959B1753A4BD0B82B62A4D014C /* CollieGallery-iOS10.0-dummy.m */; };
A0B6C4A844AF18141D9D39454BAA6957 /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 014CC71E572C5CC14ADFA82A8B7B97DC /* Expression.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
A13A68752FF4AA0BC3376434399B0FE8 /* Quick-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCD7C4F10E8CD2DCAD3B2734A26D9B0 /* Quick-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A29D31F9CC33402227C773299DA5CA5E /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D9DA3454B15DE38784FA22A452C0121 /* BeIdenticalTo.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
A50877EB28BF1A32CE9F1E2B7AF7EC64 /* World.h in Headers */ = {isa = PBXBuildFile; fileRef = 129DA04B381B509DAEDD565711C5A0DA /* World.h */; settings = {ATTRIBUTES = (Project, ); }; };
A696B34C7D78DF1FE51C4ADE9B0D529A /* CollieGalleryTransitionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7450AAE58F23AEB99A64C071EFB97BCC /* CollieGalleryTransitionManager.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
A77980FAC9720F2420EFE9EA3EF05371 /* XCTestSuite+QuickTestSuiteBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D9A924C203A11767BBF4D9C3737DA5D /* XCTestSuite+QuickTestSuiteBuilder.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
AAA2830BBCD86431B3EEB0ED968DF4A3 /* CwlCatchException.h in Headers */ = {isa = PBXBuildFile; fileRef = C57921338FECDDCDAAC88A57C2055737 /* CwlCatchException.h */; settings = {ATTRIBUTES = (Public, ); }; };
AD01C557C584D25766E254EBB30103E6 /* NMBObjCMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F8524E2A1A324B13D66AAB576C8C742 /* NMBObjCMatcher.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
AD111A9DAEDB1106C8759BC6C3D5E51E /* NSBundle+CurrentTestBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75B78AC1C0059E66BD95A9F0CD2D24F5 /* NSBundle+CurrentTestBundle.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
AF89BE353A05AD95677F0FC95D7C8A9E /* XCTestObservationCenter+Register.m in Sources */ = {isa = PBXBuildFile; fileRef = 187D1EDF80EB0D8FC035AC3570D09DD5 /* XCTestObservationCenter+Register.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
B399892861A35F9066F908B4C61BC54E /* CollieGalleryTransitionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97D31B1E445659065B444CAE83A2558B /* CollieGalleryTransitionType.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
B54D319C2A73840FD2E3A4C410C901FC /* CollieGalleryDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 799C2BE08695746726348AF3A18F7C30 /* CollieGalleryDelegate.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
B56EAEBFBCF2ACAF6EA8BE177AB31B2A /* CollieGalleryCustomAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA6DAC0B63AF80FD82CA8E3EABA69EB9 /* CollieGalleryCustomAction.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
B8C9DBFDD3EF6B01C9C69A14A6672D09 /* QuickTestSuite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E8E430D83F3CC7F72E348A0B222C46F /* QuickTestSuite.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
C2BC487C43C6774AB125DFD42FCF6806 /* NMBExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2192785265D796ADAF8B5DE3C97DD4CE /* NMBExpectation.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
C48523F3BB4C0C6AB336C0ACEA176484 /* CollieGalleryViewDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB73B61DDB53D8A585241237067C6E7A /* CollieGalleryViewDelegate.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
C4C581D30388DB4457793C0482284A92 /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = B54E8617109E65C3B975FE6AB81F0562 /* BeLessThanOrEqual.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
C4D8C5F3839E75A8719A503EDA0920D0 /* ExpectationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4273097B1D0DCCA1E22978B03474F2F /* ExpectationMessage.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
C5868E2CAF62DEC7ADAA60DD6C41F5D6 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = B38F7EB4258060BAA361D06EF1B16D9B /* Example.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
C5C389422242CFF31711C7DE3D22A572 /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20C9E93FDAF76CEA15A9E23CC159DED1 /* Callsite.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
CCAD0C64196D5D790A693737755C7557 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 24FAA89E2AC44E204B5E39B77BD6B921 /* NMBExceptionCapture.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
CDE5D6E284E02FEDDD30FA9DD548B111 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = EA8315675F3D2B2385E834043F85C676 /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; };
CDF45AD7A7DC2E250238B84FCAAE7711 /* CollieGalleryTransitionProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BC344B96B13CE644A7FA3F2031B428D /* CollieGalleryTransitionProtocol.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
CE4B499EE61F68BFC98326B7B0B8CAE4 /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 698366519E8DF1484C0AE2845EB47D7F /* HaveCount.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
CE8187A341E91D653FD83A1E951ABD49 /* AsyncMatcherWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BE63B47CD572A17C6AFDF8853BFCA4F /* AsyncMatcherWrapper.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
D05DC57A4E28678BAFA9B7F150380CD1 /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47578CD4C4970729A947555C915B2317 /* ThrowError.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
D12576CDE9E8D6D61563B4885E467AB8 /* CollieGalleryCustomAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA6DAC0B63AF80FD82CA8E3EABA69EB9 /* CollieGalleryCustomAction.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
D28F61B7D8FE0B9DE3A9073E8EBB90DD /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C78BF27F3A2B7B1368FE2E4317B6557 /* DSL.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
D7034E2D20FE7CAC777C6F4658A15A5C /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE1C0594000452979B62B1798B1A59E8 /* Contain.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
D84D0FCD90C951C32C062EC414BD08C1 /* CollieGalleryDefaultTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 129F218CB8C34A4D45BBF560C2112064 /* CollieGalleryDefaultTransition.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
D87A2E4BE8ABC53E8A2E4CEF053D4B17 /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 12989D830FCE4AEF54A357265111CAEF /* QCKDSL.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
D88154D347A0554F0EA1D428729D086C /* NimbleEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6642EE042EBCD8FB5BA4D88BAF4EAB36 /* NimbleEnvironment.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
D90A79546E9955737E9E18D4FF49D701 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5D8173434FE00016739EAFDEFEA9313 /* Foundation.framework */; };
DC6E9C8B8F3BE94F7483A6B88CB16BDA /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = B9985CC02179403DC54B3460DCE486AC /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
DEB32F04972B42B6A6975FE206928846 /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 829CA47FBDF0A83BF67F7102D4CD40E6 /* ExampleGroup.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
E03BEBA3C5963188E3308EE3588034DE /* CollieGalleryDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 799C2BE08695746726348AF3A18F7C30 /* CollieGalleryDelegate.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
E078AF2D3E27C8D461BA9C2179887305 /* Behavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73C1D1A0D20C667FAF4F01C3BA4AC451 /* Behavior.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
E7088B3807C5A96117D419F785F050D2 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8737F3E0C1FB1ABDDC8F61A081B1F76B /* World.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
E7213179EAA15BAA2548B4D65D471EA2 /* CwlCatchBadInstruction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FE66AEC1DADAB5A835D219A5EC52ABA /* CwlCatchBadInstruction.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
E9BAB3234A5275D0516BE2FA43D09B27 /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAA7B55BBFC51CA440749FF23010D40E /* EndWith.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
ECA097C7002A8AC826B9C59662F6D511 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34B5614CBE84B80AA39F75553B3C322A /* Stringers.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
ECC05E80363F6761E66450DF095D4F82 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 240CEA0915AA3241F6A49CB65CEC8767 /* NimbleXCTestHandler.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
EE8E0636854FE286E11B804DA0AA5FC1 /* CwlCatchException.m in Sources */ = {isa = PBXBuildFile; fileRef = C949E12BA82E3B6636449B775694F4F3 /* CwlCatchException.m */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
EFE422BB4277A62E15AF747F94C6202E /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 38A82DE4A0130E4C946A904FEDDD74CA /* QuickSpec.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
F130E61D1ADAC2E55BAAB71388BB4AE9 /* CollieGalleryTheme.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96D4EF27277984C746C22B7DCBAE9918 /* CollieGalleryTheme.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
F14C63550565BC6CE197F3EBEDE32FED /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C4D786F262665CE8C9113FA91745753 /* Filter.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
F2B073F7D4B747430459A0516BCF52F5 /* ErrorUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24FAED8BD878439BC32BE461165E4E08 /* ErrorUtility.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
F39781CAE8B2024FA7D6509B9C9429F9 /* MatcherFunc.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55E9F8B6E78A1CAF1BEE982E163FA968 /* MatcherFunc.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
F7CE72ADB7978E340CBEDCFCAE27E743 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E5D8173434FE00016739EAFDEFEA9313 /* Foundation.framework */; };
FAAD171A8213AF6FF83809CC945B6A8D /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2C33F4DC31A8120E8743B2A6163585F /* BeAnInstanceOf.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
FB433A84B0A557CD5E5948A8B6705024 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 2294B6CCB2D8D93AE1F605AAA6A03240 /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
FB58613FF37872D26B25C7F27CAAD85D /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 301223B3EB74E21CDB1303C459B57231 /* ExampleHooks.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
FC8E7465C451201E3EB683BC3C6F0E9E /* HooksPhase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9245B48A46AAC45502A6B8A2AB745038 /* HooksPhase.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
FCF8CF868BF3050BCC86C752A0EA9815 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6288AE2766817391D894EE944596984 /* RaisesException.swift */; settings = {COMPILER_FLAGS = "-DPRODUCT_NAME=Nimble/Nimble -w -Xanalyzer -analyzer-disable-all-checks"; }; };
FED13A1E8D53141D837E07661D372427 /* QuickSpecBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BA4794DD94D5DE6BFFFEEC72B8C43E3 /* QuickSpecBase.h */; settings = {ATTRIBUTES = (Project, ); }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
4AD3C317E423D8B5A6AA364030B5466B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B9986B3A7F3963CD8FBC68136B8A1429;
remoteInfo = Quick;
};
4CD86C923ECCC4F99DAAE4C91E1AC42B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = DD7C8BF89FE8053D0A2A2D88BB49CF07;
remoteInfo = Nimble;
};
6857959229F15DDA41F648B6A8A8DC80 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = D2BBFEFCBF14D1432FD62F986D63EE41;
remoteInfo = "CollieGallery-iOS8.3";
};
9EF0B06066556C35AC0E8CAE5A5409D0 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A091DAC819ADCE7E94753B244A471C36;
remoteInfo = "CollieGallery-iOS10.0";
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
014CC71E572C5CC14ADFA82A8B7B97DC /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Sources/Nimble/Expression.swift; sourceTree = "<group>"; };
048EF08689D4FB8FBAB0F76A50CFF1DC /* Pods-CollieGallery_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CollieGallery_Tests-resources.sh"; sourceTree = "<group>"; };
057B1682EF92E71137867F0C259AF2CC /* NSString+C99ExtendedIdentifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSString+C99ExtendedIdentifier.swift"; path = "Sources/Quick/NSString+C99ExtendedIdentifier.swift"; sourceTree = "<group>"; };
06CA95B4FCFFBA814B679AF332BEF2D9 /* CollieGallery-iOS10.0-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CollieGallery-iOS10.0-prefix.pch"; sourceTree = "<group>"; };
0A9D7EA20C39A55A1EF0C23094895A75 /* Quick-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Quick-dummy.m"; sourceTree = "<group>"; };
0AB0094EAAC3C18B000459B228F01637 /* ThrowAssertion.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowAssertion.swift; path = Sources/Nimble/Matchers/ThrowAssertion.swift; sourceTree = "<group>"; };
0B36E9401E41D749C90967D6752B0963 /* CollieGallery.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CollieGallery.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0BA7DA702A654547F3BB56E3105959D6 /* Pods-CollieGallery_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CollieGallery_Example-resources.sh"; sourceTree = "<group>"; };
0BE63B47CD572A17C6AFDF8853BFCA4F /* AsyncMatcherWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncMatcherWrapper.swift; path = Sources/Nimble/Matchers/AsyncMatcherWrapper.swift; sourceTree = "<group>"; };
0EDF854C9A7846329DD516A5BBD18C65 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
0F18AD3DFDC80322BBE0B149EC31BCC7 /* CurrentTestCaseTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CurrentTestCaseTracker.h; path = Sources/NimbleObjectiveC/CurrentTestCaseTracker.h; sourceTree = "<group>"; };
0F767114DAC074EC87A34820225C66EE /* Pods-CollieGallery_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CollieGallery_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
12989D830FCE4AEF54A357265111CAEF /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Sources/QuickObjectiveC/DSL/QCKDSL.m; sourceTree = "<group>"; };
129DA04B381B509DAEDD565711C5A0DA /* World.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = World.h; path = Sources/QuickObjectiveC/World.h; sourceTree = "<group>"; };
129F218CB8C34A4D45BBF560C2112064 /* CollieGalleryDefaultTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryDefaultTransition.swift; path = Pod/Classes/CollieGalleryDefaultTransition.swift; sourceTree = "<group>"; };
148B405578D3A3DC218BD48032E30DEF /* Nimble-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-umbrella.h"; sourceTree = "<group>"; };
14E78C87501CA9672EDFAEB470317924 /* Pods-CollieGallery_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CollieGallery_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
151A46FF08F30C1636B1906A0ED6D2A3 /* Pods-CollieGallery_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-CollieGallery_Example.modulemap"; sourceTree = "<group>"; };
152113E52FB502542A8895BA6B94B03B /* CollieGallery-iOS8.3-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CollieGallery-iOS8.3-prefix.pch"; path = "../CollieGallery-iOS8.3/CollieGallery-iOS8.3-prefix.pch"; sourceTree = "<group>"; };
15A5A2213F831D11D721E17AA14BFB58 /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Sources/Nimble/Matchers/Equal.swift; sourceTree = "<group>"; };
187D1EDF80EB0D8FC035AC3570D09DD5 /* XCTestObservationCenter+Register.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestObservationCenter+Register.m"; path = "Sources/NimbleObjectiveC/XCTestObservationCenter+Register.m"; sourceTree = "<group>"; };
1934BEB9168057075841AF9F99C37A86 /* CollieGallery-iOS10.0.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "CollieGallery-iOS10.0.modulemap"; sourceTree = "<group>"; };
1BCD7C4F10E8CD2DCAD3B2734A26D9B0 /* Quick-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-umbrella.h"; sourceTree = "<group>"; };
1C846417EADDAAFF733CF6AC8FEB5EEA /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Sources/QuickObjectiveC/Quick.h; sourceTree = "<group>"; };
1D9DA3454B15DE38784FA22A452C0121 /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Sources/Nimble/Matchers/BeIdenticalTo.swift; sourceTree = "<group>"; };
1F9A7ECA3C068E8E646ABDB7EC6F3BDA /* Pods_CollieGallery_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CollieGallery_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
20C9E93FDAF76CEA15A9E23CC159DED1 /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Sources/Quick/Callsite.swift; sourceTree = "<group>"; };
2192785265D796ADAF8B5DE3C97DD4CE /* NMBExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBExpectation.swift; path = Sources/Nimble/Adapters/NMBExpectation.swift; sourceTree = "<group>"; };
2294B6CCB2D8D93AE1F605AAA6A03240 /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Sources/NimbleObjectiveC/DSL.h; sourceTree = "<group>"; };
240CEA0915AA3241F6A49CB65CEC8767 /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Sources/Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = "<group>"; };
24FAA89E2AC44E204B5E39B77BD6B921 /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Sources/NimbleObjectiveC/NMBExceptionCapture.m; sourceTree = "<group>"; };
24FAED8BD878439BC32BE461165E4E08 /* ErrorUtility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErrorUtility.swift; path = Sources/Quick/ErrorUtility.swift; sourceTree = "<group>"; };
26D7B54C77385B78FFA011C64D94E436 /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Sources/Nimble/Matchers/AllPass.swift; sourceTree = "<group>"; };
2727DBDF3F41A52F002F6B1992165881 /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Sources/Nimble/Nimble.h; sourceTree = "<group>"; };
2DD6CC02AD6D4C0E7D1169EF9ECB3706 /* ContainElementSatisfying.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContainElementSatisfying.swift; path = Sources/Nimble/Matchers/ContainElementSatisfying.swift; sourceTree = "<group>"; };
2E8E430D83F3CC7F72E348A0B222C46F /* QuickTestSuite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickTestSuite.swift; path = Sources/Quick/QuickTestSuite.swift; sourceTree = "<group>"; };
301223B3EB74E21CDB1303C459B57231 /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Sources/Quick/Hooks/ExampleHooks.swift; sourceTree = "<group>"; };
3018B485E8310AC7A651EF03D32D0823 /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Sources/Nimble/Expectation.swift; sourceTree = "<group>"; };
32083AFC76E44FDB753D00DE988937A5 /* CollieGallery-iOS8.3.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "CollieGallery-iOS8.3.xcconfig"; path = "../CollieGallery-iOS8.3/CollieGallery-iOS8.3.xcconfig"; sourceTree = "<group>"; };
34B5614CBE84B80AA39F75553B3C322A /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Sources/Nimble/Utils/Stringers.swift; sourceTree = "<group>"; };
35AEA5EE84902B2868710A17C747AE0E /* MatchError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatchError.swift; path = Sources/Nimble/Matchers/MatchError.swift; sourceTree = "<group>"; };
369FD78CAF0E1B4EF1D633163449013B /* Quick.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; };
36AF94294D44D4560C02F27D54D13C3E /* CollieGalleryCaptionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryCaptionView.swift; path = Pod/Classes/CollieGalleryCaptionView.swift; sourceTree = "<group>"; };
38A82DE4A0130E4C946A904FEDDD74CA /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Sources/QuickObjectiveC/QuickSpec.m; sourceTree = "<group>"; };
38C5A08CBB62E7288960C60347D98F30 /* CollieGalleryAppearance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryAppearance.swift; path = Pod/Classes/CollieGalleryAppearance.swift; sourceTree = "<group>"; };
38D21D7D643C65ECCB398FCBB060CDFF /* CollieGallery.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CollieGallery.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3B6BAD1D6087151AE80585CD387919BA /* CwlDarwinDefinitions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlDarwinDefinitions.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift; sourceTree = "<group>"; };
3FBDD60AB5EC0183A198A13D9A5D7BCE /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
40E944EFD24B41C7BD60837DFABAFB06 /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Sources/Nimble/Matchers/BeGreaterThan.swift; sourceTree = "<group>"; };
42DD07575CFDE63DE6412F425FDBED71 /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Sources/Quick/Hooks/SuiteHooks.swift; sourceTree = "<group>"; };
43FBCD23059D805CF5FF2B875704E9CC /* CollieGallery-iOS10.0.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "CollieGallery-iOS10.0.xcconfig"; sourceTree = "<group>"; };
440EEE98EDFE4F4752E17AFA3F550530 /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = "<group>"; };
45BDD13500B2447ADD62C1A732AC0C11 /* CollieGallery-iOS8.3.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; name = "CollieGallery-iOS8.3.modulemap"; path = "../CollieGallery-iOS8.3/CollieGallery-iOS8.3.modulemap"; sourceTree = "<group>"; };
467F00CAF06ADEF612F697F068843FB2 /* World+DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "World+DSL.h"; path = "Sources/QuickObjectiveC/DSL/World+DSL.h"; sourceTree = "<group>"; };
4751C923ACB051055F76821461557965 /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Wait.swift"; path = "Sources/Nimble/DSL+Wait.swift"; sourceTree = "<group>"; };
47578CD4C4970729A947555C915B2317 /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Sources/Nimble/Matchers/ThrowError.swift; sourceTree = "<group>"; };
495BFC3F9A44D525D4BFC5B10557E6C3 /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Sources/Nimble/Adapters/AssertionDispatcher.swift; sourceTree = "<group>"; };
4A464811EC48A3E094618C0392A3EA4F /* Pods-CollieGallery_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CollieGallery_Tests-umbrella.h"; sourceTree = "<group>"; };
4FEA1DF1C7C22E7B20D2DC30FB9D3EF1 /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Sources/Quick/Configuration/Configuration.swift; sourceTree = "<group>"; };
5039839E80C1CD5BA9B9E99BD9E3586E /* CollieGalleryZoomTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryZoomTransition.swift; path = Pod/Classes/CollieGalleryZoomTransition.swift; sourceTree = "<group>"; };
52B1B9B8B869F3A3032547D2C6143A22 /* Pods-CollieGallery_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CollieGallery_Example-dummy.m"; sourceTree = "<group>"; };
5378FB44B13DD72D6D9510C786BA96C5 /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Sources/Nimble/Adapters/AdapterProtocols.swift; sourceTree = "<group>"; };
53D1429ABADDB303927AEA89A830C740 /* CwlCatchException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchException.swift; path = Carthage/Checkouts/CwlCatchException/Sources/CwlCatchException/CwlCatchException.swift; sourceTree = "<group>"; };
5426981FD415EA7E7A369053CBBF6CEC /* CollieGalleryPicture.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryPicture.swift; path = Pod/Classes/CollieGalleryPicture.swift; sourceTree = "<group>"; };
54F9AB85B1282D35A630C3B1C7D9AFD9 /* Pods-CollieGallery_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CollieGallery_Example-umbrella.h"; sourceTree = "<group>"; };
55E9F8B6E78A1CAF1BEE982E163FA968 /* MatcherFunc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherFunc.swift; path = Sources/Nimble/Matchers/MatcherFunc.swift; sourceTree = "<group>"; };
560C55959B1753A4BD0B82B62A4D014C /* CollieGallery-iOS10.0-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CollieGallery-iOS10.0-dummy.m"; sourceTree = "<group>"; };
561C23FF26877422BF1F75F4BC11F182 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
56902A4CDDD56D91826B08D9666C4657 /* Nimble.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5C4D786F262665CE8C9113FA91745753 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Quick/Filter.swift; sourceTree = "<group>"; };
605EF2A73B22D3E0863B202A2B7CFDEE /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Sources/Nimble/Matchers/BeNil.swift; sourceTree = "<group>"; };
609948446BB816E76BF5280B5F35653E /* Pods-CollieGallery_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CollieGallery_Example-acknowledgements.plist"; sourceTree = "<group>"; };
613C21AD6E98946BCAA54F25374CE020 /* NMBStringify.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBStringify.m; path = Sources/NimbleObjectiveC/NMBStringify.m; sourceTree = "<group>"; };
61F062F4B45105527EFCC500BFF3A03E /* Pods-CollieGallery_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-CollieGallery_Tests.modulemap"; sourceTree = "<group>"; };
637DB7A45FE5BB1290DBA08148286EEA /* Quick-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-prefix.pch"; sourceTree = "<group>"; };
645422FB2E7D26E7DD6556CCAC35DAF0 /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Sources/Nimble/Matchers/BeLogical.swift; sourceTree = "<group>"; };
647F577D86960CDE580F9078DB91CDD4 /* Pods-CollieGallery_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CollieGallery_Example.release.xcconfig"; sourceTree = "<group>"; };
65B4CDEF78BF13177A9303C1E765E5F6 /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Sources/Quick/DSL/World+DSL.swift"; sourceTree = "<group>"; };
6642EE042EBCD8FB5BA4D88BAF4EAB36 /* NimbleEnvironment.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleEnvironment.swift; path = Sources/Nimble/Adapters/NimbleEnvironment.swift; sourceTree = "<group>"; };
679FFD5386CAB1887F96D8FF6D84B7B8 /* 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>"; };
67C7BB2DC0DED3CBCF5D776D9E39AB30 /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Sources/Nimble/Matchers/Match.swift; sourceTree = "<group>"; };
698366519E8DF1484C0AE2845EB47D7F /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Sources/Nimble/Matchers/HaveCount.swift; sourceTree = "<group>"; };
6BA4794DD94D5DE6BFFFEEC72B8C43E3 /* QuickSpecBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpecBase.h; path = Sources/QuickSpecBase/include/QuickSpecBase.h; sourceTree = "<group>"; };
6BC344B96B13CE644A7FA3F2031B428D /* CollieGalleryTransitionProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryTransitionProtocol.swift; path = Pod/Classes/CollieGalleryTransitionProtocol.swift; sourceTree = "<group>"; };
6D2E298780429D096F1EC434CFC3B225 /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.h; sourceTree = "<group>"; };
73C1D1A0D20C667FAF4F01C3BA4AC451 /* Behavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Behavior.swift; path = Sources/Quick/Behavior.swift; sourceTree = "<group>"; };
7450AAE58F23AEB99A64C071EFB97BCC /* CollieGalleryTransitionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryTransitionManager.swift; path = Pod/Classes/CollieGalleryTransitionManager.swift; sourceTree = "<group>"; };
750B8D87B616FD2FC3C673648C9628EF /* Pods-CollieGallery_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CollieGallery_Example-frameworks.sh"; sourceTree = "<group>"; };
75B78AC1C0059E66BD95A9F0CD2D24F5 /* NSBundle+CurrentTestBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSBundle+CurrentTestBundle.swift"; path = "Sources/Quick/NSBundle+CurrentTestBundle.swift"; sourceTree = "<group>"; };
77125F245BAE7809A034657A48A40830 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/Nimble/Utils/Errors.swift; sourceTree = "<group>"; };
77C2834A0AE71F3E85759885C0557533 /* SatisfyAnyOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SatisfyAnyOf.swift; path = Sources/Nimble/Matchers/SatisfyAnyOf.swift; sourceTree = "<group>"; };
7811C95E49C80B66800BE159C9672F1E /* Pods-CollieGallery_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CollieGallery_Example.debug.xcconfig"; sourceTree = "<group>"; };
799C2BE08695746726348AF3A18F7C30 /* CollieGalleryDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryDelegate.swift; path = Pod/Classes/CollieGalleryDelegate.swift; sourceTree = "<group>"; };
7C7FE7BA85A8C0BAC340E45C97F2FF67 /* Pods-CollieGallery_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CollieGallery_Tests-frameworks.sh"; sourceTree = "<group>"; };
7CC8DBE433A202DCF807B91BB5557F6D /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Sources/Nimble/Matchers/BeginWith.swift; sourceTree = "<group>"; };
7D9A924C203A11767BBF4D9C3737DA5D /* XCTestSuite+QuickTestSuiteBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestSuite+QuickTestSuiteBuilder.m"; path = "Sources/QuickObjectiveC/XCTestSuite+QuickTestSuiteBuilder.m"; sourceTree = "<group>"; };
7E017CE25B9A2BEDCB7DAE4C7D768EFC /* Pods-CollieGallery_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CollieGallery_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
7F8524E2A1A324B13D66AAB576C8C742 /* NMBObjCMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NMBObjCMatcher.swift; path = Sources/Nimble/Adapters/NMBObjCMatcher.swift; sourceTree = "<group>"; };
7FE66AEC1DADAB5A835D219A5EC52ABA /* CwlCatchBadInstruction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlCatchBadInstruction.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift; sourceTree = "<group>"; };
82267A98670DE3E96EAB2047A8872FE0 /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Sources/NimbleObjectiveC/DSL.m; sourceTree = "<group>"; };
829CA47FBDF0A83BF67F7102D4CD40E6 /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Sources/Quick/ExampleGroup.swift; sourceTree = "<group>"; };
835B6DA0EF74C46A43F1142347E4B44E /* 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>"; };
8452C5F4B63A4A0178E56CDC9E95DFE8 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Sources/Quick/ExampleMetadata.swift; sourceTree = "<group>"; };
8686015D3977C1730000CD277955566D /* Nimble-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-dummy.m"; sourceTree = "<group>"; };
8737F3E0C1FB1ABDDC8F61A081B1F76B /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Sources/Quick/World.swift; sourceTree = "<group>"; };
88CCA655A571DD68102067AFB473BD77 /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Sources/NimbleObjectiveC/NMBExceptionCapture.h; sourceTree = "<group>"; };
8ADAC08CF077788B72CB30045EAA75B4 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8D35B9829391F58D646F665CACF28F89 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Nimble/DSL.swift; sourceTree = "<group>"; };
8EF0EA564D82AB46B710DC6096C1EA6B /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Sources/QuickObjectiveC/Configuration/QuickConfiguration.m; sourceTree = "<group>"; };
8F4384CDA1479E6D88E3486B78FD7485 /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Sources/Nimble/Matchers/MatcherProtocols.swift; sourceTree = "<group>"; };
9245B48A46AAC45502A6B8A2AB745038 /* HooksPhase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HooksPhase.swift; path = Sources/Quick/Hooks/HooksPhase.swift; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
94F22FFA1336FDD1F5292CF012E1F093 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
95F526FB4BC95B98881D9F2CE746A14E /* Nimble.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Nimble.xcconfig; sourceTree = "<group>"; };
96D4EF27277984C746C22B7DCBAE9918 /* CollieGalleryTheme.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryTheme.swift; path = Pod/Classes/CollieGalleryTheme.swift; sourceTree = "<group>"; };
97890ED4A8107ACD0A62D7837A4AF09C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../CollieGallery-iOS8.3/Info.plist"; sourceTree = "<group>"; };
97D31B1E445659065B444CAE83A2558B /* CollieGalleryTransitionType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryTransitionType.swift; path = Pod/Classes/CollieGalleryTransitionType.swift; sourceTree = "<group>"; };
9B32D6139F8FBC8F3027BD363B0B5229 /* Pods-CollieGallery_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CollieGallery_Tests-dummy.m"; sourceTree = "<group>"; };
9C78BF27F3A2B7B1368FE2E4317B6557 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Sources/Quick/DSL/DSL.swift; sourceTree = "<group>"; };
9CC27408B2387A81027E92C7E8190406 /* CollieGallery-iOS10.0-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CollieGallery-iOS10.0-umbrella.h"; sourceTree = "<group>"; };
9E0D34DBF4CE55E4FF1BADBA826F9389 /* PostNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PostNotification.swift; path = Sources/Nimble/Matchers/PostNotification.swift; sourceTree = "<group>"; };
9F7F7F422628BD0102712BD3296ED4AD /* CwlMachBadInstructionHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlMachBadInstructionHandler.m; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m; sourceTree = "<group>"; };
A1AB10174D3955FC8BF42A3B45B4C011 /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Sources/Nimble/Matchers/BeLessThan.swift; sourceTree = "<group>"; };
A45DFC46E4EDF480399017D92090D5C1 /* Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Async.swift; path = Sources/Nimble/Utils/Async.swift; sourceTree = "<group>"; };
A5626FB74EE8784DFFFC4B80B1061AB4 /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Sources/Nimble/FailureMessage.swift; sourceTree = "<group>"; };
A5AFFC8375564AFE925BDD87075CE12D /* Pods-CollieGallery_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CollieGallery_Tests.release.xcconfig"; sourceTree = "<group>"; };
A5B11548A6516BB21526619897608E9F /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Sources/Nimble/Matchers/BeEmpty.swift; sourceTree = "<group>"; };
A6288AE2766817391D894EE944596984 /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Sources/Nimble/Matchers/RaisesException.swift; sourceTree = "<group>"; };
AB30E8D8B71DB06701AA5841329C0E4A /* CollieGallery-iOS8.3-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CollieGallery-iOS8.3-dummy.m"; path = "../CollieGallery-iOS8.3/CollieGallery-iOS8.3-dummy.m"; sourceTree = "<group>"; };
AB73B61DDB53D8A585241237067C6E7A /* CollieGalleryViewDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryViewDelegate.swift; path = Pod/Classes/CollieGalleryViewDelegate.swift; sourceTree = "<group>"; };
B2C2E6D41C88E8547B16FD2C42FEF515 /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Sources/Nimble/Adapters/AssertionRecorder.swift; sourceTree = "<group>"; };
B38F7EB4258060BAA361D06EF1B16D9B /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Sources/Quick/Example.swift; sourceTree = "<group>"; };
B4273097B1D0DCCA1E22978B03474F2F /* ExpectationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpectationMessage.swift; path = Sources/Nimble/ExpectationMessage.swift; sourceTree = "<group>"; };
B54E8617109E65C3B975FE6AB81F0562 /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Sources/Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = "<group>"; };
B62FC8D3EFD93B2D3877DF87DBB12631 /* Quick.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.xcconfig; sourceTree = "<group>"; };
B6D48A33A49B17952C7ABB6214240CB9 /* URL+FileName.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+FileName.swift"; path = "Sources/Quick/URL+FileName.swift"; sourceTree = "<group>"; };
B887FE600257A86B38E726B0E1D628AF /* CwlBadInstructionException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CwlBadInstructionException.swift; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift; sourceTree = "<group>"; };
B9985CC02179403DC54B3460DCE486AC /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Sources/QuickObjectiveC/DSL/QCKDSL.h; sourceTree = "<group>"; };
BA6DAC0B63AF80FD82CA8E3EABA69EB9 /* CollieGalleryCustomAction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryCustomAction.swift; path = Pod/Classes/CollieGalleryCustomAction.swift; sourceTree = "<group>"; };
BAA7B55BBFC51CA440749FF23010D40E /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Sources/Nimble/Matchers/EndWith.swift; sourceTree = "<group>"; };
BBD64278700877FA62EC38F4B27A4881 /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Sources/Nimble/Matchers/BeCloseTo.swift; sourceTree = "<group>"; };
C22EE1E30D2DAA8C037AF664DF8E96BE /* Quick.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Quick.modulemap; sourceTree = "<group>"; };
C2876639CE7CED9DB554FDBF6A1D7CEB /* Nimble.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Nimble.modulemap; sourceTree = "<group>"; };
C57921338FECDDCDAAC88A57C2055737 /* CwlCatchException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlCatchException.h; path = Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include/CwlCatchException.h; sourceTree = "<group>"; };
C949E12BA82E3B6636449B775694F4F3 /* CwlCatchException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CwlCatchException.m; path = Carthage/Checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m; sourceTree = "<group>"; };
CAB52415DA15D60348D226639C322706 /* CwlPreconditionTesting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlPreconditionTesting.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/Mach/CwlPreconditionTesting.h; sourceTree = "<group>"; };
CAE8F03A2FBA11933D3C0210E7EEDCF2 /* Pods-CollieGallery_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CollieGallery_Tests.debug.xcconfig"; sourceTree = "<group>"; };
CCE295D4D0ED3F1666C5921320F0E2C6 /* ToSucceed.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToSucceed.swift; path = Sources/Nimble/Matchers/ToSucceed.swift; sourceTree = "<group>"; };
CE1C0594000452979B62B1798B1A59E8 /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Sources/Nimble/Matchers/Contain.swift; sourceTree = "<group>"; };
D31FA66A5FC0844A36FC1358ACE2220C /* BeVoid.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeVoid.swift; path = Sources/Nimble/Matchers/BeVoid.swift; sourceTree = "<group>"; };
D685C0D509328CD8778F99DD53A49A48 /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Sources/Quick/Hooks/Closures.swift; sourceTree = "<group>"; };
D954E7E4D336837086313DAE758F7F32 /* Functional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Functional.swift; path = Sources/Nimble/Utils/Functional.swift; sourceTree = "<group>"; };
D9956526F732F44374BB43852BE53AC8 /* CollieGallery.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGallery.swift; path = Pod/Classes/CollieGallery.swift; sourceTree = "<group>"; };
DA3D7F64FE2D4F63A8DF4D3113A24B26 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
DE960FDA70783D86C4832257093317D2 /* Predicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Predicate.swift; path = Sources/Nimble/Matchers/Predicate.swift; sourceTree = "<group>"; };
E14A889135E70AF797B51884DBCA371F /* CollieGalleryOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryOptions.swift; path = Pod/Classes/CollieGalleryOptions.swift; sourceTree = "<group>"; };
E15D0BD895E38B9512195BFED925B0F7 /* NMBStringify.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBStringify.h; path = Sources/NimbleObjectiveC/NMBStringify.h; sourceTree = "<group>"; };
E585A4F6C1434FD922B8371E432B5051 /* QuickSpecBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpecBase.m; path = Sources/QuickSpecBase/QuickSpecBase.m; sourceTree = "<group>"; };
E5D8173434FE00016739EAFDEFEA9313 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
E965E5F5A6E5CBD31703A6866B9E5C80 /* Pods_CollieGallery_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CollieGallery_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
EA8315675F3D2B2385E834043F85C676 /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Sources/QuickObjectiveC/QuickSpec.h; sourceTree = "<group>"; };
EADFE06546D2FE7C91DF557E0F5ED093 /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Sources/Nimble/Utils/SourceLocation.swift; sourceTree = "<group>"; };
EC9AD5FA0EE5E85143D7DD2030D6818D /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Sources/Nimble/Matchers/BeAKindOf.swift; sourceTree = "<group>"; };
EF959663D47B18687B5785D72D856CB6 /* CwlMachBadInstructionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CwlMachBadInstructionHandler.h; path = Carthage/Checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h; sourceTree = "<group>"; };
F2BBC88CEABF3D1989F197D338DA87D3 /* CollieGallery-iOS8.3-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CollieGallery-iOS8.3-umbrella.h"; path = "../CollieGallery-iOS8.3/CollieGallery-iOS8.3-umbrella.h"; sourceTree = "<group>"; };
F2C33F4DC31A8120E8743B2A6163585F /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Sources/Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = "<group>"; };
F32D35AB3A465D37862B33B916D35C34 /* Nimble-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-prefix.pch"; sourceTree = "<group>"; };
F47025E242836E2994C59D8D9758ABA7 /* CollieGalleryView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollieGalleryView.swift; path = Pod/Classes/CollieGalleryView.swift; sourceTree = "<group>"; };
F4C7D6328493B73EF741AC61F4CEF01E /* QuickSelectedTestSuiteBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuickSelectedTestSuiteBuilder.swift; path = Sources/Quick/QuickSelectedTestSuiteBuilder.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
061AA72670322095C61B86E117A3B227 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
7476DC60795B1CC1E95DAE1268547FB5 /* Foundation.framework in Frameworks */,
1B781B5A2E5290FF21BE376A4E226E4C /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2238E21011AD9FAB04AE8DAB251D119F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
905D98354297AFE0D60FE60E4E899CEF /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
24EBEFF0B762599F26D5D6F13D3B3D93 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D90A79546E9955737E9E18D4FF49D701 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2A8495DA7ADE21D5BD9BB0EF24366DF6 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F7CE72ADB7978E340CBEDCFCAE27E743 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6BAD677C484E23D7820F38FDBA2CB95A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6BE0ED69A3B620A20B9940C16E30092C /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
819A9B65073BE3B5599196C0A3B27EBC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
50698F14E7847E18B907E9373FBF4C21 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
18C1EF52FDBADF828C88D1AC9856CC0A /* Pods-CollieGallery_Tests */ = {
isa = PBXGroup;
children = (
94F22FFA1336FDD1F5292CF012E1F093 /* Info.plist */,
61F062F4B45105527EFCC500BFF3A03E /* Pods-CollieGallery_Tests.modulemap */,
7E017CE25B9A2BEDCB7DAE4C7D768EFC /* Pods-CollieGallery_Tests-acknowledgements.markdown */,
14E78C87501CA9672EDFAEB470317924 /* Pods-CollieGallery_Tests-acknowledgements.plist */,
9B32D6139F8FBC8F3027BD363B0B5229 /* Pods-CollieGallery_Tests-dummy.m */,
7C7FE7BA85A8C0BAC340E45C97F2FF67 /* Pods-CollieGallery_Tests-frameworks.sh */,
048EF08689D4FB8FBAB0F76A50CFF1DC /* Pods-CollieGallery_Tests-resources.sh */,
4A464811EC48A3E094618C0392A3EA4F /* Pods-CollieGallery_Tests-umbrella.h */,
CAE8F03A2FBA11933D3C0210E7EEDCF2 /* Pods-CollieGallery_Tests.debug.xcconfig */,
A5AFFC8375564AFE925BDD87075CE12D /* Pods-CollieGallery_Tests.release.xcconfig */,
);
name = "Pods-CollieGallery_Tests";
path = "Target Support Files/Pods-CollieGallery_Tests";
sourceTree = "<group>";
};
1CC9B6DEA2B36CF5A7A80A85FFA98437 /* Products */ = {
isa = PBXGroup;
children = (
0B36E9401E41D749C90967D6752B0963 /* CollieGallery.framework */,
38D21D7D643C65ECCB398FCBB060CDFF /* CollieGallery.framework */,
56902A4CDDD56D91826B08D9666C4657 /* Nimble.framework */,
1F9A7ECA3C068E8E646ABDB7EC6F3BDA /* Pods_CollieGallery_Example.framework */,
E965E5F5A6E5CBD31703A6866B9E5C80 /* Pods_CollieGallery_Tests.framework */,
369FD78CAF0E1B4EF1D633163449013B /* Quick.framework */,
);
name = Products;
sourceTree = "<group>";
};
3C3FDCB7F0ADE0D02BF96EB1D4E2C89F /* Pods */ = {
isa = PBXGroup;
children = (
695F660D008FE976B8707B664F8D3388 /* Nimble */,
D803EB5B15D4EAD4461BD11F3EF5188C /* Quick */,
);
name = Pods;
sourceTree = "<group>";
};
433CD3331B6C3787F473C941B61FC68F /* Frameworks */ = {
isa = PBXGroup;
children = (
7BE34EE7067F7CC8A54539A282682749 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
52324DECCF3E0D2A76F8AC61AB22FC1B /* Support Files */ = {
isa = PBXGroup;
children = (
561C23FF26877422BF1F75F4BC11F182 /* Info.plist */,
C22EE1E30D2DAA8C037AF664DF8E96BE /* Quick.modulemap */,
B62FC8D3EFD93B2D3877DF87DBB12631 /* Quick.xcconfig */,
0A9D7EA20C39A55A1EF0C23094895A75 /* Quick-dummy.m */,
637DB7A45FE5BB1290DBA08148286EEA /* Quick-prefix.pch */,
1BCD7C4F10E8CD2DCAD3B2734A26D9B0 /* Quick-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Quick";
sourceTree = "<group>";
};
5E3652A2BCB66E2BC5D640ECA34BA2B8 /* CollieGallery */ = {
isa = PBXGroup;
children = (
D9956526F732F44374BB43852BE53AC8 /* CollieGallery.swift */,
38C5A08CBB62E7288960C60347D98F30 /* CollieGalleryAppearance.swift */,
36AF94294D44D4560C02F27D54D13C3E /* CollieGalleryCaptionView.swift */,
BA6DAC0B63AF80FD82CA8E3EABA69EB9 /* CollieGalleryCustomAction.swift */,
129F218CB8C34A4D45BBF560C2112064 /* CollieGalleryDefaultTransition.swift */,
799C2BE08695746726348AF3A18F7C30 /* CollieGalleryDelegate.swift */,
E14A889135E70AF797B51884DBCA371F /* CollieGalleryOptions.swift */,
5426981FD415EA7E7A369053CBBF6CEC /* CollieGalleryPicture.swift */,
96D4EF27277984C746C22B7DCBAE9918 /* CollieGalleryTheme.swift */,
7450AAE58F23AEB99A64C071EFB97BCC /* CollieGalleryTransitionManager.swift */,
6BC344B96B13CE644A7FA3F2031B428D /* CollieGalleryTransitionProtocol.swift */,
97D31B1E445659065B444CAE83A2558B /* CollieGalleryTransitionType.swift */,
F47025E242836E2994C59D8D9758ABA7 /* CollieGalleryView.swift */,
AB73B61DDB53D8A585241237067C6E7A /* CollieGalleryViewDelegate.swift */,
5039839E80C1CD5BA9B9E99BD9E3586E /* CollieGalleryZoomTransition.swift */,
FC93D52D00C45B4DECEAC9A84875DF66 /* Support Files */,
);
name = CollieGallery;
path = ../..;
sourceTree = "<group>";
};
695F660D008FE976B8707B664F8D3388 /* Nimble */ = {
isa = PBXGroup;
children = (
5378FB44B13DD72D6D9510C786BA96C5 /* AdapterProtocols.swift */,
26D7B54C77385B78FFA011C64D94E436 /* AllPass.swift */,
495BFC3F9A44D525D4BFC5B10557E6C3 /* AssertionDispatcher.swift */,
B2C2E6D41C88E8547B16FD2C42FEF515 /* AssertionRecorder.swift */,
A45DFC46E4EDF480399017D92090D5C1 /* Async.swift */,
0BE63B47CD572A17C6AFDF8853BFCA4F /* AsyncMatcherWrapper.swift */,
EC9AD5FA0EE5E85143D7DD2030D6818D /* BeAKindOf.swift */,
F2C33F4DC31A8120E8743B2A6163585F /* BeAnInstanceOf.swift */,
BBD64278700877FA62EC38F4B27A4881 /* BeCloseTo.swift */,
A5B11548A6516BB21526619897608E9F /* BeEmpty.swift */,
7CC8DBE433A202DCF807B91BB5557F6D /* BeginWith.swift */,
40E944EFD24B41C7BD60837DFABAFB06 /* BeGreaterThan.swift */,
440EEE98EDFE4F4752E17AFA3F550530 /* BeGreaterThanOrEqualTo.swift */,
1D9DA3454B15DE38784FA22A452C0121 /* BeIdenticalTo.swift */,
A1AB10174D3955FC8BF42A3B45B4C011 /* BeLessThan.swift */,
B54E8617109E65C3B975FE6AB81F0562 /* BeLessThanOrEqual.swift */,
645422FB2E7D26E7DD6556CCAC35DAF0 /* BeLogical.swift */,
605EF2A73B22D3E0863B202A2B7CFDEE /* BeNil.swift */,
D31FA66A5FC0844A36FC1358ACE2220C /* BeVoid.swift */,
CE1C0594000452979B62B1798B1A59E8 /* Contain.swift */,
2DD6CC02AD6D4C0E7D1169EF9ECB3706 /* ContainElementSatisfying.swift */,
0F18AD3DFDC80322BBE0B149EC31BCC7 /* CurrentTestCaseTracker.h */,
B887FE600257A86B38E726B0E1D628AF /* CwlBadInstructionException.swift */,
7FE66AEC1DADAB5A835D219A5EC52ABA /* CwlCatchBadInstruction.swift */,
C57921338FECDDCDAAC88A57C2055737 /* CwlCatchException.h */,
C949E12BA82E3B6636449B775694F4F3 /* CwlCatchException.m */,
53D1429ABADDB303927AEA89A830C740 /* CwlCatchException.swift */,
3B6BAD1D6087151AE80585CD387919BA /* CwlDarwinDefinitions.swift */,
EF959663D47B18687B5785D72D856CB6 /* CwlMachBadInstructionHandler.h */,
9F7F7F422628BD0102712BD3296ED4AD /* CwlMachBadInstructionHandler.m */,
CAB52415DA15D60348D226639C322706 /* CwlPreconditionTesting.h */,
2294B6CCB2D8D93AE1F605AAA6A03240 /* DSL.h */,
82267A98670DE3E96EAB2047A8872FE0 /* DSL.m */,
8D35B9829391F58D646F665CACF28F89 /* DSL.swift */,
4751C923ACB051055F76821461557965 /* DSL+Wait.swift */,
BAA7B55BBFC51CA440749FF23010D40E /* EndWith.swift */,
15A5A2213F831D11D721E17AA14BFB58 /* Equal.swift */,
77125F245BAE7809A034657A48A40830 /* Errors.swift */,
3018B485E8310AC7A651EF03D32D0823 /* Expectation.swift */,
B4273097B1D0DCCA1E22978B03474F2F /* ExpectationMessage.swift */,
014CC71E572C5CC14ADFA82A8B7B97DC /* Expression.swift */,
A5626FB74EE8784DFFFC4B80B1061AB4 /* FailureMessage.swift */,
D954E7E4D336837086313DAE758F7F32 /* Functional.swift */,
698366519E8DF1484C0AE2845EB47D7F /* HaveCount.swift */,
679FFD5386CAB1887F96D8FF6D84B7B8 /* mach_excServer.c */,
835B6DA0EF74C46A43F1142347E4B44E /* mach_excServer.h */,
67C7BB2DC0DED3CBCF5D776D9E39AB30 /* Match.swift */,
55E9F8B6E78A1CAF1BEE982E163FA968 /* MatcherFunc.swift */,
8F4384CDA1479E6D88E3486B78FD7485 /* MatcherProtocols.swift */,
35AEA5EE84902B2868710A17C747AE0E /* MatchError.swift */,
2727DBDF3F41A52F002F6B1992165881 /* Nimble.h */,
6642EE042EBCD8FB5BA4D88BAF4EAB36 /* NimbleEnvironment.swift */,
240CEA0915AA3241F6A49CB65CEC8767 /* NimbleXCTestHandler.swift */,
88CCA655A571DD68102067AFB473BD77 /* NMBExceptionCapture.h */,
24FAA89E2AC44E204B5E39B77BD6B921 /* NMBExceptionCapture.m */,
2192785265D796ADAF8B5DE3C97DD4CE /* NMBExpectation.swift */,
7F8524E2A1A324B13D66AAB576C8C742 /* NMBObjCMatcher.swift */,
E15D0BD895E38B9512195BFED925B0F7 /* NMBStringify.h */,
613C21AD6E98946BCAA54F25374CE020 /* NMBStringify.m */,
9E0D34DBF4CE55E4FF1BADBA826F9389 /* PostNotification.swift */,
DE960FDA70783D86C4832257093317D2 /* Predicate.swift */,
A6288AE2766817391D894EE944596984 /* RaisesException.swift */,
77C2834A0AE71F3E85759885C0557533 /* SatisfyAnyOf.swift */,
EADFE06546D2FE7C91DF557E0F5ED093 /* SourceLocation.swift */,
34B5614CBE84B80AA39F75553B3C322A /* Stringers.swift */,
0AB0094EAAC3C18B000459B228F01637 /* ThrowAssertion.swift */,
47578CD4C4970729A947555C915B2317 /* ThrowError.swift */,
CCE295D4D0ED3F1666C5921320F0E2C6 /* ToSucceed.swift */,
187D1EDF80EB0D8FC035AC3570D09DD5 /* XCTestObservationCenter+Register.m */,
F3361BEF4B5F2EFF34CEB545A19A16A1 /* Support Files */,
);
path = Nimble;
sourceTree = "<group>";
};
7BE34EE7067F7CC8A54539A282682749 /* iOS */ = {
isa = PBXGroup;
children = (
E5D8173434FE00016739EAFDEFEA9313 /* Foundation.framework */,
3FBDD60AB5EC0183A198A13D9A5D7BCE /* XCTest.framework */,
);
name = iOS;
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
FC1BBF8FAAF2A062B3248B638D8ABB4A /* Development Pods */,
433CD3331B6C3787F473C941B61FC68F /* Frameworks */,
3C3FDCB7F0ADE0D02BF96EB1D4E2C89F /* Pods */,
1CC9B6DEA2B36CF5A7A80A85FFA98437 /* Products */,
99E7DB3CE574FA0D5F9E465F89F0AF03 /* Targets Support Files */,
);
sourceTree = "<group>";
};
99E7DB3CE574FA0D5F9E465F89F0AF03 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
D0D4C31D07BBFECA5983E56BB9180FA2 /* Pods-CollieGallery_Example */,
18C1EF52FDBADF828C88D1AC9856CC0A /* Pods-CollieGallery_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
D0D4C31D07BBFECA5983E56BB9180FA2 /* Pods-CollieGallery_Example */ = {
isa = PBXGroup;
children = (
DA3D7F64FE2D4F63A8DF4D3113A24B26 /* Info.plist */,
151A46FF08F30C1636B1906A0ED6D2A3 /* Pods-CollieGallery_Example.modulemap */,
0F767114DAC074EC87A34820225C66EE /* Pods-CollieGallery_Example-acknowledgements.markdown */,
609948446BB816E76BF5280B5F35653E /* Pods-CollieGallery_Example-acknowledgements.plist */,
52B1B9B8B869F3A3032547D2C6143A22 /* Pods-CollieGallery_Example-dummy.m */,
750B8D87B616FD2FC3C673648C9628EF /* Pods-CollieGallery_Example-frameworks.sh */,
0BA7DA702A654547F3BB56E3105959D6 /* Pods-CollieGallery_Example-resources.sh */,
54F9AB85B1282D35A630C3B1C7D9AFD9 /* Pods-CollieGallery_Example-umbrella.h */,
7811C95E49C80B66800BE159C9672F1E /* Pods-CollieGallery_Example.debug.xcconfig */,
647F577D86960CDE580F9078DB91CDD4 /* Pods-CollieGallery_Example.release.xcconfig */,
);
name = "Pods-CollieGallery_Example";
path = "Target Support Files/Pods-CollieGallery_Example";
sourceTree = "<group>";
};
D803EB5B15D4EAD4461BD11F3EF5188C /* Quick */ = {
isa = PBXGroup;
children = (
73C1D1A0D20C667FAF4F01C3BA4AC451 /* Behavior.swift */,
20C9E93FDAF76CEA15A9E23CC159DED1 /* Callsite.swift */,
D685C0D509328CD8778F99DD53A49A48 /* Closures.swift */,
4FEA1DF1C7C22E7B20D2DC30FB9D3EF1 /* Configuration.swift */,
9C78BF27F3A2B7B1368FE2E4317B6557 /* DSL.swift */,
24FAED8BD878439BC32BE461165E4E08 /* ErrorUtility.swift */,
B38F7EB4258060BAA361D06EF1B16D9B /* Example.swift */,
829CA47FBDF0A83BF67F7102D4CD40E6 /* ExampleGroup.swift */,
301223B3EB74E21CDB1303C459B57231 /* ExampleHooks.swift */,
8452C5F4B63A4A0178E56CDC9E95DFE8 /* ExampleMetadata.swift */,
5C4D786F262665CE8C9113FA91745753 /* Filter.swift */,
9245B48A46AAC45502A6B8A2AB745038 /* HooksPhase.swift */,
75B78AC1C0059E66BD95A9F0CD2D24F5 /* NSBundle+CurrentTestBundle.swift */,
057B1682EF92E71137867F0C259AF2CC /* NSString+C99ExtendedIdentifier.swift */,
B9985CC02179403DC54B3460DCE486AC /* QCKDSL.h */,
12989D830FCE4AEF54A357265111CAEF /* QCKDSL.m */,
1C846417EADDAAFF733CF6AC8FEB5EEA /* Quick.h */,
6D2E298780429D096F1EC434CFC3B225 /* QuickConfiguration.h */,
8EF0EA564D82AB46B710DC6096C1EA6B /* QuickConfiguration.m */,
F4C7D6328493B73EF741AC61F4CEF01E /* QuickSelectedTestSuiteBuilder.swift */,
EA8315675F3D2B2385E834043F85C676 /* QuickSpec.h */,
38A82DE4A0130E4C946A904FEDDD74CA /* QuickSpec.m */,
6BA4794DD94D5DE6BFFFEEC72B8C43E3 /* QuickSpecBase.h */,
E585A4F6C1434FD922B8371E432B5051 /* QuickSpecBase.m */,
2E8E430D83F3CC7F72E348A0B222C46F /* QuickTestSuite.swift */,
42DD07575CFDE63DE6412F425FDBED71 /* SuiteHooks.swift */,
B6D48A33A49B17952C7ABB6214240CB9 /* URL+FileName.swift */,
129DA04B381B509DAEDD565711C5A0DA /* World.h */,
8737F3E0C1FB1ABDDC8F61A081B1F76B /* World.swift */,
467F00CAF06ADEF612F697F068843FB2 /* World+DSL.h */,
65B4CDEF78BF13177A9303C1E765E5F6 /* World+DSL.swift */,
7D9A924C203A11767BBF4D9C3737DA5D /* XCTestSuite+QuickTestSuiteBuilder.m */,
52324DECCF3E0D2A76F8AC61AB22FC1B /* Support Files */,
);
path = Quick;
sourceTree = "<group>";
};
F3361BEF4B5F2EFF34CEB545A19A16A1 /* Support Files */ = {
isa = PBXGroup;
children = (
8ADAC08CF077788B72CB30045EAA75B4 /* Info.plist */,
C2876639CE7CED9DB554FDBF6A1D7CEB /* Nimble.modulemap */,
95F526FB4BC95B98881D9F2CE746A14E /* Nimble.xcconfig */,
8686015D3977C1730000CD277955566D /* Nimble-dummy.m */,
F32D35AB3A465D37862B33B916D35C34 /* Nimble-prefix.pch */,
148B405578D3A3DC218BD48032E30DEF /* Nimble-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Nimble";
sourceTree = "<group>";
};
FC1BBF8FAAF2A062B3248B638D8ABB4A /* Development Pods */ = {
isa = PBXGroup;
children = (
5E3652A2BCB66E2BC5D640ECA34BA2B8 /* CollieGallery */,
);
name = "Development Pods";
sourceTree = "<group>";
};
FC93D52D00C45B4DECEAC9A84875DF66 /* Support Files */ = {
isa = PBXGroup;
children = (
1934BEB9168057075841AF9F99C37A86 /* CollieGallery-iOS10.0.modulemap */,
43FBCD23059D805CF5FF2B875704E9CC /* CollieGallery-iOS10.0.xcconfig */,
560C55959B1753A4BD0B82B62A4D014C /* CollieGallery-iOS10.0-dummy.m */,
06CA95B4FCFFBA814B679AF332BEF2D9 /* CollieGallery-iOS10.0-prefix.pch */,
9CC27408B2387A81027E92C7E8190406 /* CollieGallery-iOS10.0-umbrella.h */,
45BDD13500B2447ADD62C1A732AC0C11 /* CollieGallery-iOS8.3.modulemap */,
32083AFC76E44FDB753D00DE988937A5 /* CollieGallery-iOS8.3.xcconfig */,
AB30E8D8B71DB06701AA5841329C0E4A /* CollieGallery-iOS8.3-dummy.m */,
152113E52FB502542A8895BA6B94B03B /* CollieGallery-iOS8.3-prefix.pch */,
F2BBC88CEABF3D1989F197D338DA87D3 /* CollieGallery-iOS8.3-umbrella.h */,
97890ED4A8107ACD0A62D7837A4AF09C /* Info.plist */,
0EDF854C9A7846329DD516A5BBD18C65 /* Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/CollieGallery-iOS10.0";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
04D6C1ED1B6BAD84D0DE07B8A029B112 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
DC6E9C8B8F3BE94F7483A6B88CB16BDA /* QCKDSL.h in Headers */,
A13A68752FF4AA0BC3376434399B0FE8 /* Quick-umbrella.h in Headers */,
0D69FD1047DAD74F73BD83C0A8FCFD12 /* Quick.h in Headers */,
774D8E4E270819E95AF2AF24D3E8965C /* QuickConfiguration.h in Headers */,
CDE5D6E284E02FEDDD30FA9DD548B111 /* QuickSpec.h in Headers */,
FED13A1E8D53141D837E07661D372427 /* QuickSpecBase.h in Headers */,
49A027D5BC1647165E5AF7831E27AE59 /* World+DSL.h in Headers */,
A50877EB28BF1A32CE9F1E2B7AF7EC64 /* World.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3BCB78ACEC5A0BD9AE54A3CAB0B7FC97 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
047794B84CD5AC9233EACE5AF5DA0D84 /* CollieGallery-iOS8.3-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
57D2881F2382D24EBF229C8EA21EA2BC /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
75B9CF46B85A5AD239125F045EDA7D69 /* CollieGallery-iOS10.0-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
651B1C32307C783C1F5AC5E3800115E8 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
079840DA6A990A1936EC94F345D964EC /* Pods-CollieGallery_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;
};
D347922F2926735AE0BD28088B2BD36D /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
46EB19F1D7BDB01D2A00F22F479FE24C /* Pods-CollieGallery_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
515D626C704FEC65530B41723E2502CE /* Pods-CollieGallery_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 57BCF746CA743DFA556AA5B78DC7429F /* Build configuration list for PBXNativeTarget "Pods-CollieGallery_Tests" */;
buildPhases = (
832724FFF68549DB8EA3ED4664DE1A48 /* Sources */,
2A8495DA7ADE21D5BD9BB0EF24366DF6 /* Frameworks */,
651B1C32307C783C1F5AC5E3800115E8 /* Headers */,
);
buildRules = (
);
dependencies = (
127FB428B77C352E12D97F03456607CC /* PBXTargetDependency */,
E6B884B1CB2BBACB99519AF4CA6D9245 /* PBXTargetDependency */,
681359E304049823E6A9A68C56CADDE6 /* PBXTargetDependency */,
);
name = "Pods-CollieGallery_Tests";
productName = "Pods-CollieGallery_Tests";
productReference = E965E5F5A6E5CBD31703A6866B9E5C80 /* Pods_CollieGallery_Tests.framework */;
productType = "com.apple.product-type.framework";
};
A091DAC819ADCE7E94753B244A471C36 /* CollieGallery-iOS10.0 */ = {
isa = PBXNativeTarget;
buildConfigurationList = 34E9D5C07D99F09BAEFD6324B5731A19 /* Build configuration list for PBXNativeTarget "CollieGallery-iOS10.0" */;
buildPhases = (
0F1CEFE77CFC30A2475B09FA7CF87473 /* Sources */,
24EBEFF0B762599F26D5D6F13D3B3D93 /* Frameworks */,
57D2881F2382D24EBF229C8EA21EA2BC /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = "CollieGallery-iOS10.0";
productName = "CollieGallery-iOS10.0";
productReference = 0B36E9401E41D749C90967D6752B0963 /* CollieGallery.framework */;
productType = "com.apple.product-type.framework";
};
B9986B3A7F3963CD8FBC68136B8A1429 /* Quick */ = {
isa = PBXNativeTarget;
buildConfigurationList = 2EF8BCE0D80800A476648C8B135B7F5A /* Build configuration list for PBXNativeTarget "Quick" */;
buildPhases = (
F2714891284E09C5103465E657B2167D /* Sources */,
061AA72670322095C61B86E117A3B227 /* Frameworks */,
04D6C1ED1B6BAD84D0DE07B8A029B112 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = Quick;
productName = Quick;
productReference = 369FD78CAF0E1B4EF1D633163449013B /* Quick.framework */;
productType = "com.apple.product-type.framework";
};
D2BBFEFCBF14D1432FD62F986D63EE41 /* CollieGallery-iOS8.3 */ = {
isa = PBXNativeTarget;
buildConfigurationList = 4B2CFB58D6D6799E454AB189BFEDB33F /* Build configuration list for PBXNativeTarget "CollieGallery-iOS8.3" */;
buildPhases = (
920B3245837C8D5B8A36ABE64704B111 /* Sources */,
2238E21011AD9FAB04AE8DAB251D119F /* Frameworks */,
3BCB78ACEC5A0BD9AE54A3CAB0B7FC97 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = "CollieGallery-iOS8.3";
productName = "CollieGallery-iOS8.3";
productReference = 38D21D7D643C65ECCB398FCBB060CDFF /* CollieGallery.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 = 56902A4CDDD56D91826B08D9666C4657 /* Nimble.framework */;
productType = "com.apple.product-type.framework";
};
E7B33BF877A77EA4E1019E9C35245197 /* Pods-CollieGallery_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = BDD7D21382DBDCF9094ACAC7556C9A88 /* Build configuration list for PBXNativeTarget "Pods-CollieGallery_Example" */;
buildPhases = (
F5995C5064D8C16ADE83F4D8F707B703 /* Sources */,
6BAD677C484E23D7820F38FDBA2CB95A /* Frameworks */,
D347922F2926735AE0BD28088B2BD36D /* Headers */,
);
buildRules = (
);
dependencies = (
60B6DB26BCF2BC320FA4EB5B965097CF /* PBXTargetDependency */,
);
name = "Pods-CollieGallery_Example";
productName = "Pods-CollieGallery_Example";
productReference = 1F9A7ECA3C068E8E646ABDB7EC6F3BDA /* Pods_CollieGallery_Example.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0830;
LastUpgradeCheck = 0700;
TargetAttributes = {
515D626C704FEC65530B41723E2502CE = {
LastSwiftMigration = 0910;
};
A091DAC819ADCE7E94753B244A471C36 = {
LastSwiftMigration = 0910;
};
B9986B3A7F3963CD8FBC68136B8A1429 = {
LastSwiftMigration = 0910;
};
D2BBFEFCBF14D1432FD62F986D63EE41 = {
LastSwiftMigration = 0910;
};
DD7C8BF89FE8053D0A2A2D88BB49CF07 = {
LastSwiftMigration = 0910;
};
E7B33BF877A77EA4E1019E9C35245197 = {
LastSwiftMigration = 0910;
};
};
};
buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
productRefGroup = 1CC9B6DEA2B36CF5A7A80A85FFA98437 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
A091DAC819ADCE7E94753B244A471C36 /* CollieGallery-iOS10.0 */,
D2BBFEFCBF14D1432FD62F986D63EE41 /* CollieGallery-iOS8.3 */,
DD7C8BF89FE8053D0A2A2D88BB49CF07 /* Nimble */,
E7B33BF877A77EA4E1019E9C35245197 /* Pods-CollieGallery_Example */,
515D626C704FEC65530B41723E2502CE /* Pods-CollieGallery_Tests */,
B9986B3A7F3963CD8FBC68136B8A1429 /* Quick */,
);
};
/* End PBXProject section */
/* Begin PBXSourcesBuildPhase section */
0F1CEFE77CFC30A2475B09FA7CF87473 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
9FD3BA47B371B8CFB50B9B9E1D2D0ABD /* CollieGallery-iOS10.0-dummy.m in Sources */,
66AF09C8521FD4E9560C755FD0A173BA /* CollieGallery.swift in Sources */,
4790034F8BE04518179C4BB80D171D8D /* CollieGalleryAppearance.swift in Sources */,
573CED8A89A898D64D29D8785BA95C11 /* CollieGalleryCaptionView.swift in Sources */,
B56EAEBFBCF2ACAF6EA8BE177AB31B2A /* CollieGalleryCustomAction.swift in Sources */,
D84D0FCD90C951C32C062EC414BD08C1 /* CollieGalleryDefaultTransition.swift in Sources */,
B54D319C2A73840FD2E3A4C410C901FC /* CollieGalleryDelegate.swift in Sources */,
10DF7E96930427911431C990FDAB71AB /* CollieGalleryOptions.swift in Sources */,
952C74EFDBD1D0EC23E99465DBE7A299 /* CollieGalleryPicture.swift in Sources */,
49DE42A30F7D46D317E1DF75E034869E /* CollieGalleryTheme.swift in Sources */,
98459877B2AAA6FCAB7F65343EB15562 /* CollieGalleryTransitionManager.swift in Sources */,
CDF45AD7A7DC2E250238B84FCAAE7711 /* CollieGalleryTransitionProtocol.swift in Sources */,
3EB854B3E0B1BE136986C8C26F68362E /* CollieGalleryTransitionType.swift in Sources */,
519BC3E2DCF7C89A0023344915E8FEFF /* CollieGalleryView.swift in Sources */,
C48523F3BB4C0C6AB336C0ACEA176484 /* CollieGalleryViewDelegate.swift in Sources */,
1FA4B3EBF17212B0486F51806CC9E2FF /* CollieGalleryZoomTransition.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3B8E072FBCB923980AC89BAC33C449B9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
996D6C00F3FD5EA54BDD6AEAD3FED165 /* AdapterProtocols.swift in Sources */,
499EF2F53452B6D2A5B7AA77EE20E826 /* AllPass.swift in Sources */,
54BF22CC5B8EE1556B1910114B0A344B /* AssertionDispatcher.swift in Sources */,
7C41BBAF746B3905067057F1D93E07B2 /* AssertionRecorder.swift in Sources */,
2C37372BD332C4A65660FEC163268265 /* Async.swift in Sources */,
CE8187A341E91D653FD83A1E951ABD49 /* AsyncMatcherWrapper.swift in Sources */,
03803CFC82ACD7FE01A1901C7134F342 /* BeAKindOf.swift in Sources */,
FAAD171A8213AF6FF83809CC945B6A8D /* BeAnInstanceOf.swift in Sources */,
3D0DFC8224C058C7ED67A1BA3FA5C98E /* BeCloseTo.swift in Sources */,
7693172A50CF2ECC06CB6371E72A9C62 /* BeEmpty.swift in Sources */,
02A2EDA5F16DDDC57F9F84E1A35CDAC3 /* BeginWith.swift in Sources */,
378A01370E6BAA0476C3A9A58E6DFFD3 /* BeGreaterThan.swift in Sources */,
4551BA04EE17C450BFA740BD358D67F5 /* BeGreaterThanOrEqualTo.swift in Sources */,
A29D31F9CC33402227C773299DA5CA5E /* BeIdenticalTo.swift in Sources */,
75A1462B99EBF871A730FB57BCF5CC9E /* BeLessThan.swift in Sources */,
C4C581D30388DB4457793C0482284A92 /* BeLessThanOrEqual.swift in Sources */,
6F8FF2D35AED45A66D95D7CC715546E0 /* BeLogical.swift in Sources */,
0ABBB672C09A81AB3CD54D54D03B092C /* BeNil.swift in Sources */,
0E5E651C03635CE8E0F0A8BBA87951A3 /* BeVoid.swift in Sources */,
D7034E2D20FE7CAC777C6F4658A15A5C /* Contain.swift in Sources */,
6A0A2A8C45C3AF314DAD20CAACB1A03E /* ContainElementSatisfying.swift in Sources */,
5BF985585A09203B37CB2F2167A3AEC6 /* CwlBadInstructionException.swift in Sources */,
E7213179EAA15BAA2548B4D65D471EA2 /* CwlCatchBadInstruction.swift in Sources */,
EE8E0636854FE286E11B804DA0AA5FC1 /* CwlCatchException.m in Sources */,
610F3BF659A5E2C154398A7C85E1272F /* CwlCatchException.swift in Sources */,
71C2760139B139848B6B72AE920E6995 /* CwlDarwinDefinitions.swift in Sources */,
32C5D72A5F8B835CED8844C78085DCB2 /* CwlMachBadInstructionHandler.m in Sources */,
56F1AA62A4A63EA055876472F53C543C /* DSL+Wait.swift in Sources */,
8B293115670A9C71C45B1869D816CCA9 /* DSL.m in Sources */,
3BD159C8498F135242413CD0B0DC05CB /* DSL.swift in Sources */,
E9BAB3234A5275D0516BE2FA43D09B27 /* EndWith.swift in Sources */,
9A236AB1DCA45F106E9C2325F03D2DFA /* Equal.swift in Sources */,
204EC69B82E6B78B158F99F19B67AAB2 /* Errors.swift in Sources */,
75603C7165BC5E8EB63042D204ED223A /* Expectation.swift in Sources */,
C4D8C5F3839E75A8719A503EDA0920D0 /* ExpectationMessage.swift in Sources */,