-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1932 lines (1919 loc) · 128 KB
/
project.pbxproj
File metadata and controls
1932 lines (1919 loc) · 128 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 */
00B5C60A34D0AEA997855570A1C0E171 /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E873F992797EF8E974EAF641CB4FD72 /* ExampleGroup.swift */; };
02BF9988CC94A01E7CB6049694390020 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 3583D7D5C6884B5811739712676819ED /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; };
02DF5BD2281BA10105A447F95FCF8CF3 /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD51F90687F1FD2CD6E2CDF0E3F62C27 /* BeLogical.swift */; };
0492354DA7EF0C9068F7B4E8F74001B0 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A14E97EFA39EE5B8E0791218121044BD /* FailureMessage.swift */; };
0A6E71555F55082003A3DB2B03CA85D2 /* AsyncMatcherWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 130A59DDB32BBDCFB4ABB11FA368C7F8 /* AsyncMatcherWrapper.swift */; };
0F49254A4C560DD4696936F6080756DC /* Nimble-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F4A7503AAF3BA8144C1103305BE6E6A9 /* Nimble-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
1182D9E9697D7267D9D4C08EFD509182 /* NimbleSnapshotsConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCE77204D4845498864080BE9D314C76 /* NimbleSnapshotsConfiguration.swift */; };
15B056130303E54ED28B6C8F73AB41C9 /* Brundlefly-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A6949CF9498228428822E26BE524C02E /* Brundlefly-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
163C6E8E5E7CEE1E0BEEB9CA0939DA3A /* UIImage+Diff.m in Sources */ = {isa = PBXBuildFile; fileRef = E8AA8837A12B9D3429E4E09410BB4EEC /* UIImage+Diff.m */; };
1993FFC9D022FFA8EA2928DBCA747F55 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1B4A758C04274FC6787056B3EA02B27 /* DSL.swift */; };
1CABD7B2D2F7A66B633F851806A3C19C /* Brundlefly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 18EF9DB399FDB3F074C6A00FD191756C /* Brundlefly-dummy.m */; };
1E28F9362956B758C4C981D3C1129C90 /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26BD571A5BAA6FE5093A498526F8027C /* BeGreaterThan.swift */; };
1F118728B3D74089480152A6B660EA9A /* UIImage+Compare.h in Headers */ = {isa = PBXBuildFile; fileRef = C1C47926C9D29EC2518DD71AA52EC385 /* UIImage+Compare.h */; settings = {ATTRIBUTES = (Private, ); }; };
1F9A73FCE8FB5B498DDBE09A673804EF /* Nimble-Snapshots-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E13647534D1220F6C05382BE763A06B6 /* Nimble-Snapshots-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
20DED612A8439132802DB427AF033FE8 /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = B2579450CF15E307A3DE58AA966D69F3 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
28F2071FFF5C5B0E9DEB6C3FE43A30CC /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 824E7E4508E1A8CC3DDFF89F639AA1A3 /* UIKit.framework */; };
2D3B916F7168E9412EDB95BA203A5BB4 /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA9F459E31DA81F5231DDC1B69332F8E /* ThrowError.swift */; };
33264C6A7A3536AD91EF42B3E8CC8220 /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = B18139039A0FE80ADC6A3985117366A4 /* BeGreaterThanOrEqualTo.swift */; };
33514FEE6EA65605EFB6F1801834B692 /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CE6F28E609BD2D14BFE5E6667DAB247 /* AssertionDispatcher.swift */; };
35848D70EAC9237246BDF63457729694 /* FBSnapshotTestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = C234BB580B6219647D3BB20A7B9A69F2 /* FBSnapshotTestCase.m */; };
3A92AEE86034356AF8987F20EE1F82DF /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E77F579A3DFCEB86931BA459893513A /* EndWith.swift */; };
3AEAC447B09E7AABC140654C8529BC94 /* MatcherFunc.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF4295D295CD1D2EF74D905D83835A4 /* MatcherFunc.swift */; };
3E8F3721C8B19D1CE6986D886AE07AA1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E6F567A0F84D52EF356BEDCB9F4C9AE7 /* Foundation.framework */; };
40D49AE3C03F78EAFFA28F06917CA454 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = FDA1C9A64A5B45DEFCFFD313C29302D3 /* QuickSpec.m */; };
41D8739E2720D3535592391C25507158 /* FBSnapshotTestCasePlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = B1046D00F52CD8F37953B5E886206D45 /* FBSnapshotTestCasePlatform.h */; settings = {ATTRIBUTES = (Public, ); }; };
41E8F09F5FC631A90D7E818934D4094A /* Quick-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CEDC7A7B76C6E4AA91841ED1C78FC177 /* Quick-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
49B45FE2A8CEE526947C865277570752 /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D7D938089484EB492A8626AA8E5C528 /* SuiteHooks.swift */; };
4E87C6AE24AB15700A39FC24A2F1C93B /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA5B1C3374EB4F93C57940CE8580D9F6 /* BeLessThanOrEqual.swift */; };
512DFAE728521F02AF225F0082195DCC /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = F8C7B43832CED29D843ABAD9BFBF89CF /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; };
52B0263F90696E7FD87CB146D5C5E2C1 /* UIImage+Diff.h in Headers */ = {isa = PBXBuildFile; fileRef = 59E8FA7292292532AC62D928269FD37A /* UIImage+Diff.h */; settings = {ATTRIBUTES = (Private, ); }; };
52F7A46AB0053D8BB1D793B917D37BB2 /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACB4C9E009BF21741AB0A3E52D7E8655 /* SwiftSupport.swift */; };
58DE63B2FF3954F1467A5B41D8FF3932 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 899697610CD89ABF71B0C316A2B370ED /* XCTest.framework */; };
58EBA2C1A43283FB2188AB1FB592D32B /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11CEBA0F9875766C6578D56EC1878D57 /* DSL.swift */; };
5D14695A69EC4A8DF7488D0FC59C105C /* FBSnapshotTestCasePlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CB47B4E75EF9326D8F8E2B1BB5F375D /* FBSnapshotTestCasePlatform.m */; };
63F0EF2726AC4A9DED3287263F6BAEAC /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AC13ABDCDD4DE19AAD5085D05125936 /* ExampleMetadata.swift */; };
6CD6E88245A51E2A00A5D08B0F9225F9 /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22C246E60730C007089BE08D4486869D /* ExampleHooks.swift */; };
6FE8C202ABAA98B3103641F7B02D4881 /* NSString+QCKSelectorName.m in Sources */ = {isa = PBXBuildFile; fileRef = D678E63C357CFBA1B94FB88A80FD2E1D /* NSString+QCKSelectorName.m */; };
723FDDFD804188090511DEFA8309A06B /* UIImage+Snapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E25FBEBD12C6C9E625F444CD4907C3E /* UIImage+Snapshot.h */; settings = {ATTRIBUTES = (Private, ); }; };
7303ADB5CB9BF3F84BA168E7DC9A9E75 /* Nimble.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5AD55F3974939097556240403DEE2DFF /* Nimble.framework */; };
73695FA6A6CDFBB13C0CC73C2E5126C0 /* Nimble-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EEC586AC5D39BAF3DB1952518D9C5AD /* Nimble-dummy.m */; };
739CDBA5A3A1DDFA56B6A5D832B1CFA8 /* NSString+QCKSelectorName.h in Headers */ = {isa = PBXBuildFile; fileRef = FEF7AC68E5B6497E419278307A1CA225 /* NSString+QCKSelectorName.h */; settings = {ATTRIBUTES = (Project, ); }; };
75333FD045E0926C88212C53E25CD406 /* FBSnapshotTestCase.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9823197EA5904A9150FB0AD8B09841E6 /* FBSnapshotTestCase.framework */; };
7680F08C43B965EC873D26E6AD854C9F /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 011394233A7239143D706983E89EE6E5 /* BeIdenticalTo.swift */; };
77128C0365A98E3BAC038A915B38791C /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10B87C10CF9687BF019CF83CB256DBBD /* BeAKindOf.swift */; };
788E3D9458FE9540469981BE9A0B227C /* UIImage+Compare.m in Sources */ = {isa = PBXBuildFile; fileRef = EAD96117C39A7B5100135D5FCBDEBAFE /* UIImage+Compare.m */; };
7A6E2730A25A55D8DFA74D3D7CB005EF /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E8E5264D4E4F74FEBD8FEF584E260EB /* BeAnInstanceOf.swift */; };
7BEF20E09F0E864478905311672F91AB /* FBSnapshotTestController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DF5FFAEFCCB6ED3B214EB7D8A09278F /* FBSnapshotTestController.h */; settings = {ATTRIBUTES = (Public, ); }; };
7BFD25B1BB1116D8AC47E2C3874C5B76 /* ObjCMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29796A65251B88A8DADB8498350E0A1C /* ObjCMatcher.swift */; };
7DA9FF8513AA48310B15A0744A541818 /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9BDADBB262C5FFFF97834DD116EAE46 /* SourceLocation.swift */; };
821A26883ED14BDCD7EBADD37D671D17 /* FBSnapshotTestCase.h in Headers */ = {isa = PBXBuildFile; fileRef = DE002C91FBB91E22ACE186DB505955BE /* FBSnapshotTestCase.h */; settings = {ATTRIBUTES = (Public, ); }; };
831D33A4C5C5BBC1EC158D9A236C61D7 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32771F017408506D7418E4ABDD594BA9 /* NimbleXCTestHandler.swift */; };
8576B72E8835D09B443B1CCAAB11475F /* Pods-Brundlefly_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46ABED775F0153CC13A00E44816D267E /* Pods-Brundlefly_Tests-dummy.m */; };
86DABE920F2113B8D96ED9E8C76390C1 /* HaveValidSnapshot.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18CDFD38206302BDD75F4CF1998D5DD4 /* HaveValidSnapshot.swift */; };
87165912578E674C9409A621A0FF21FF /* World+DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F4953F6E7D2BA1C72B639CC7D9A5EB9 /* World+DSL.h */; settings = {ATTRIBUTES = (Project, ); }; };
8D0BF52FF564A170A3D1DE28C27B233E /* Poll.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA329B2CFA87E526DA6452FDD6BB26BC /* Poll.swift */; };
8D549E01DA1D5104335CCEABFF870005 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E6F567A0F84D52EF356BEDCB9F4C9AE7 /* Foundation.framework */; };
9187EEC2982DB82AD8D3A7001AA647D6 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FD2FEBA13C21B99B45C2553743F1295 /* NMBExceptionCapture.m */; };
9341B96D63EF6C54A1F906A1BBAEAF46 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D815E4D0509F64977CC911FFE53B202 /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
9646787942A85613FE77F45794E9B5CD /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6249D63C7453302DA79EBB9E0440A1F9 /* BeginWith.swift */; };
967F3673D013935BDB999620E5D43589 /* Brundlefly.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 07F6E742BDF597C3C5312D9987B0374C /* Brundlefly.bundle */; };
9A6DE5B6F55232DC12497ED10E7E1DE4 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EEC4AE3D10F56B3279410A932A7BA59 /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; };
9AFB25D3C2E4B568E3937E8E8FDC16A0 /* Nimble-Snapshots-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 70D707086D44E773A37529EEF12443BD /* Nimble-Snapshots-dummy.m */; };
9BD99F97E6F2B3811B56343F3505577C /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCDDE1B04A94712F4D2883C80EE62D96 /* World+DSL.swift */; };
9E7786C034F0E0A6B5F0A0E6BE7D7E4A /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD2764775E2D6E934DD52F0446CA03DF /* BeEmpty.swift */; };
A80769C99C01B5415FB8EA544903CE1E /* World.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DEB112A26C5C33C8B8F619999E196CF /* World.h */; settings = {ATTRIBUTES = (Project, ); }; };
AA8501741ABB8D75C6C47DE086BACD37 /* FBSnapshotTestController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A5998B34EE4429FE9C07DFC94F0ABB4 /* FBSnapshotTestController.m */; };
ABCAC615DA968F61B55636A337407A9F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E6F567A0F84D52EF356BEDCB9F4C9AE7 /* Foundation.framework */; };
AC035703A5A6D4B4A99CF3A3C25A9EC4 /* Quick.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C36DB6F05615EC71278526272A72BAD /* Quick.framework */; };
AD4D905241DED4AEAD67447088ACB23D /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 899697610CD89ABF71B0C316A2B370ED /* XCTest.framework */; };
AE8399E9DAE987BFC9D4F35830B2E419 /* PrettySyntax.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1438417AFCBD3D478075A35156E748D9 /* PrettySyntax.swift */; };
B0A26F58BA3E6222E50AE5AC883B8EAF /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DD3149E7587B1EF2A379EC646B17083 /* DSL.m */; };
B41E8E775408ACE233F29CE93388B270 /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 983197F6CC870B4E78D23FCBEEAE9845 /* Contain.swift */; };
B905718B2501DDA22F2AE73CB6E76E6B /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 160CBE7729A142944B5FB1512025954D /* BeCloseTo.swift */; };
B90F0080EBFC85E394C5A840D8AFB3AB /* Pods-Brundlefly_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 72CA7214D823F6189C2E52752EADCA8F /* Pods-Brundlefly_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
B9A25618242BA2CB1A10EB79BFAA2A2D /* Pods-Brundlefly_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7122AB42716D04142B5AF736987EC87E /* Pods-Brundlefly_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
BAB03677AA4F12424494BEAF80671E82 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C61FB5D5A77F0F466C68BEF9983217F /* Example.swift */; };
BB4F35062294C1A461DA3CEF6306A1DB /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8D4AFE9465C639DF4E67D1EF16C7D55 /* HaveCount.swift */; };
BCB53F24DCADF12601B8BA90AE3190AE /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9500663E16F1B37B02D2F844A81685E0 /* BeLessThan.swift */; };
BD1C65E68B4123B57576BF04FBB3FF61 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E6F567A0F84D52EF356BEDCB9F4C9AE7 /* Foundation.framework */; };
BD2713FEDA3489E7E33F8AB77900E0B5 /* Pods-Brundlefly_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1599E7810EE4740E628E9D13110A1C48 /* Pods-Brundlefly_Example-dummy.m */; };
C150157922BAEB1F93635508FB59E618 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E6F567A0F84D52EF356BEDCB9F4C9AE7 /* Foundation.framework */; };
C322EEEEAE1C91BAF10A82B6FB89BCE5 /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18C4030C33005C7A4BF69E989BB2F4A8 /* Closures.swift */; };
C63AB521EA514A811A167E507C0CF9AD /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6AA52B39A5AD52E8313E98B6A7A797F /* Expression.swift */; };
C9AC658F3FCB67B50E96313C2687B33D /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F0990E92CE6C898CE1BE2E493E8988F /* MatcherProtocols.swift */; };
CAAED5FB81DB035A9EC080917C783FA6 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0411D20370700F56223758955E1BDD0B /* AdapterProtocols.swift */; };
CC2BD0A04199B280AD93F459968CAFC2 /* FBSnapshotTestCase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C21D19ECC22ADCD2115C888EE056B6DA /* FBSnapshotTestCase-dummy.m */; };
CD9D31B6063C50689EAC2A0745C282DC /* ObjCExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFE47970A7AC09344E95FFCDD3B7C88C /* ObjCExpectation.swift */; };
CF9DB2096C715EA61E263021EE406DB1 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5166BFC1F06A657509C298DE92FCE38A /* QuartzCore.framework */; };
CFFC1EE26535977AB3FF294623A3DEEA /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = 21A65D138243B96696366DBB7E25DDE9 /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; };
D209C8E721013BA174ABB3A173CA45C4 /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAA0C5AB03A316855624ED846F641376 /* Configuration.swift */; };
D34B714D86F345A96915410A35825839 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E6F567A0F84D52EF356BEDCB9F4C9AE7 /* Foundation.framework */; };
D429691F39B4C30A8993360FB8A3E334 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFA51DB996CB38419B5CA02CB769A8F6 /* AllPass.swift */; };
D4DD508CF9844D4A1F92205CCB151D4E /* Quick-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F0B474439E705D4331B6BF95FACF8CC /* Quick-dummy.m */; };
D5A42B9D5244FC09F928407F450E6017 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9459B2EB8DE67CA919E7280851EE428C /* World.swift */; };
D7B45D4600C6166C124C0A926EE65284 /* Functional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10AD076B851097DA10B51E31A8E7BE6C /* Functional.swift */; };
D7C8157F419F92C6A81450CF0203BE5F /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 899697610CD89ABF71B0C316A2B370ED /* XCTest.framework */; };
DAAC324891274180BCC978A6D6729A82 /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AAB4E9C6675956E8581E915D8A5989E /* Callsite.swift */; };
DEE170DD3064F7343884A4016546B762 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E57E9A961DA8501663351FDF21E0001 /* DSL+Wait.swift */; };
E19167797EF881C97BBFB5607406EC56 /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 6180E032770F8A54A2E991FB0FAB3227 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
E2FBD93D72DF01427486D1A6853FC689 /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 491EBCAB8EBE519908483A437F0A5302 /* Expectation.swift */; };
E36C5201AE7F1CBB25F9D2E7CBFC3C20 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB318CBB3A1FAC64DA8D4F403127956C /* Match.swift */; };
E6E7B15FAD6C56681511813DB2666478 /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 469EEA828792C10E022D4BDE6B3CF9F5 /* AssertionRecorder.swift */; };
EA9736081C55F0790011C4DE /* BtfyPropertyParserKeyframeOpacity.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA9736071C55F0790011C4DE /* BtfyPropertyParserKeyframeOpacity.swift */; };
EAC18FDD1C0A08AA00433490 /* BtfyAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FD71C0A08AA00433490 /* BtfyAnimationView.swift */; };
EAC18FDE1C0A08AA00433490 /* BtfyEllipseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FD81C0A08AA00433490 /* BtfyEllipseView.swift */; };
EAC18FDF1C0A08AA00433490 /* BtfyError.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FD91C0A08AA00433490 /* BtfyError.swift */; };
EAC18FE01C0A08AA00433490 /* BtfyLoader.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FDA1C0A08AA00433490 /* BtfyLoader.swift */; };
EAC18FE11C0A08AA00433490 /* BtfyRectangleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FDB1C0A08AA00433490 /* BtfyRectangleView.swift */; };
EAC18FE21C0A08AA00433490 /* BtfyJson.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FDC1C0A08AA00433490 /* BtfyJson.swift */; };
EAC18FEA1C0A08D100433490 /* Double+Math.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FE51C0A08D100433490 /* Double+Math.swift */; };
EAC18FEB1C0A08D100433490 /* NSBundle+pathForResource.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FE61C0A08D100433490 /* NSBundle+pathForResource.swift */; };
EAC18FEC1C0A08D100433490 /* String+Localization.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FE71C0A08D100433490 /* String+Localization.swift */; };
EAC18FED1C0A08D100433490 /* UIColor+BtfyColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FE81C0A08D100433490 /* UIColor+BtfyColor.swift */; };
EAC18FEE1C0A08D100433490 /* UIView+AssociatedObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FE91C0A08D100433490 /* UIView+AssociatedObject.swift */; };
EAC18FFD1C0A08DB00433490 /* BtfyAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FEF1C0A08DB00433490 /* BtfyAnimation.swift */; };
EAC18FFE1C0A08DB00433490 /* BtfyAnimationGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FF01C0A08DB00433490 /* BtfyAnimationGroup.swift */; };
EAC18FFF1C0A08DB00433490 /* BtfyColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FF11C0A08DB00433490 /* BtfyColor.swift */; };
EAC190001C0A08DB00433490 /* BtfyInitialValues.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FF21C0A08DB00433490 /* BtfyInitialValues.swift */; };
EAC190011C0A08DB00433490 /* BtfyKeyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FF31C0A08DB00433490 /* BtfyKeyframe.swift */; };
EAC190021C0A08DB00433490 /* BtfyPoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FF41C0A08DB00433490 /* BtfyPoint.swift */; };
EAC190031C0A08DB00433490 /* BtfyPropertyParserKeyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FF51C0A08DB00433490 /* BtfyPropertyParserKeyframe.swift */; };
EAC190051C0A08DB00433490 /* BtfyPropertyParserKeyframePosition.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FF71C0A08DB00433490 /* BtfyPropertyParserKeyframePosition.swift */; };
EAC190061C0A08DB00433490 /* BtfyPropertyParserKeyframeRotation.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FF81C0A08DB00433490 /* BtfyPropertyParserKeyframeRotation.swift */; };
EAC190071C0A08DB00433490 /* BtfyPropertyParserKeyframeScale.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FF91C0A08DB00433490 /* BtfyPropertyParserKeyframeScale.swift */; };
EAC190081C0A08DB00433490 /* BtfyShape.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FFA1C0A08DB00433490 /* BtfyShape.swift */; };
EAC190091C0A08DB00433490 /* BtfySize.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FFB1C0A08DB00433490 /* BtfySize.swift */; };
EAC1900A1C0A08DB00433490 /* BtfyStage.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAC18FFC1C0A08DB00433490 /* BtfyStage.swift */; };
EACD39021C6FA52600DF1B8F /* BtfyVideoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EACD39011C6FA52600DF1B8F /* BtfyVideoView.swift */; };
EDD91D0CC316AC322E1607D3749F1C0A /* UIImage+Snapshot.m in Sources */ = {isa = PBXBuildFile; fileRef = E1957A6F490F75CF4F5E65AE6F95B60D /* UIImage+Snapshot.m */; };
EE75BFF7CEB96127A821936D107A0183 /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F0CE398ED47A90A49FD1D48ED4788C3 /* QCKDSL.m */; };
F10FD3129985704FA1610F84FB98EDF5 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19CF27DB4E86CF523DBB7718DD1F8A5D /* Stringers.swift */; };
F1D4A8A1FC68EFA7F45945908D70A352 /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37D7137A6D7EFBB6E057D6D4955B5B90 /* BeNil.swift */; };
F710E339DAE1CBFC9F4A080DA353FD3E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E6F567A0F84D52EF356BEDCB9F4C9AE7 /* Foundation.framework */; };
F8244422337BCD152CEB1F1B35CF6FF1 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43446494C68555558AD6AE7D61940B4A /* Filter.swift */; };
FB1347627E64CA7E98C19DC985E13D95 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 200A0C67CCC284B4A2453C8A749B2FCE /* Equal.swift */; };
FE7E8E5A32958A217D235BA8321FD47D /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 442017D54DF74E7636CDB5ADE4404ABF /* QuickConfiguration.m */; };
FFC311AC1E19A23E0EB7B1B3A7A5A744 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 929FDFE7C05D7BBF5060D429BF214EF4 /* RaisesException.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
0AB9301E3E0C32BCACD5A5EEC9192490 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 1D789148C764E20A76D10A66FF87B354;
remoteInfo = "Brundlefly-Brundlefly";
};
0ECE15B32FA2B60C0517A6C1A5B32423 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B7B7BD15A8CB5F16F8AA27B9095171A4;
remoteInfo = Quick;
};
137A8FCBA265AB11518087803F890BCA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B7B7BD15A8CB5F16F8AA27B9095171A4;
remoteInfo = Quick;
};
18764C4AA621C918AA309C2959B60310 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0E359681996C9E927392436D5FB85B25;
remoteInfo = "Nimble-Snapshots";
};
4A3385FC300A8C8F962A3D34143FF892 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A5C935B614DD08342117AD0B06959CB9;
remoteInfo = FBSnapshotTestCase;
};
7D94237FD7CB633EEFD198DF5EE5C155 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = C5DB5104FED3C10F78978AFC810982B9;
remoteInfo = Nimble;
};
8E0ECFB069FC7E5A8F00C81EE29D070B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A5C935B614DD08342117AD0B06959CB9;
remoteInfo = FBSnapshotTestCase;
};
98E097B620D226EFFBFC148345768B25 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 33D7F7668C0B4B1821247F94B1CD7EDD;
remoteInfo = Brundlefly;
};
A596DD82535447F0293D0C29F0C2B7F8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = C5DB5104FED3C10F78978AFC810982B9;
remoteInfo = Nimble;
};
C18643854A5D6CE468AFB2F8E15C97FD /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 33D7F7668C0B4B1821247F94B1CD7EDD;
remoteInfo = Brundlefly;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
011394233A7239143D706983E89EE6E5 /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Nimble/Matchers/BeIdenticalTo.swift; sourceTree = "<group>"; };
024A42DAEBD84E9C5B75CD1E255AA42C /* Pods-Brundlefly_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Brundlefly_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
0411D20370700F56223758955E1BDD0B /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Nimble/Adapters/AdapterProtocols.swift; sourceTree = "<group>"; };
049E62DBC02E79C4174E7BE9678BA37E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
07F6E742BDF597C3C5312D9987B0374C /* Brundlefly.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Brundlefly.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
098DBA87E4B50BA2FC34716E42AB1FD2 /* Brundlefly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Brundlefly.xcconfig; sourceTree = "<group>"; };
0D7D938089484EB492A8626AA8E5C528 /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Quick/Hooks/SuiteHooks.swift; sourceTree = "<group>"; };
0D815E4D0509F64977CC911FFE53B202 /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Nimble/objc/DSL.h; sourceTree = "<group>"; };
10AD076B851097DA10B51E31A8E7BE6C /* Functional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Functional.swift; path = Nimble/Utils/Functional.swift; sourceTree = "<group>"; };
10B87C10CF9687BF019CF83CB256DBBD /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Nimble/Matchers/BeAKindOf.swift; sourceTree = "<group>"; };
11CEBA0F9875766C6578D56EC1878D57 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Nimble/DSL.swift; sourceTree = "<group>"; };
130A59DDB32BBDCFB4ABB11FA368C7F8 /* AsyncMatcherWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncMatcherWrapper.swift; path = Nimble/Wrappers/AsyncMatcherWrapper.swift; sourceTree = "<group>"; };
140409434E07DEBDEFD742F4520D07ED /* Nimble-Snapshots.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Nimble-Snapshots.modulemap"; sourceTree = "<group>"; };
1438417AFCBD3D478075A35156E748D9 /* PrettySyntax.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = PrettySyntax.swift; sourceTree = "<group>"; };
1599E7810EE4740E628E9D13110A1C48 /* Pods-Brundlefly_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Brundlefly_Example-dummy.m"; sourceTree = "<group>"; };
160CBE7729A142944B5FB1512025954D /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Nimble/Matchers/BeCloseTo.swift; sourceTree = "<group>"; };
18C4030C33005C7A4BF69E989BB2F4A8 /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Quick/Hooks/Closures.swift; sourceTree = "<group>"; };
18CDFD38206302BDD75F4CF1998D5DD4 /* HaveValidSnapshot.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = HaveValidSnapshot.swift; sourceTree = "<group>"; };
18EF9DB399FDB3F074C6A00FD191756C /* Brundlefly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Brundlefly-dummy.m"; sourceTree = "<group>"; };
19CF27DB4E86CF523DBB7718DD1F8A5D /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Nimble/Utils/Stringers.swift; sourceTree = "<group>"; };
1BB4C124C3A102C4078569BFA308F1ED /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
1E7CF06490B0BCA9EAEDB096AF989E82 /* FBSnapshotTestCase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSnapshotTestCase.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1FD2FEBA13C21B99B45C2553743F1295 /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Nimble/objc/NMBExceptionCapture.m; sourceTree = "<group>"; };
200A0C67CCC284B4A2453C8A749B2FCE /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Nimble/Matchers/Equal.swift; sourceTree = "<group>"; };
21A65D138243B96696366DBB7E25DDE9 /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Quick/Quick.h; sourceTree = "<group>"; };
22C246E60730C007089BE08D4486869D /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Quick/Hooks/ExampleHooks.swift; sourceTree = "<group>"; };
267971283FD80CBC2E561544A5DE1D89 /* Pods-Brundlefly_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Brundlefly_Example-frameworks.sh"; sourceTree = "<group>"; };
26BD571A5BAA6FE5093A498526F8027C /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Nimble/Matchers/BeGreaterThan.swift; sourceTree = "<group>"; };
29796A65251B88A8DADB8498350E0A1C /* ObjCMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjCMatcher.swift; path = Nimble/Wrappers/ObjCMatcher.swift; sourceTree = "<group>"; };
2B0533C17E3422F2AAA43B3A01765285 /* FBSnapshotTestCase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSnapshotTestCase-prefix.pch"; sourceTree = "<group>"; };
2CB47B4E75EF9326D8F8E2B1BB5F375D /* FBSnapshotTestCasePlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestCasePlatform.m; path = FBSnapshotTestCase/FBSnapshotTestCasePlatform.m; sourceTree = "<group>"; };
2E77F579A3DFCEB86931BA459893513A /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Nimble/Matchers/EndWith.swift; sourceTree = "<group>"; };
2E873F992797EF8E974EAF641CB4FD72 /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Quick/ExampleGroup.swift; sourceTree = "<group>"; };
2EA76FD1DAFA576D4CBFEF1BA240A86E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
31AE2F7E9D45BBDB82F2D568797742A6 /* Pods-Brundlefly_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Brundlefly_Example.release.xcconfig"; sourceTree = "<group>"; };
32771F017408506D7418E4ABDD594BA9 /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = "<group>"; };
3583D7D5C6884B5811739712676819ED /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Nimble/objc/NMBExceptionCapture.h; sourceTree = "<group>"; };
37D7137A6D7EFBB6E057D6D4955B5B90 /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Nimble/Matchers/BeNil.swift; sourceTree = "<group>"; };
3EEC586AC5D39BAF3DB1952518D9C5AD /* Nimble-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-dummy.m"; sourceTree = "<group>"; };
43446494C68555558AD6AE7D61940B4A /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Quick/Filter.swift; sourceTree = "<group>"; };
442017D54DF74E7636CDB5ADE4404ABF /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Quick/Configuration/QuickConfiguration.m; sourceTree = "<group>"; };
469EEA828792C10E022D4BDE6B3CF9F5 /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Nimble/Adapters/AssertionRecorder.swift; sourceTree = "<group>"; };
46ABED775F0153CC13A00E44816D267E /* Pods-Brundlefly_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Brundlefly_Tests-dummy.m"; sourceTree = "<group>"; };
491EBCAB8EBE519908483A437F0A5302 /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Nimble/Expectation.swift; sourceTree = "<group>"; };
49F44B4D52996EFE19CF1A85B6ABC4D3 /* Pods_Brundlefly_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Brundlefly_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
4A5998B34EE4429FE9C07DFC94F0ABB4 /* FBSnapshotTestController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestController.m; path = FBSnapshotTestCase/FBSnapshotTestController.m; sourceTree = "<group>"; };
4D8E0058E0BC5C58C22B80965A3BBD41 /* Pods-Brundlefly_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Brundlefly_Tests.debug.xcconfig"; sourceTree = "<group>"; };
4DD3149E7587B1EF2A379EC646B17083 /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Nimble/objc/DSL.m; sourceTree = "<group>"; };
4E57E9A961DA8501663351FDF21E0001 /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Wait.swift"; path = "Nimble/DSL+Wait.swift"; sourceTree = "<group>"; };
4E8E5264D4E4F74FEBD8FEF584E260EB /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = "<group>"; };
5166BFC1F06A657509C298DE92FCE38A /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; };
52FDC753AAD065F307AC1D231B0E1ACF /* Nimble.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };
53A7B0144015F1EBBFCD745EDB42D022 /* Pods-Brundlefly_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Brundlefly_Example.modulemap"; sourceTree = "<group>"; };
56F43F352F225085515E95FD5E84CC90 /* FBSnapshotTestCase.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = FBSnapshotTestCase.modulemap; sourceTree = "<group>"; };
59E8FA7292292532AC62D928269FD37A /* UIImage+Diff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Diff.h"; path = "FBSnapshotTestCase/Categories/UIImage+Diff.h"; sourceTree = "<group>"; };
5AC13ABDCDD4DE19AAD5085D05125936 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Quick/ExampleMetadata.swift; sourceTree = "<group>"; };
5AD55F3974939097556240403DEE2DFF /* Nimble.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };
6180E032770F8A54A2E991FB0FAB3227 /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Quick/Configuration/QuickConfiguration.h; sourceTree = "<group>"; };
6249D63C7453302DA79EBB9E0440A1F9 /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Nimble/Matchers/BeginWith.swift; sourceTree = "<group>"; };
6449D560EFCD10D9E3D121CD2D6ADCEA /* Pods-Brundlefly_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Brundlefly_Tests.modulemap"; sourceTree = "<group>"; };
65A48A077F35356D95916F8A306C8917 /* Nimble-Snapshots.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Nimble-Snapshots.xcconfig"; sourceTree = "<group>"; };
6AAB4E9C6675956E8581E915D8A5989E /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Quick/Callsite.swift; sourceTree = "<group>"; };
6DEB112A26C5C33C8B8F619999E196CF /* World.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = World.h; path = Quick/World.h; sourceTree = "<group>"; };
6F0990E92CE6C898CE1BE2E493E8988F /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Nimble/Matchers/MatcherProtocols.swift; sourceTree = "<group>"; };
6F0B474439E705D4331B6BF95FACF8CC /* Quick-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Quick-dummy.m"; sourceTree = "<group>"; };
6F0CE398ED47A90A49FD1D48ED4788C3 /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Quick/DSL/QCKDSL.m; sourceTree = "<group>"; };
6F311896AF71585BB26A9ED3756C42D9 /* Pods-Brundlefly_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Brundlefly_Tests-frameworks.sh"; sourceTree = "<group>"; };
70D707086D44E773A37529EEF12443BD /* Nimble-Snapshots-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-Snapshots-dummy.m"; sourceTree = "<group>"; };
7122AB42716D04142B5AF736987EC87E /* Pods-Brundlefly_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Brundlefly_Tests-umbrella.h"; sourceTree = "<group>"; };
72CA7214D823F6189C2E52752EADCA8F /* Pods-Brundlefly_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Brundlefly_Example-umbrella.h"; sourceTree = "<group>"; };
737769BE3FE56886EBB9775253B14011 /* Quick.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.xcconfig; sourceTree = "<group>"; };
75252F8A2B56CEC3E78D17CB951FD4E6 /* Pods-Brundlefly_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Brundlefly_Tests.release.xcconfig"; sourceTree = "<group>"; };
794FB988C85366C2612449AC95D33763 /* FBSnapshotTestCase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSnapshotTestCase.xcconfig; sourceTree = "<group>"; };
7AD646C0CD942CE14A4481391B9B8D47 /* Pods-Brundlefly_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Brundlefly_Example-acknowledgements.plist"; sourceTree = "<group>"; };
7C0655CB1E249D01539E54ECB54D28FB /* Quick.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Quick.modulemap; sourceTree = "<group>"; };
7CE6F28E609BD2D14BFE5E6667DAB247 /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Nimble/Adapters/AssertionDispatcher.swift; sourceTree = "<group>"; };
7E25FBEBD12C6C9E625F444CD4907C3E /* UIImage+Snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Snapshot.h"; path = "FBSnapshotTestCase/Categories/UIImage+Snapshot.h"; sourceTree = "<group>"; };
7E287F4D5175B6CA03593129884C631D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
824E7E4508E1A8CC3DDFF89F639AA1A3 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
899697610CD89ABF71B0C316A2B370ED /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
89BE051488D88C8017D80180D70DBBAB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
8C36DB6F05615EC71278526272A72BAD /* Quick.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8F4953F6E7D2BA1C72B639CC7D9A5EB9 /* World+DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "World+DSL.h"; path = "Quick/DSL/World+DSL.h"; sourceTree = "<group>"; };
8F6D1F0551E34162226B4E6DD01C82ED /* Brundlefly.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Brundlefly.framework; sourceTree = BUILT_PRODUCTS_DIR; };
909841B2FC5B1ECDF3C2046F4DA79AFD /* Pods-Brundlefly_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Brundlefly_Example-resources.sh"; sourceTree = "<group>"; };
922B62E1B104DD877166B996B4606890 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
92872D1AE0241E38BCCA7EC3486C0A6D /* Brundlefly.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Brundlefly.modulemap; sourceTree = "<group>"; };
929FDFE7C05D7BBF5060D429BF214EF4 /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Nimble/Matchers/RaisesException.swift; sourceTree = "<group>"; };
9459B2EB8DE67CA919E7280851EE428C /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Quick/World.swift; sourceTree = "<group>"; };
9500663E16F1B37B02D2F844A81685E0 /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Nimble/Matchers/BeLessThan.swift; sourceTree = "<group>"; };
957E175878E253A0E583B3301770EB6C /* Quick.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; };
97A060E6CAB9B68EF0DA099DB0F03672 /* Pods-Brundlefly_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Brundlefly_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
9823197EA5904A9150FB0AD8B09841E6 /* FBSnapshotTestCase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSnapshotTestCase.framework; sourceTree = BUILT_PRODUCTS_DIR; };
983197F6CC870B4E78D23FCBEEAE9845 /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Nimble/Matchers/Contain.swift; sourceTree = "<group>"; };
9C61FB5D5A77F0F466C68BEF9983217F /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Quick/Example.swift; sourceTree = "<group>"; };
9DF5FFAEFCCB6ED3B214EB7D8A09278F /* FBSnapshotTestController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestController.h; path = FBSnapshotTestCase/FBSnapshotTestController.h; sourceTree = "<group>"; };
9EEC4AE3D10F56B3279410A932A7BA59 /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Quick/QuickSpec.h; sourceTree = "<group>"; };
A14E97EFA39EE5B8E0791218121044BD /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Nimble/FailureMessage.swift; sourceTree = "<group>"; };
A6949CF9498228428822E26BE524C02E /* Brundlefly-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Brundlefly-umbrella.h"; sourceTree = "<group>"; };
AA329B2CFA87E526DA6452FDD6BB26BC /* Poll.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Poll.swift; path = Nimble/Utils/Poll.swift; sourceTree = "<group>"; };
ACB4C9E009BF21741AB0A3E52D7E8655 /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = FBSnapshotTestCase/SwiftSupport.swift; sourceTree = "<group>"; };
AFE47970A7AC09344E95FFCDD3B7C88C /* ObjCExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjCExpectation.swift; path = Nimble/ObjCExpectation.swift; sourceTree = "<group>"; };
B1046D00F52CD8F37953B5E886206D45 /* FBSnapshotTestCasePlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestCasePlatform.h; path = FBSnapshotTestCase/FBSnapshotTestCasePlatform.h; sourceTree = "<group>"; };
B18139039A0FE80ADC6A3985117366A4 /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = "<group>"; };
B1B4A758C04274FC6787056B3EA02B27 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Quick/DSL/DSL.swift; sourceTree = "<group>"; };
B241289B6D6AC6C195843D05348FA75A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
B2579450CF15E307A3DE58AA966D69F3 /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Quick/DSL/QCKDSL.h; sourceTree = "<group>"; };
BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
BA9F459E31DA81F5231DDC1B69332F8E /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Nimble/Matchers/ThrowError.swift; sourceTree = "<group>"; };
BDF4295D295CD1D2EF74D905D83835A4 /* MatcherFunc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherFunc.swift; path = Nimble/Wrappers/MatcherFunc.swift; sourceTree = "<group>"; };
BF37CC142D8F7EB104AD8CA82EE42990 /* Quick-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-prefix.pch"; sourceTree = "<group>"; };
C063440022767F920DE6EAC0664E0524 /* Nimble-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-prefix.pch"; sourceTree = "<group>"; };
C1C47926C9D29EC2518DD71AA52EC385 /* UIImage+Compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Compare.h"; path = "FBSnapshotTestCase/Categories/UIImage+Compare.h"; sourceTree = "<group>"; };
C21D19ECC22ADCD2115C888EE056B6DA /* FBSnapshotTestCase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSnapshotTestCase-dummy.m"; sourceTree = "<group>"; };
C234BB580B6219647D3BB20A7B9A69F2 /* FBSnapshotTestCase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestCase.m; path = FBSnapshotTestCase/FBSnapshotTestCase.m; sourceTree = "<group>"; };
C97C893492C0E649050C41D9184A0E1C /* Pods-Brundlefly_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Brundlefly_Example.debug.xcconfig"; sourceTree = "<group>"; };
C9BDADBB262C5FFFF97834DD116EAE46 /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Nimble/Utils/SourceLocation.swift; sourceTree = "<group>"; };
CA5B1C3374EB4F93C57940CE8580D9F6 /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = "<group>"; };
CAA0C5AB03A316855624ED846F641376 /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Quick/Configuration/Configuration.swift; sourceTree = "<group>"; };
CB318CBB3A1FAC64DA8D4F403127956C /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Nimble/Matchers/Match.swift; sourceTree = "<group>"; };
CCE77204D4845498864080BE9D314C76 /* NimbleSnapshotsConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NimbleSnapshotsConfiguration.swift; sourceTree = "<group>"; };
CD245A7F3BCFAB8305256A5F0B0E80F9 /* Pods_Brundlefly_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Brundlefly_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
CD2764775E2D6E934DD52F0446CA03DF /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Nimble/Matchers/BeEmpty.swift; sourceTree = "<group>"; };
CEDC7A7B76C6E4AA91841ED1C78FC177 /* Quick-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-umbrella.h"; sourceTree = "<group>"; };
CFA51DB996CB38419B5CA02CB769A8F6 /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Nimble/Matchers/AllPass.swift; sourceTree = "<group>"; };
D19DE9D3F4E1FFCA7FEF47A058899AB3 /* Pods-Brundlefly_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Brundlefly_Tests-resources.sh"; sourceTree = "<group>"; };
D678E63C357CFBA1B94FB88A80FD2E1D /* NSString+QCKSelectorName.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+QCKSelectorName.m"; path = "Quick/NSString+QCKSelectorName.m"; sourceTree = "<group>"; };
D8DA76F2B1FA21236FF414AC26E776AA /* Nimble_Snapshots.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Nimble_Snapshots.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DA518914FF93256FE632E0DE280C318A /* Nimble.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Nimble.xcconfig; sourceTree = "<group>"; };
DB9EBF1B4EC2E0CC2E1316993EC76E7B /* Pods-Brundlefly_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Brundlefly_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
DCDDE1B04A94712F4D2883C80EE62D96 /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Quick/DSL/World+DSL.swift"; sourceTree = "<group>"; };
DE002C91FBB91E22ACE186DB505955BE /* FBSnapshotTestCase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestCase.h; path = FBSnapshotTestCase/FBSnapshotTestCase.h; sourceTree = "<group>"; };
E13647534D1220F6C05382BE763A06B6 /* Nimble-Snapshots-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-Snapshots-umbrella.h"; sourceTree = "<group>"; };
E1957A6F490F75CF4F5E65AE6F95B60D /* UIImage+Snapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Snapshot.m"; path = "FBSnapshotTestCase/Categories/UIImage+Snapshot.m"; sourceTree = "<group>"; };
E6F567A0F84D52EF356BEDCB9F4C9AE7 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
E8AA8837A12B9D3429E4E09410BB4EEC /* UIImage+Diff.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Diff.m"; path = "FBSnapshotTestCase/Categories/UIImage+Diff.m"; sourceTree = "<group>"; };
E90473C7447B312C9C0AD27EE990A0CB /* Nimble-Snapshots-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-Snapshots-prefix.pch"; sourceTree = "<group>"; };
EA9736071C55F0790011C4DE /* BtfyPropertyParserKeyframeOpacity.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfyPropertyParserKeyframeOpacity.swift; path = Model/BtfyPropertyParserKeyframeOpacity.swift; sourceTree = "<group>"; };
EAC18FD71C0A08AA00433490 /* BtfyAnimationView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BtfyAnimationView.swift; sourceTree = "<group>"; };
EAC18FD81C0A08AA00433490 /* BtfyEllipseView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BtfyEllipseView.swift; sourceTree = "<group>"; };
EAC18FD91C0A08AA00433490 /* BtfyError.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BtfyError.swift; sourceTree = "<group>"; };
EAC18FDA1C0A08AA00433490 /* BtfyLoader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BtfyLoader.swift; sourceTree = "<group>"; };
EAC18FDB1C0A08AA00433490 /* BtfyRectangleView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BtfyRectangleView.swift; sourceTree = "<group>"; };
EAC18FDC1C0A08AA00433490 /* BtfyJson.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BtfyJson.swift; sourceTree = "<group>"; };
EAC18FE51C0A08D100433490 /* Double+Math.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = "Double+Math.swift"; path = "Extensions/Double+Math.swift"; sourceTree = "<group>"; };
EAC18FE61C0A08D100433490 /* NSBundle+pathForResource.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = "NSBundle+pathForResource.swift"; path = "Extensions/NSBundle+pathForResource.swift"; sourceTree = "<group>"; };
EAC18FE71C0A08D100433490 /* String+Localization.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = "String+Localization.swift"; path = "Extensions/String+Localization.swift"; sourceTree = "<group>"; };
EAC18FE81C0A08D100433490 /* UIColor+BtfyColor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = "UIColor+BtfyColor.swift"; path = "Extensions/UIColor+BtfyColor.swift"; sourceTree = "<group>"; };
EAC18FE91C0A08D100433490 /* UIView+AssociatedObject.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = "UIView+AssociatedObject.swift"; path = "Extensions/UIView+AssociatedObject.swift"; sourceTree = "<group>"; };
EAC18FEF1C0A08DB00433490 /* BtfyAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfyAnimation.swift; path = Model/BtfyAnimation.swift; sourceTree = "<group>"; };
EAC18FF01C0A08DB00433490 /* BtfyAnimationGroup.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfyAnimationGroup.swift; path = Model/BtfyAnimationGroup.swift; sourceTree = "<group>"; };
EAC18FF11C0A08DB00433490 /* BtfyColor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfyColor.swift; path = Model/BtfyColor.swift; sourceTree = "<group>"; };
EAC18FF21C0A08DB00433490 /* BtfyInitialValues.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfyInitialValues.swift; path = Model/BtfyInitialValues.swift; sourceTree = "<group>"; };
EAC18FF31C0A08DB00433490 /* BtfyKeyframe.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfyKeyframe.swift; path = Model/BtfyKeyframe.swift; sourceTree = "<group>"; };
EAC18FF41C0A08DB00433490 /* BtfyPoint.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfyPoint.swift; path = Model/BtfyPoint.swift; sourceTree = "<group>"; };
EAC18FF51C0A08DB00433490 /* BtfyPropertyParserKeyframe.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfyPropertyParserKeyframe.swift; path = Model/BtfyPropertyParserKeyframe.swift; sourceTree = "<group>"; };
EAC18FF71C0A08DB00433490 /* BtfyPropertyParserKeyframePosition.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfyPropertyParserKeyframePosition.swift; path = Model/BtfyPropertyParserKeyframePosition.swift; sourceTree = "<group>"; };
EAC18FF81C0A08DB00433490 /* BtfyPropertyParserKeyframeRotation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfyPropertyParserKeyframeRotation.swift; path = Model/BtfyPropertyParserKeyframeRotation.swift; sourceTree = "<group>"; };
EAC18FF91C0A08DB00433490 /* BtfyPropertyParserKeyframeScale.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfyPropertyParserKeyframeScale.swift; path = Model/BtfyPropertyParserKeyframeScale.swift; sourceTree = "<group>"; };
EAC18FFA1C0A08DB00433490 /* BtfyShape.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfyShape.swift; path = Model/BtfyShape.swift; sourceTree = "<group>"; };
EAC18FFB1C0A08DB00433490 /* BtfySize.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfySize.swift; path = Model/BtfySize.swift; sourceTree = "<group>"; };
EAC18FFC1C0A08DB00433490 /* BtfyStage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BtfyStage.swift; path = Model/BtfyStage.swift; sourceTree = "<group>"; };
EACD39011C6FA52600DF1B8F /* BtfyVideoView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BtfyVideoView.swift; sourceTree = "<group>"; };
EAD96117C39A7B5100135D5FCBDEBAFE /* UIImage+Compare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Compare.m"; path = "FBSnapshotTestCase/Categories/UIImage+Compare.m"; sourceTree = "<group>"; };
F1C4011603B0CD2B441FB644CBE1EDF0 /* Brundlefly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Brundlefly-prefix.pch"; sourceTree = "<group>"; };
F4A7503AAF3BA8144C1103305BE6E6A9 /* Nimble-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-umbrella.h"; sourceTree = "<group>"; };
F6AA52B39A5AD52E8313E98B6A7A797F /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Nimble/Expression.swift; sourceTree = "<group>"; };
F6CD514C93DDFC8131822455310374C7 /* Nimble.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Nimble.modulemap; sourceTree = "<group>"; };
F8C7B43832CED29D843ABAD9BFBF89CF /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Nimble/Nimble.h; sourceTree = "<group>"; };
F8D4AFE9465C639DF4E67D1EF16C7D55 /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Nimble/Matchers/HaveCount.swift; sourceTree = "<group>"; };
FD51F90687F1FD2CD6E2CDF0E3F62C27 /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Nimble/Matchers/BeLogical.swift; sourceTree = "<group>"; };
FDA1C9A64A5B45DEFCFFD313C29302D3 /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Quick/QuickSpec.m; sourceTree = "<group>"; };
FEF7AC68E5B6497E419278307A1CA225 /* NSString+QCKSelectorName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+QCKSelectorName.h"; path = "Quick/NSString+QCKSelectorName.h"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
2132851FBCDAF75EC050896B1C2D986A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
32CAE86B1278A2F1963ECEA1ACF3DF99 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F710E339DAE1CBFC9F4A080DA353FD3E /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
53799BFC446EFA757FD1305D22A8B6A7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
75333FD045E0926C88212C53E25CD406 /* FBSnapshotTestCase.framework in Frameworks */,
3E8F3721C8B19D1CE6986D886AE07AA1 /* Foundation.framework in Frameworks */,
7303ADB5CB9BF3F84BA168E7DC9A9E75 /* Nimble.framework in Frameworks */,
AC035703A5A6D4B4A99CF3A3C25A9EC4 /* Quick.framework in Frameworks */,
D7C8157F419F92C6A81450CF0203BE5F /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6996EA0151206408BC8829AF25BC61CC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
BD1C65E68B4123B57576BF04FBB3FF61 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7B1267DEADEF451F0C9DAE60F4D9D7E8 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
ABCAC615DA968F61B55636A337407A9F /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7FBD7B1537B634BB7C94BB4D4384BD63 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C150157922BAEB1F93635508FB59E618 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
94745D5F22C5C727D9DFFC3AE83E6165 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
D34B714D86F345A96915410A35825839 /* Foundation.framework in Frameworks */,
58DE63B2FF3954F1467A5B41D8FF3932 /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
96317938B7BBB0DE5B6C6F27B4A6333F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
8D549E01DA1D5104335CCEABFF870005 /* Foundation.framework in Frameworks */,
CF9DB2096C715EA61E263021EE406DB1 /* QuartzCore.framework in Frameworks */,
28F2071FFF5C5B0E9DEB6C3FE43A30CC /* UIKit.framework in Frameworks */,
AD4D905241DED4AEAD67447088ACB23D /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
0A0D309BA8B346959EBCF13A1E209658 /* Quick */ = {
isa = PBXGroup;
children = (
6AAB4E9C6675956E8581E915D8A5989E /* Callsite.swift */,
18C4030C33005C7A4BF69E989BB2F4A8 /* Closures.swift */,
CAA0C5AB03A316855624ED846F641376 /* Configuration.swift */,
B1B4A758C04274FC6787056B3EA02B27 /* DSL.swift */,
9C61FB5D5A77F0F466C68BEF9983217F /* Example.swift */,
2E873F992797EF8E974EAF641CB4FD72 /* ExampleGroup.swift */,
22C246E60730C007089BE08D4486869D /* ExampleHooks.swift */,
5AC13ABDCDD4DE19AAD5085D05125936 /* ExampleMetadata.swift */,
43446494C68555558AD6AE7D61940B4A /* Filter.swift */,
FEF7AC68E5B6497E419278307A1CA225 /* NSString+QCKSelectorName.h */,
D678E63C357CFBA1B94FB88A80FD2E1D /* NSString+QCKSelectorName.m */,
B2579450CF15E307A3DE58AA966D69F3 /* QCKDSL.h */,
6F0CE398ED47A90A49FD1D48ED4788C3 /* QCKDSL.m */,
21A65D138243B96696366DBB7E25DDE9 /* Quick.h */,
6180E032770F8A54A2E991FB0FAB3227 /* QuickConfiguration.h */,
442017D54DF74E7636CDB5ADE4404ABF /* QuickConfiguration.m */,
9EEC4AE3D10F56B3279410A932A7BA59 /* QuickSpec.h */,
FDA1C9A64A5B45DEFCFFD313C29302D3 /* QuickSpec.m */,
0D7D938089484EB492A8626AA8E5C528 /* SuiteHooks.swift */,
6DEB112A26C5C33C8B8F619999E196CF /* World.h */,
9459B2EB8DE67CA919E7280851EE428C /* World.swift */,
8F4953F6E7D2BA1C72B639CC7D9A5EB9 /* World+DSL.h */,
DCDDE1B04A94712F4D2883C80EE62D96 /* World+DSL.swift */,
4B657F6CE60E21E7877B6BBB31480B24 /* Support Files */,
);
path = Quick;
sourceTree = "<group>";
};
0A1869DF3DD98A1BE59ACF582C7FCBAD /* Support Files */ = {
isa = PBXGroup;
children = (
2EA76FD1DAFA576D4CBFEF1BA240A86E /* Info.plist */,
F6CD514C93DDFC8131822455310374C7 /* Nimble.modulemap */,
DA518914FF93256FE632E0DE280C318A /* Nimble.xcconfig */,
3EEC586AC5D39BAF3DB1952518D9C5AD /* Nimble-dummy.m */,
C063440022767F920DE6EAC0664E0524 /* Nimble-prefix.pch */,
F4A7503AAF3BA8144C1103305BE6E6A9 /* Nimble-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Nimble";
sourceTree = "<group>";
};
0D2F11B0E44D1A92C171A4CB93C699F0 /* Products */ = {
isa = PBXGroup;
children = (
07F6E742BDF597C3C5312D9987B0374C /* Brundlefly.bundle */,
8F6D1F0551E34162226B4E6DD01C82ED /* Brundlefly.framework */,
1E7CF06490B0BCA9EAEDB096AF989E82 /* FBSnapshotTestCase.framework */,
52FDC753AAD065F307AC1D231B0E1ACF /* Nimble.framework */,
D8DA76F2B1FA21236FF414AC26E776AA /* Nimble_Snapshots.framework */,
49F44B4D52996EFE19CF1A85B6ABC4D3 /* Pods_Brundlefly_Example.framework */,
CD245A7F3BCFAB8305256A5F0B0E80F9 /* Pods_Brundlefly_Tests.framework */,
957E175878E253A0E583B3301770EB6C /* Quick.framework */,
);
name = Products;
sourceTree = "<group>";
};
124E2553CD36A9BA189296BED1984E82 /* Support Files */ = {
isa = PBXGroup;
children = (
922B62E1B104DD877166B996B4606890 /* Info.plist */,
140409434E07DEBDEFD742F4520D07ED /* Nimble-Snapshots.modulemap */,
65A48A077F35356D95916F8A306C8917 /* Nimble-Snapshots.xcconfig */,
70D707086D44E773A37529EEF12443BD /* Nimble-Snapshots-dummy.m */,
E90473C7447B312C9C0AD27EE990A0CB /* Nimble-Snapshots-prefix.pch */,
E13647534D1220F6C05382BE763A06B6 /* Nimble-Snapshots-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Nimble-Snapshots";
sourceTree = "<group>";
};
1A4473FD522B00E05498E8E1D01FAC4D /* Brundlefly */ = {
isa = PBXGroup;
children = (
488116E098F79565EEEC39BC00DF0947 /* Pod */,
9885406A37AB4809931168D90923F945 /* Support Files */,
);
name = Brundlefly;
path = ../..;
sourceTree = "<group>";
};
1A6BACE6EE2AC54AE6A5317C14813F1B /* iOS */ = {
isa = PBXGroup;
children = (
E6F567A0F84D52EF356BEDCB9F4C9AE7 /* Foundation.framework */,
5166BFC1F06A657509C298DE92FCE38A /* QuartzCore.framework */,
824E7E4508E1A8CC3DDFF89F639AA1A3 /* UIKit.framework */,
899697610CD89ABF71B0C316A2B370ED /* XCTest.framework */,
);
name = iOS;
sourceTree = "<group>";
};
40442B70F254085EC7E7998F9DB23209 /* Pods-Brundlefly_Tests */ = {
isa = PBXGroup;
children = (
1BB4C124C3A102C4078569BFA308F1ED /* Info.plist */,
6449D560EFCD10D9E3D121CD2D6ADCEA /* Pods-Brundlefly_Tests.modulemap */,
DB9EBF1B4EC2E0CC2E1316993EC76E7B /* Pods-Brundlefly_Tests-acknowledgements.markdown */,
97A060E6CAB9B68EF0DA099DB0F03672 /* Pods-Brundlefly_Tests-acknowledgements.plist */,
46ABED775F0153CC13A00E44816D267E /* Pods-Brundlefly_Tests-dummy.m */,
6F311896AF71585BB26A9ED3756C42D9 /* Pods-Brundlefly_Tests-frameworks.sh */,
D19DE9D3F4E1FFCA7FEF47A058899AB3 /* Pods-Brundlefly_Tests-resources.sh */,
7122AB42716D04142B5AF736987EC87E /* Pods-Brundlefly_Tests-umbrella.h */,
4D8E0058E0BC5C58C22B80965A3BBD41 /* Pods-Brundlefly_Tests.debug.xcconfig */,
75252F8A2B56CEC3E78D17CB951FD4E6 /* Pods-Brundlefly_Tests.release.xcconfig */,
);
name = "Pods-Brundlefly_Tests";
path = "Target Support Files/Pods-Brundlefly_Tests";
sourceTree = "<group>";
};
488116E098F79565EEEC39BC00DF0947 /* Pod */ = {
isa = PBXGroup;
children = (
DB1245A0B768C97A4CD4B2161A701E77 /* Classes */,
);
path = Pod;
sourceTree = "<group>";
};
4B657F6CE60E21E7877B6BBB31480B24 /* Support Files */ = {
isa = PBXGroup;
children = (
049E62DBC02E79C4174E7BE9678BA37E /* Info.plist */,
7C0655CB1E249D01539E54ECB54D28FB /* Quick.modulemap */,
737769BE3FE56886EBB9775253B14011 /* Quick.xcconfig */,
6F0B474439E705D4331B6BF95FACF8CC /* Quick-dummy.m */,
BF37CC142D8F7EB104AD8CA82EE42990 /* Quick-prefix.pch */,
CEDC7A7B76C6E4AA91841ED1C78FC177 /* Quick-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Quick";
sourceTree = "<group>";
};
51E8CC5D9820B09D7EF57D54BC89FA5B /* Development Pods */ = {
isa = PBXGroup;
children = (
1A4473FD522B00E05498E8E1D01FAC4D /* Brundlefly */,
);
name = "Development Pods";
sourceTree = "<group>";
};
78F21F1BE7AC4A3F62D1326D33FC8B67 /* Pods */ = {
isa = PBXGroup;
children = (
D3F1D88ECF09A79CD47A6CEE55D67F67 /* FBSnapshotTestCase */,
E58136F5D76D0583AE7A13CC33035D43 /* Nimble */,
9A629322033CF469756F7419878A2278 /* Nimble-Snapshots */,
0A0D309BA8B346959EBCF13A1E209658 /* Quick */,
);
name = Pods;
sourceTree = "<group>";
};
7D31F17BEDAF397B1F838A093E3BE3CB /* SwiftSupport */ = {
isa = PBXGroup;
children = (
ACB4C9E009BF21741AB0A3E52D7E8655 /* SwiftSupport.swift */,
);
name = SwiftSupport;
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */,
51E8CC5D9820B09D7EF57D54BC89FA5B /* Development Pods */,
AF3FA1139EC69E065B1C1095C25B2636 /* Frameworks */,
78F21F1BE7AC4A3F62D1326D33FC8B67 /* Pods */,
0D2F11B0E44D1A92C171A4CB93C699F0 /* Products */,
D96993144374B4A9BC09F9195E8C3021 /* Targets Support Files */,
);
sourceTree = "<group>";
};
9885406A37AB4809931168D90923F945 /* Support Files */ = {
isa = PBXGroup;
children = (
92872D1AE0241E38BCCA7EC3486C0A6D /* Brundlefly.modulemap */,
098DBA87E4B50BA2FC34716E42AB1FD2 /* Brundlefly.xcconfig */,
18EF9DB399FDB3F074C6A00FD191756C /* Brundlefly-dummy.m */,
F1C4011603B0CD2B441FB644CBE1EDF0 /* Brundlefly-prefix.pch */,
A6949CF9498228428822E26BE524C02E /* Brundlefly-umbrella.h */,
B241289B6D6AC6C195843D05348FA75A /* Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/Brundlefly";
sourceTree = "<group>";
};
9A629322033CF469756F7419878A2278 /* Nimble-Snapshots */ = {
isa = PBXGroup;
children = (
18CDFD38206302BDD75F4CF1998D5DD4 /* HaveValidSnapshot.swift */,
CCE77204D4845498864080BE9D314C76 /* NimbleSnapshotsConfiguration.swift */,
1438417AFCBD3D478075A35156E748D9 /* PrettySyntax.swift */,
124E2553CD36A9BA189296BED1984E82 /* Support Files */,
);
path = "Nimble-Snapshots";
sourceTree = "<group>";
};
A09D2A8BBEAD840E516CCB08FC926B72 /* Core */ = {
isa = PBXGroup;
children = (
DE002C91FBB91E22ACE186DB505955BE /* FBSnapshotTestCase.h */,
C234BB580B6219647D3BB20A7B9A69F2 /* FBSnapshotTestCase.m */,
B1046D00F52CD8F37953B5E886206D45 /* FBSnapshotTestCasePlatform.h */,
2CB47B4E75EF9326D8F8E2B1BB5F375D /* FBSnapshotTestCasePlatform.m */,
9DF5FFAEFCCB6ED3B214EB7D8A09278F /* FBSnapshotTestController.h */,
4A5998B34EE4429FE9C07DFC94F0ABB4 /* FBSnapshotTestController.m */,
C1C47926C9D29EC2518DD71AA52EC385 /* UIImage+Compare.h */,
EAD96117C39A7B5100135D5FCBDEBAFE /* UIImage+Compare.m */,
59E8FA7292292532AC62D928269FD37A /* UIImage+Diff.h */,
E8AA8837A12B9D3429E4E09410BB4EEC /* UIImage+Diff.m */,
7E25FBEBD12C6C9E625F444CD4907C3E /* UIImage+Snapshot.h */,
E1957A6F490F75CF4F5E65AE6F95B60D /* UIImage+Snapshot.m */,
);
name = Core;
sourceTree = "<group>";
};
A5B1B1F6F1F8A64F70C944DC2BC2619C /* Pods-Brundlefly_Example */ = {
isa = PBXGroup;
children = (
7E287F4D5175B6CA03593129884C631D /* Info.plist */,
53A7B0144015F1EBBFCD745EDB42D022 /* Pods-Brundlefly_Example.modulemap */,
024A42DAEBD84E9C5B75CD1E255AA42C /* Pods-Brundlefly_Example-acknowledgements.markdown */,
7AD646C0CD942CE14A4481391B9B8D47 /* Pods-Brundlefly_Example-acknowledgements.plist */,
1599E7810EE4740E628E9D13110A1C48 /* Pods-Brundlefly_Example-dummy.m */,
267971283FD80CBC2E561544A5DE1D89 /* Pods-Brundlefly_Example-frameworks.sh */,
909841B2FC5B1ECDF3C2046F4DA79AFD /* Pods-Brundlefly_Example-resources.sh */,
72CA7214D823F6189C2E52752EADCA8F /* Pods-Brundlefly_Example-umbrella.h */,
C97C893492C0E649050C41D9184A0E1C /* Pods-Brundlefly_Example.debug.xcconfig */,
31AE2F7E9D45BBDB82F2D568797742A6 /* Pods-Brundlefly_Example.release.xcconfig */,
);
name = "Pods-Brundlefly_Example";
path = "Target Support Files/Pods-Brundlefly_Example";
sourceTree = "<group>";
};
AB2B871EF6087F05D1234D05690D22E7 /* Support Files */ = {
isa = PBXGroup;
children = (
56F43F352F225085515E95FD5E84CC90 /* FBSnapshotTestCase.modulemap */,
794FB988C85366C2612449AC95D33763 /* FBSnapshotTestCase.xcconfig */,
C21D19ECC22ADCD2115C888EE056B6DA /* FBSnapshotTestCase-dummy.m */,
2B0533C17E3422F2AAA43B3A01765285 /* FBSnapshotTestCase-prefix.pch */,
89BE051488D88C8017D80180D70DBBAB /* Info.plist */,
);
name = "Support Files";
path = "../Target Support Files/FBSnapshotTestCase";
sourceTree = "<group>";
};
AF3FA1139EC69E065B1C1095C25B2636 /* Frameworks */ = {
isa = PBXGroup;
children = (
9823197EA5904A9150FB0AD8B09841E6 /* FBSnapshotTestCase.framework */,
5AD55F3974939097556240403DEE2DFF /* Nimble.framework */,
8C36DB6F05615EC71278526272A72BAD /* Quick.framework */,
1A6BACE6EE2AC54AE6A5317C14813F1B /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
D3F1D88ECF09A79CD47A6CEE55D67F67 /* FBSnapshotTestCase */ = {
isa = PBXGroup;
children = (
A09D2A8BBEAD840E516CCB08FC926B72 /* Core */,
AB2B871EF6087F05D1234D05690D22E7 /* Support Files */,
7D31F17BEDAF397B1F838A093E3BE3CB /* SwiftSupport */,
);
path = FBSnapshotTestCase;
sourceTree = "<group>";
};
D96993144374B4A9BC09F9195E8C3021 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
A5B1B1F6F1F8A64F70C944DC2BC2619C /* Pods-Brundlefly_Example */,
40442B70F254085EC7E7998F9DB23209 /* Pods-Brundlefly_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
DB1245A0B768C97A4CD4B2161A701E77 /* Classes */ = {
isa = PBXGroup;
children = (
EAC18FE41C0A08BE00433490 /* Extensions */,
EAC18FE31C0A08B700433490 /* Model */,
EAC18FD71C0A08AA00433490 /* BtfyAnimationView.swift */,
EAC18FD81C0A08AA00433490 /* BtfyEllipseView.swift */,
EAC18FD91C0A08AA00433490 /* BtfyError.swift */,
EAC18FDA1C0A08AA00433490 /* BtfyLoader.swift */,
EAC18FDB1C0A08AA00433490 /* BtfyRectangleView.swift */,
EAC18FDC1C0A08AA00433490 /* BtfyJson.swift */,
EACD39011C6FA52600DF1B8F /* BtfyVideoView.swift */,
);
path = Classes;
sourceTree = "<group>";
};
E58136F5D76D0583AE7A13CC33035D43 /* Nimble */ = {
isa = PBXGroup;
children = (
0411D20370700F56223758955E1BDD0B /* AdapterProtocols.swift */,
CFA51DB996CB38419B5CA02CB769A8F6 /* AllPass.swift */,
7CE6F28E609BD2D14BFE5E6667DAB247 /* AssertionDispatcher.swift */,
469EEA828792C10E022D4BDE6B3CF9F5 /* AssertionRecorder.swift */,
130A59DDB32BBDCFB4ABB11FA368C7F8 /* AsyncMatcherWrapper.swift */,
10B87C10CF9687BF019CF83CB256DBBD /* BeAKindOf.swift */,
4E8E5264D4E4F74FEBD8FEF584E260EB /* BeAnInstanceOf.swift */,
160CBE7729A142944B5FB1512025954D /* BeCloseTo.swift */,
CD2764775E2D6E934DD52F0446CA03DF /* BeEmpty.swift */,
6249D63C7453302DA79EBB9E0440A1F9 /* BeginWith.swift */,
26BD571A5BAA6FE5093A498526F8027C /* BeGreaterThan.swift */,
B18139039A0FE80ADC6A3985117366A4 /* BeGreaterThanOrEqualTo.swift */,
011394233A7239143D706983E89EE6E5 /* BeIdenticalTo.swift */,
9500663E16F1B37B02D2F844A81685E0 /* BeLessThan.swift */,
CA5B1C3374EB4F93C57940CE8580D9F6 /* BeLessThanOrEqual.swift */,
FD51F90687F1FD2CD6E2CDF0E3F62C27 /* BeLogical.swift */,
37D7137A6D7EFBB6E057D6D4955B5B90 /* BeNil.swift */,
983197F6CC870B4E78D23FCBEEAE9845 /* Contain.swift */,
0D815E4D0509F64977CC911FFE53B202 /* DSL.h */,
4DD3149E7587B1EF2A379EC646B17083 /* DSL.m */,
11CEBA0F9875766C6578D56EC1878D57 /* DSL.swift */,
4E57E9A961DA8501663351FDF21E0001 /* DSL+Wait.swift */,
2E77F579A3DFCEB86931BA459893513A /* EndWith.swift */,
200A0C67CCC284B4A2453C8A749B2FCE /* Equal.swift */,
491EBCAB8EBE519908483A437F0A5302 /* Expectation.swift */,
F6AA52B39A5AD52E8313E98B6A7A797F /* Expression.swift */,
A14E97EFA39EE5B8E0791218121044BD /* FailureMessage.swift */,
10AD076B851097DA10B51E31A8E7BE6C /* Functional.swift */,
F8D4AFE9465C639DF4E67D1EF16C7D55 /* HaveCount.swift */,
CB318CBB3A1FAC64DA8D4F403127956C /* Match.swift */,
BDF4295D295CD1D2EF74D905D83835A4 /* MatcherFunc.swift */,
6F0990E92CE6C898CE1BE2E493E8988F /* MatcherProtocols.swift */,
F8C7B43832CED29D843ABAD9BFBF89CF /* Nimble.h */,
32771F017408506D7418E4ABDD594BA9 /* NimbleXCTestHandler.swift */,
3583D7D5C6884B5811739712676819ED /* NMBExceptionCapture.h */,
1FD2FEBA13C21B99B45C2553743F1295 /* NMBExceptionCapture.m */,
AFE47970A7AC09344E95FFCDD3B7C88C /* ObjCExpectation.swift */,
29796A65251B88A8DADB8498350E0A1C /* ObjCMatcher.swift */,
AA329B2CFA87E526DA6452FDD6BB26BC /* Poll.swift */,
929FDFE7C05D7BBF5060D429BF214EF4 /* RaisesException.swift */,
C9BDADBB262C5FFFF97834DD116EAE46 /* SourceLocation.swift */,
19CF27DB4E86CF523DBB7718DD1F8A5D /* Stringers.swift */,
BA9F459E31DA81F5231DDC1B69332F8E /* ThrowError.swift */,
0A1869DF3DD98A1BE59ACF582C7FCBAD /* Support Files */,
);
path = Nimble;
sourceTree = "<group>";
};
EAC18FE31C0A08B700433490 /* Model */ = {
isa = PBXGroup;
children = (
EA9736071C55F0790011C4DE /* BtfyPropertyParserKeyframeOpacity.swift */,
EAC18FEF1C0A08DB00433490 /* BtfyAnimation.swift */,
EAC18FF01C0A08DB00433490 /* BtfyAnimationGroup.swift */,
EAC18FF11C0A08DB00433490 /* BtfyColor.swift */,
EAC18FF21C0A08DB00433490 /* BtfyInitialValues.swift */,
EAC18FF31C0A08DB00433490 /* BtfyKeyframe.swift */,
EAC18FF41C0A08DB00433490 /* BtfyPoint.swift */,
EAC18FF51C0A08DB00433490 /* BtfyPropertyParserKeyframe.swift */,
EAC18FF71C0A08DB00433490 /* BtfyPropertyParserKeyframePosition.swift */,
EAC18FF81C0A08DB00433490 /* BtfyPropertyParserKeyframeRotation.swift */,
EAC18FF91C0A08DB00433490 /* BtfyPropertyParserKeyframeScale.swift */,
EAC18FFA1C0A08DB00433490 /* BtfyShape.swift */,
EAC18FFB1C0A08DB00433490 /* BtfySize.swift */,
EAC18FFC1C0A08DB00433490 /* BtfyStage.swift */,
);
name = Model;
sourceTree = "<group>";
};
EAC18FE41C0A08BE00433490 /* Extensions */ = {
isa = PBXGroup;
children = (
EAC18FE51C0A08D100433490 /* Double+Math.swift */,
EAC18FE61C0A08D100433490 /* NSBundle+pathForResource.swift */,
EAC18FE71C0A08D100433490 /* String+Localization.swift */,
EAC18FE81C0A08D100433490 /* UIColor+BtfyColor.swift */,
EAC18FE91C0A08D100433490 /* UIView+AssociatedObject.swift */,
);
name = Extensions;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
332FAC73ADD99E61AC54CAF4D8500D6F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
B90F0080EBFC85E394C5A840D8AFB3AB /* Pods-Brundlefly_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6A3BB9E32BDAD9EDB00EDFE657BDB001 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
821A26883ED14BDCD7EBADD37D671D17 /* FBSnapshotTestCase.h in Headers */,
41D8739E2720D3535592391C25507158 /* FBSnapshotTestCasePlatform.h in Headers */,
7BEF20E09F0E864478905311672F91AB /* FBSnapshotTestController.h in Headers */,
1F118728B3D74089480152A6B660EA9A /* UIImage+Compare.h in Headers */,
52B0263F90696E7FD87CB146D5C5E2C1 /* UIImage+Diff.h in Headers */,
723FDDFD804188090511DEFA8309A06B /* UIImage+Snapshot.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
6F7DE375EF814DA9A69AE196B2DB17AE /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
1F9A73FCE8FB5B498DDBE09A673804EF /* Nimble-Snapshots-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
76D0C78916D0BEA880DBECA72CC10067 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
B9A25618242BA2CB1A10EB79BFAA2A2D /* Pods-Brundlefly_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B4EDC1F5638F97241E860A407E147942 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
739CDBA5A3A1DDFA56B6A5D832B1CFA8 /* NSString+QCKSelectorName.h in Headers */,
20DED612A8439132802DB427AF033FE8 /* QCKDSL.h in Headers */,
41E8F09F5FC631A90D7E818934D4094A /* Quick-umbrella.h in Headers */,
CFFC1EE26535977AB3FF294623A3DEEA /* Quick.h in Headers */,
E19167797EF881C97BBFB5607406EC56 /* QuickConfiguration.h in Headers */,
9A6DE5B6F55232DC12497ED10E7E1DE4 /* QuickSpec.h in Headers */,
87165912578E674C9409A621A0FF21FF /* World+DSL.h in Headers */,
A80769C99C01B5415FB8EA544903CE1E /* World.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B8966172CFBBF1D257697F6E61E99E41 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
15B056130303E54ED28B6C8F73AB41C9 /* Brundlefly-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E558CFA5C045F339837B0B7645133081 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
9341B96D63EF6C54A1F906A1BBAEAF46 /* DSL.h in Headers */,
0F49254A4C560DD4696936F6080756DC /* Nimble-umbrella.h in Headers */,
512DFAE728521F02AF225F0082195DCC /* Nimble.h in Headers */,
02BF9988CC94A01E7CB6049694390020 /* NMBExceptionCapture.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
0E359681996C9E927392436D5FB85B25 /* Nimble-Snapshots */ = {
isa = PBXNativeTarget;
buildConfigurationList = 4EE82D502BE978777A3B28509A68C619 /* Build configuration list for PBXNativeTarget "Nimble-Snapshots" */;
buildPhases = (
6B85EE1809BFCF9C4D90F95F67575FF2 /* Sources */,
53799BFC446EFA757FD1305D22A8B6A7 /* Frameworks */,
6F7DE375EF814DA9A69AE196B2DB17AE /* Headers */,
);
buildRules = (
);
dependencies = (
4E75CAD9DB12CA0903EC1468DD31F397 /* PBXTargetDependency */,
4D4951DDE4B80E87FABE121524615175 /* PBXTargetDependency */,
311A30EC8885C4692315AF0475A88ED2 /* PBXTargetDependency */,
);
name = "Nimble-Snapshots";
productName = "Nimble-Snapshots";
productReference = D8DA76F2B1FA21236FF414AC26E776AA /* Nimble_Snapshots.framework */;
productType = "com.apple.product-type.framework";
};
1D789148C764E20A76D10A66FF87B354 /* Brundlefly-Brundlefly */ = {
isa = PBXNativeTarget;
buildConfigurationList = 3F059E584695B28DE88D35A950DB8002 /* Build configuration list for PBXNativeTarget "Brundlefly-Brundlefly" */;
buildPhases = (
E7DB5858249F12D409B80035ED981A3D /* Sources */,
2132851FBCDAF75EC050896B1C2D986A /* Frameworks */,
36FFB3C80D08C296D93306E04744255E /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "Brundlefly-Brundlefly";
productName = "Brundlefly-Brundlefly";
productReference = 07F6E742BDF597C3C5312D9987B0374C /* Brundlefly.bundle */;
productType = "com.apple.product-type.bundle";
};
210E9BC3E50490B08490BA8D8F41164E /* Pods-Brundlefly_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = FA30404A3CF55401A6246B87AD1A3EDA /* Build configuration list for PBXNativeTarget "Pods-Brundlefly_Example" */;
buildPhases = (
5CA4CBF8E912F457A1C9D143013ECA5F /* Sources */,
32CAE86B1278A2F1963ECEA1ACF3DF99 /* Frameworks */,
332FAC73ADD99E61AC54CAF4D8500D6F /* Headers */,
);
buildRules = (
);
dependencies = (
E86A99B82FE4BD061B5BF96836B63712 /* PBXTargetDependency */,
);
name = "Pods-Brundlefly_Example";
productName = "Pods-Brundlefly_Example";
productReference = 49F44B4D52996EFE19CF1A85B6ABC4D3 /* Pods_Brundlefly_Example.framework */;
productType = "com.apple.product-type.framework";
};
33D7F7668C0B4B1821247F94B1CD7EDD /* Brundlefly */ = {
isa = PBXNativeTarget;
buildConfigurationList = A59F0144396899D5F5606EE2EC84D2FF /* Build configuration list for PBXNativeTarget "Brundlefly" */;
buildPhases = (
9206281F4EB938354920005C2E665F20 /* Sources */,
6996EA0151206408BC8829AF25BC61CC /* Frameworks */,
2D293B86BFAD517EB9207A9456CA8714 /* Resources */,
B8966172CFBBF1D257697F6E61E99E41 /* Headers */,
);
buildRules = (
);
dependencies = (
CDE74B525E607E600F616EA8C8171F0A /* PBXTargetDependency */,
);
name = Brundlefly;
productName = Brundlefly;
productReference = 8F6D1F0551E34162226B4E6DD01C82ED /* Brundlefly.framework */;