-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.pbxproj
1364 lines (1351 loc) · 84.7 KB
/
project.pbxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
02BF9988CC94A01E7CB6049694390020 /* NMBExceptionCapture.h in Headers */ = {isa = PBXBuildFile; fileRef = 40FBD52025077E5788ADCE71EF040393 /* NMBExceptionCapture.h */; settings = {ATTRIBUTES = (Public, ); }; };
02DF5BD2281BA10105A447F95FCF8CF3 /* BeLogical.swift in Sources */ = {isa = PBXBuildFile; fileRef = B011BCE1507648ECA7586CF7DABF6F4C /* BeLogical.swift */; };
0492354DA7EF0C9068F7B4E8F74001B0 /* FailureMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25961731CF4F7537A5ECD61A000A150C /* FailureMessage.swift */; };
06A00C31A4D58C8A3C651700DF592C93 /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BF695047E0AAFB3CA54EC10F0E97FD3 /* Configuration.swift */; };
076233DE7D0E141C9D395A9B06E57BCB /* FunnelChart.swift in Sources */ = {isa = PBXBuildFile; fileRef = A24F59BB6834896D4272604473C479FD /* FunnelChart.swift */; };
08082797197F4F4E97CFCAEEEFA33B61 /* Funnel-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0252867B128CDA4E49762765C6283A35 /* Funnel-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
0A6E71555F55082003A3DB2B03CA85D2 /* AsyncMatcherWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D42013D479CDC11E7882C7C0045B66B /* AsyncMatcherWrapper.swift */; };
0E8E6629711A0EAAE1A7267191EDD97F /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DDA3CDE7515A11BE56C6C2FE5FB65D8 /* World+DSL.swift */; };
0F49254A4C560DD4696936F6080756DC /* Nimble-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4AE1E80CC4EA4F2E1FF17CA10A3D26 /* Nimble-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
1178B4EC0A142700678F5FAAA59A3C00 /* World.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C0EAA5BA062125C64E6A819695F87C6 /* World.h */; settings = {ATTRIBUTES = (Project, ); }; };
1E28F9362956B758C4C981D3C1129C90 /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3CD67A0263B5D926517C112081F48B2 /* BeGreaterThan.swift */; };
2479ACABBCEB7391C52BD1ECC3E918EB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E351727CD07BB90B2A3CAE2C2433F6C5 /* Foundation.framework */; };
2705B450A4663ED428BAA8E703172BAC /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = E41A31E4949F1319040B8D2BBBF2B5D6 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
2AA0B2264C5DAA3AB37B552E66488A06 /* Funnel-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 04D646BE83B043473F9B2993EF2E4F53 /* Funnel-dummy.m */; };
2D3B916F7168E9412EDB95BA203A5BB4 /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2BC0728045ED4D4A2C12B52A561EEF7 /* ThrowError.swift */; };
33264C6A7A3536AD91EF42B3E8CC8220 /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = C03BB6589A73F51F073DF050F55D7F41 /* BeGreaterThanOrEqualTo.swift */; };
33514FEE6EA65605EFB6F1801834B692 /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B0C995C72A44C02A9369FA2BDB1F4FF /* AssertionDispatcher.swift */; };
3A92AEE86034356AF8987F20EE1F82DF /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E8B6303CCFDEBF93094E92D50CAFF38 /* EndWith.swift */; };
3AEAC447B09E7AABC140654C8529BC94 /* MatcherFunc.swift in Sources */ = {isa = PBXBuildFile; fileRef = E43EEEBE209F0CF242FBC231937E6922 /* MatcherFunc.swift */; };
4059EF96B3BCC0A089188ECE4CA03CA6 /* Quick-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 616BFD5BF73AEF373E5250D05560A338 /* Quick-dummy.m */; };
4113759073E2DFF0CA7DC9CBB1DD7CEB /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8487245080A1AB0FFD48288B814AEA82 /* World.swift */; };
479C7F5A2E319AB413908DAFB8EEA0AF /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 279AA6492631DEFA8C439A9C088EEB8A /* XCTest.framework */; };
48CFA2936275CCEAA68957F238B84D21 /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38715BF4570032AE706B97AB11365E48 /* ExampleMetadata.swift */; };
4E87C6AE24AB15700A39FC24A2F1C93B /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E12C6F645E5DC0EDB23023A394F1CB1 /* BeLessThanOrEqual.swift */; };
4F740BF57A295559D70A7F9DF87443A7 /* Pods-Funnel_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C9D2EAB117EAE2DAEE724F2AA7D71A6 /* Pods-Funnel_Tests-dummy.m */; };
512DFAE728521F02AF225F0082195DCC /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = 784135A9193F0FE38182AF2C577B3A52 /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; };
52129F58DDE1C8902D50E4168D441F68 /* Quick-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9D0077C69A720B9DD2BB12344FD893 /* Quick-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
58659F68593EF7DFEA84A3517B97BB64 /* Pods-Funnel_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 125791D75A1F60C2BA9DD05B3921E34A /* Pods-Funnel_Example-dummy.m */; };
58EBA2C1A43283FB2188AB1FB592D32B /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B9040AB08CA7AEB727960E284F746A4 /* DSL.swift */; };
59FE4E87C039366F7006ABE83EB0CD58 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E351727CD07BB90B2A3CAE2C2433F6C5 /* Foundation.framework */; };
638F167F8F9286EA35DB5D7E01318074 /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64F0BEE5B67844F0E333920C2CB3416C /* SuiteHooks.swift */; };
65DFB9B3FD7C5246F9AF97586D5FFD54 /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E0D7E2D11371A45CB3D1221E7B4EC2 /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; };
66AF5C3D4739ABC4740167CEB6F52098 /* Pods-Funnel_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A09901588097894E4FFEE37665BCBD43 /* Pods-Funnel_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
66DCA10DDBD203C63CA8C05F3B304FA3 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF7511682ED488897012E4EEC14429BF /* Filter.swift */; };
686851F75CDF412F6FF5E299105BCAC7 /* World+DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 94A039912FDC46FCB2AF6DCEEB91ADB4 /* World+DSL.h */; settings = {ATTRIBUTES = (Project, ); }; };
6F532B50A4F638B4DA509350D65F9DBE /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 62241019A9DFE31F82A2CDF8690A163C /* QuickSpec.m */; };
70788D98A7635C22E4735C9EA7EAEFC1 /* Funnel.bundle in Resources */ = {isa = PBXBuildFile; fileRef = EB95D6EDE250641FCA8BE9501DD1C98B /* Funnel.bundle */; };
73695FA6A6CDFBB13C0CC73C2E5126C0 /* Nimble-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C8E9634CF58B22F95DF5AA222CDAF9B8 /* Nimble-dummy.m */; };
7680F08C43B965EC873D26E6AD854C9F /* BeIdenticalTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69A1AA2E4CDFA7B6FD9B4F253CAF481F /* BeIdenticalTo.swift */; };
77128C0365A98E3BAC038A915B38791C /* BeAKindOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B53DF3C5B85F993313E9FA09386C167 /* BeAKindOf.swift */; };
7A6E2730A25A55D8DFA74D3D7CB005EF /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13064CC241598F189B1341470994F9D9 /* BeAnInstanceOf.swift */; };
7BFD25B1BB1116D8AC47E2C3874C5B76 /* ObjCMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73B922FF75D982F502B345AE30399F97 /* ObjCMatcher.swift */; };
7DA9FF8513AA48310B15A0744A541818 /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4930275AC98E3FD0F3BC81A7D08B8591 /* SourceLocation.swift */; };
7E12F5CA1F1A9D6C495EC0E1AEC04D9C /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE6E3634125A20B9BA58962919B08DDC /* Closures.swift */; };
831D33A4C5C5BBC1EC158D9A236C61D7 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5596CB4CEA7B7B71461C9ECE75263656 /* NimbleXCTestHandler.swift */; };
8D0BF52FF564A170A3D1DE28C27B233E /* Poll.swift in Sources */ = {isa = PBXBuildFile; fileRef = F689A549CFB432AE0684F3EA3BA8D2FF /* Poll.swift */; };
9187EEC2982DB82AD8D3A7001AA647D6 /* NMBExceptionCapture.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F4CE0DE16848CBDA8A93366A52BEF7 /* NMBExceptionCapture.m */; };
9341B96D63EF6C54A1F906A1BBAEAF46 /* DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = DA695A07DF17BA243064E57D889E1CBB /* DSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
9646787942A85613FE77F45794E9B5CD /* BeginWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58CD57ED9D79412A49A037E8EAA4AF42 /* BeginWith.swift */; };
9ADD3455BFCF72CF833DB3ED6412FA5E /* Pods-Funnel_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BF9D717971793C12BA14C5764E468F76 /* Pods-Funnel_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
9E0479D08A7FB0AF5CA08F0AA011EC23 /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 2543809E4D3D9755B94735346ACDFF03 /* QCKDSL.m */; };
9E7786C034F0E0A6B5F0A0E6BE7D7E4A /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FE24AE8654BDA8234080C23F6335E26 /* BeEmpty.swift */; };
A50F4C511D2ADED48C89E54E931802B9 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEA1EFFE836005E11B9D420692E9E50C /* Example.swift */; };
B0A26F58BA3E6222E50AE5AC883B8EAF /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = D17DFC0D37F8449B1B2A2D117D1179A2 /* DSL.m */; };
B41E8E775408ACE233F29CE93388B270 /* Contain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6727AA774C6723AFCA6CFCEF099071C7 /* Contain.swift */; };
B905718B2501DDA22F2AE73CB6E76E6B /* BeCloseTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29A378AC6A7BCB5D43F7586353A7610A /* BeCloseTo.swift */; };
BB4F35062294C1A461DA3CEF6306A1DB /* HaveCount.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54BC3268759E7DB38A0E192F06A1BD06 /* HaveCount.swift */; };
BCB53F24DCADF12601B8BA90AE3190AE /* BeLessThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69578BBC16AAA12ED9630E2036580E94 /* BeLessThan.swift */; };
C150157922BAEB1F93635508FB59E618 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E351727CD07BB90B2A3CAE2C2433F6C5 /* Foundation.framework */; };
C3FFCDECCA300C52EC73167154676B71 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E351727CD07BB90B2A3CAE2C2433F6C5 /* Foundation.framework */; };
C63AB521EA514A811A167E507C0CF9AD /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 227AD60FAC82B3DEDDBB09BAEE052647 /* Expression.swift */; };
C9AC658F3FCB67B50E96313C2687B33D /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28D0DF7E7A59098355B7877A39D254B6 /* MatcherProtocols.swift */; };
CAAED5FB81DB035A9EC080917C783FA6 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECB4882E47E7537D32F4C677DF4F0B43 /* AdapterProtocols.swift */; };
CD9D31B6063C50689EAC2A0745C282DC /* ObjCExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7FE6BD80E2769820B83F2550DAC4AAF /* ObjCExpectation.swift */; };
D429691F39B4C30A8993360FB8A3E334 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F2CCEF958AF4E4C4F073031905F2CE2 /* AllPass.swift */; };
D7B45D4600C6166C124C0A926EE65284 /* Functional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28E302676FFF0A4192E3ECFB4B1FDCF6 /* Functional.swift */; };
D9219E251FB4D963A8E88C70F7A900DC /* NSString+QCKSelectorName.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F492985EB6550A418DD3DB1BCDE146 /* NSString+QCKSelectorName.h */; settings = {ATTRIBUTES = (Project, ); }; };
DEE170DD3064F7343884A4016546B762 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDA388FEA33C5B8824432D9681B318F3 /* DSL+Wait.swift */; };
DF7380A71376BE6AEAD3DA35A4FB4BC4 /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2005F86F2C2D05CDE00BB78EF02D6D4 /* ExampleGroup.swift */; };
E01F3E8F7DDA3132B04B55B547579368 /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = AE670FBBCC7FBB0E81F05DA0C8EAAEE5 /* QuickConfiguration.m */; };
E2FBD93D72DF01427486D1A6853FC689 /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3116FC3DA077740D1C5702FA4C187A2 /* Expectation.swift */; };
E36C5201AE7F1CBB25F9D2E7CBFC3C20 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0843BD7412E439120C081E8D9FE0F80 /* Match.swift */; };
E6E7B15FAD6C56681511813DB2666478 /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = B84D274316F8C6F9695294FB40D7596F /* AssertionRecorder.swift */; };
F10FD3129985704FA1610F84FB98EDF5 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = E31CE50F8B4B99D3C229D2438892ED5B /* Stringers.swift */; };
F1D4A8A1FC68EFA7F45945908D70A352 /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02297D692E5CA1B1C21CCCDA1853BA44 /* BeNil.swift */; };
F4A9DBE93D2706D719A8C535C2DB4BEB /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 8880B82EFD81A0D6EE2BBD27A39D61BA /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; };
F500F3BF86B531CE61C22FAEEB422C39 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E351727CD07BB90B2A3CAE2C2433F6C5 /* Foundation.framework */; };
F7A46BA5C4A1A82596BDB8AE216183E9 /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C6D6E41BA9F922E7BBD3A24B7E5D00A /* Callsite.swift */; };
F83B408EB3FFF4A1FB9D18587C666E78 /* NSString+QCKSelectorName.m in Sources */ = {isa = PBXBuildFile; fileRef = 20ABC5A3D02301EC1EC014B6ABEFA42A /* NSString+QCKSelectorName.m */; };
F89370EF14FE5A904A8C794B5F663D97 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33DD2CC5441C4540A072B29E4A257A9D /* DSL.swift */; };
FB1347627E64CA7E98C19DC985E13D95 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = D75276E4A134A22E123F4C40E529080C /* Equal.swift */; };
FD028877D8DB335D188D67BA99F5A4A4 /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01F8C281E400A6FABAD082CEA7263B2A /* ExampleHooks.swift */; };
FDAE2CECA08839699079796C864A41E0 /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = F1D4A64A54F414359EC782444B27597B /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
FFC311AC1E19A23E0EB7B1B3A7A5A744 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88457B3A5C81E0F34AC48AC05B8040D6 /* RaisesException.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
1C72CB209CA9384E37FFDA1EA0F5BCFF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0CBED300D22F7ADCBAC702DFA2D29065;
remoteInfo = Funnel;
};
4DD96195450D16E7C820E951220F7F0E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 98FB75A0AECA5AACD63650D0803E239D;
remoteInfo = "Funnel-Funnel";
};
D1155EEBF8B391B54C32F07EDDC5C505 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = A1A7AAAC67C8F201527E0F7A4FFB916D;
remoteInfo = Quick;
};
D1E5F0609DD5F3FF75BB80077D5465E4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 0CBED300D22F7ADCBAC702DFA2D29065;
remoteInfo = Funnel;
};
E27CBECDEA9B85BF35839936131C3533 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = C5DB5104FED3C10F78978AFC810982B9;
remoteInfo = Nimble;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
01F8C281E400A6FABAD082CEA7263B2A /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Quick/Hooks/ExampleHooks.swift; sourceTree = "<group>"; };
021C4E135FFC34B4A74FD0560A640549 /* Quick.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Quick.modulemap; sourceTree = "<group>"; };
02297D692E5CA1B1C21CCCDA1853BA44 /* BeNil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeNil.swift; path = Nimble/Matchers/BeNil.swift; sourceTree = "<group>"; };
0252867B128CDA4E49762765C6283A35 /* Funnel-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Funnel-umbrella.h"; sourceTree = "<group>"; };
04D646BE83B043473F9B2993EF2E4F53 /* Funnel-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Funnel-dummy.m"; sourceTree = "<group>"; };
0B0C995C72A44C02A9369FA2BDB1F4FF /* AssertionDispatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionDispatcher.swift; path = Nimble/Adapters/AssertionDispatcher.swift; sourceTree = "<group>"; };
0B53DF3C5B85F993313E9FA09386C167 /* BeAKindOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAKindOf.swift; path = Nimble/Matchers/BeAKindOf.swift; sourceTree = "<group>"; };
125791D75A1F60C2BA9DD05B3921E34A /* Pods-Funnel_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Funnel_Example-dummy.m"; sourceTree = "<group>"; };
13064CC241598F189B1341470994F9D9 /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = "<group>"; };
15EFB060E875408599F664FCE0C6605A /* Pods-Funnel_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Funnel_Tests.release.xcconfig"; sourceTree = "<group>"; };
174AA22AFC156D6555E055A62C6C9ACD /* Funnel.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Funnel.xcconfig; sourceTree = "<group>"; };
1D42013D479CDC11E7882C7C0045B66B /* AsyncMatcherWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncMatcherWrapper.swift; path = Nimble/Wrappers/AsyncMatcherWrapper.swift; sourceTree = "<group>"; };
1E8B6303CCFDEBF93094E92D50CAFF38 /* EndWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndWith.swift; path = Nimble/Matchers/EndWith.swift; sourceTree = "<group>"; };
1E9D2F8F30AD69245FA8CD5D5A815165 /* Pods_Funnel_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Funnel_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1F05C7A62D359CB4C607336256CB4F48 /* Pods-Funnel_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Funnel_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
1F6952F77C0D2CD938EBF46961B1CC8C /* Pods-Funnel_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Funnel_Example.modulemap"; sourceTree = "<group>"; };
20ABC5A3D02301EC1EC014B6ABEFA42A /* NSString+QCKSelectorName.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+QCKSelectorName.m"; path = "Quick/NSString+QCKSelectorName.m"; sourceTree = "<group>"; };
227AD60FAC82B3DEDDBB09BAEE052647 /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = Nimble/Expression.swift; sourceTree = "<group>"; };
2543809E4D3D9755B94735346ACDFF03 /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Quick/DSL/QCKDSL.m; sourceTree = "<group>"; };
25961731CF4F7537A5ECD61A000A150C /* FailureMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailureMessage.swift; path = Nimble/FailureMessage.swift; sourceTree = "<group>"; };
279AA6492631DEFA8C439A9C088EEB8A /* 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; };
28CBE0D19FC6E65EFAA29981A9422B23 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
28D0DF7E7A59098355B7877A39D254B6 /* MatcherProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherProtocols.swift; path = Nimble/Matchers/MatcherProtocols.swift; sourceTree = "<group>"; };
28E302676FFF0A4192E3ECFB4B1FDCF6 /* Functional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Functional.swift; path = Nimble/Utils/Functional.swift; sourceTree = "<group>"; };
297D75C934041FDD939B25CE7BCCD2D8 /* Pods-Funnel_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Funnel_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
2989637FC850A7CB3E915CC5850ED6C1 /* Pods-Funnel_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Funnel_Example.debug.xcconfig"; sourceTree = "<group>"; };
29A378AC6A7BCB5D43F7586353A7610A /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Nimble/Matchers/BeCloseTo.swift; sourceTree = "<group>"; };
2B9040AB08CA7AEB727960E284F746A4 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Nimble/DSL.swift; sourceTree = "<group>"; };
2BA6ACF97E852A053DA9717DBF189DB6 /* Funnel-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Funnel-prefix.pch"; sourceTree = "<group>"; };
2F431164DB6F2B0A63AD4763C5C643BF /* Pods-Funnel_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Funnel_Example-frameworks.sh"; sourceTree = "<group>"; };
2FE24AE8654BDA8234080C23F6335E26 /* BeEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeEmpty.swift; path = Nimble/Matchers/BeEmpty.swift; sourceTree = "<group>"; };
33DD2CC5441C4540A072B29E4A257A9D /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Quick/DSL/DSL.swift; sourceTree = "<group>"; };
38715BF4570032AE706B97AB11365E48 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Quick/ExampleMetadata.swift; sourceTree = "<group>"; };
38951D9AFD46D6EC1E718F5DC3EBCCE8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3A2BEC7D155E5221D2FDE657DD8515CC /* Pods-Funnel_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Funnel_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
3F1975D001BFB447009180BAF8C14ADB /* Quick-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-prefix.pch"; sourceTree = "<group>"; };
40FBD52025077E5788ADCE71EF040393 /* NMBExceptionCapture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NMBExceptionCapture.h; path = Nimble/objc/NMBExceptionCapture.h; sourceTree = "<group>"; };
4930275AC98E3FD0F3BC81A7D08B8591 /* SourceLocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceLocation.swift; path = Nimble/Utils/SourceLocation.swift; sourceTree = "<group>"; };
4C0EAA5BA062125C64E6A819695F87C6 /* World.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = World.h; path = Quick/World.h; sourceTree = "<group>"; };
4C6D6E41BA9F922E7BBD3A24B7E5D00A /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Quick/Callsite.swift; sourceTree = "<group>"; };
4F2CCEF958AF4E4C4F073031905F2CE2 /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Nimble/Matchers/AllPass.swift; sourceTree = "<group>"; };
50F51DD2E3078D68A507D7B113644C41 /* Funnel.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Funnel.modulemap; sourceTree = "<group>"; };
54BC3268759E7DB38A0E192F06A1BD06 /* HaveCount.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HaveCount.swift; path = Nimble/Matchers/HaveCount.swift; sourceTree = "<group>"; };
5596CB4CEA7B7B71461C9ECE75263656 /* NimbleXCTestHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NimbleXCTestHandler.swift; path = Nimble/Adapters/NimbleXCTestHandler.swift; sourceTree = "<group>"; };
58CD57ED9D79412A49A037E8EAA4AF42 /* BeginWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeginWith.swift; path = Nimble/Matchers/BeginWith.swift; sourceTree = "<group>"; };
5B966C2FD71AB6EDF5D33B480EC2473C /* Pods-Funnel_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Funnel_Tests-resources.sh"; sourceTree = "<group>"; };
5BF695047E0AAFB3CA54EC10F0E97FD3 /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Quick/Configuration/Configuration.swift; sourceTree = "<group>"; };
5D6A2E71DBC9D0DE17402BCFCFEEBDB2 /* Nimble-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-prefix.pch"; sourceTree = "<group>"; };
616BFD5BF73AEF373E5250D05560A338 /* Quick-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Quick-dummy.m"; sourceTree = "<group>"; };
62241019A9DFE31F82A2CDF8690A163C /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Quick/QuickSpec.m; sourceTree = "<group>"; };
64F0BEE5B67844F0E333920C2CB3416C /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Quick/Hooks/SuiteHooks.swift; sourceTree = "<group>"; };
64F492985EB6550A418DD3DB1BCDE146 /* NSString+QCKSelectorName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+QCKSelectorName.h"; path = "Quick/NSString+QCKSelectorName.h"; sourceTree = "<group>"; };
6727AA774C6723AFCA6CFCEF099071C7 /* Contain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Contain.swift; path = Nimble/Matchers/Contain.swift; sourceTree = "<group>"; };
69578BBC16AAA12ED9630E2036580E94 /* BeLessThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThan.swift; path = Nimble/Matchers/BeLessThan.swift; sourceTree = "<group>"; };
69A1AA2E4CDFA7B6FD9B4F253CAF481F /* BeIdenticalTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeIdenticalTo.swift; path = Nimble/Matchers/BeIdenticalTo.swift; sourceTree = "<group>"; };
6DDA3CDE7515A11BE56C6C2FE5FB65D8 /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Quick/DSL/World+DSL.swift"; sourceTree = "<group>"; };
73B922FF75D982F502B345AE30399F97 /* ObjCMatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjCMatcher.swift; path = Nimble/Wrappers/ObjCMatcher.swift; sourceTree = "<group>"; };
784135A9193F0FE38182AF2C577B3A52 /* Nimble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Nimble.h; path = Nimble/Nimble.h; sourceTree = "<group>"; };
7A49795654C6F7E5815A703228913CB1 /* Pods-Funnel_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Funnel_Tests-frameworks.sh"; sourceTree = "<group>"; };
7BA6AF683C48C4E7A13543795097F1A4 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
7C07CB259CB51CAA2B1B59537C0A7C2C /* Quick.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.xcconfig; sourceTree = "<group>"; };
8487245080A1AB0FFD48288B814AEA82 /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Quick/World.swift; sourceTree = "<group>"; };
88457B3A5C81E0F34AC48AC05B8040D6 /* RaisesException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RaisesException.swift; path = Nimble/Matchers/RaisesException.swift; sourceTree = "<group>"; };
8880B82EFD81A0D6EE2BBD27A39D61BA /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Quick/QuickSpec.h; sourceTree = "<group>"; };
8B886AB8E0B2D6046AC154AE63A6EDF5 /* Quick.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8C9D2EAB117EAE2DAEE724F2AA7D71A6 /* Pods-Funnel_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Funnel_Tests-dummy.m"; sourceTree = "<group>"; };
8E12C6F645E5DC0EDB23023A394F1CB1 /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = "<group>"; };
94A039912FDC46FCB2AF6DCEEB91ADB4 /* World+DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "World+DSL.h"; path = "Quick/DSL/World+DSL.h"; sourceTree = "<group>"; };
A09901588097894E4FFEE37665BCBD43 /* Pods-Funnel_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Funnel_Tests-umbrella.h"; sourceTree = "<group>"; };
A24F59BB6834896D4272604473C479FD /* FunnelChart.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = FunnelChart.swift; sourceTree = "<group>"; };
A52859469AC6739CDEEBADC064EF51F4 /* Pods-Funnel_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Funnel_Example-acknowledgements.plist"; sourceTree = "<group>"; };
A99087E711417971A6730640F02AAC8E /* Pods-Funnel_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Funnel_Example-resources.sh"; sourceTree = "<group>"; };
AE670FBBCC7FBB0E81F05DA0C8EAAEE5 /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Quick/Configuration/QuickConfiguration.m; sourceTree = "<group>"; };
AE6E3634125A20B9BA58962919B08DDC /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Quick/Hooks/Closures.swift; sourceTree = "<group>"; };
B011BCE1507648ECA7586CF7DABF6F4C /* BeLogical.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLogical.swift; path = Nimble/Matchers/BeLogical.swift; sourceTree = "<group>"; };
B2005F86F2C2D05CDE00BB78EF02D6D4 /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Quick/ExampleGroup.swift; sourceTree = "<group>"; };
B3116FC3DA077740D1C5702FA4C187A2 /* Expectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expectation.swift; path = Nimble/Expectation.swift; sourceTree = "<group>"; };
B499523C9285A0715366B8763E8A17BD /* Funnel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Funnel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B68A276C05A93CFCC331A055BCA33167 /* Nimble.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Nimble.xcconfig; sourceTree = "<group>"; };
B84D274316F8C6F9695294FB40D7596F /* AssertionRecorder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssertionRecorder.swift; path = Nimble/Adapters/AssertionRecorder.swift; sourceTree = "<group>"; };
BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
BEA1EFFE836005E11B9D420692E9E50C /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Quick/Example.swift; sourceTree = "<group>"; };
BEA6197381A1024ABCA41350D274417D /* Nimble.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BF4AE1E80CC4EA4F2E1FF17CA10A3D26 /* Nimble-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-umbrella.h"; sourceTree = "<group>"; };
BF9D717971793C12BA14C5764E468F76 /* Pods-Funnel_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Funnel_Example-umbrella.h"; sourceTree = "<group>"; };
C03BB6589A73F51F073DF050F55D7F41 /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = "<group>"; };
C0D4F567B88F8E3AC2223CFAB94332E5 /* Pods-Funnel_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Funnel_Tests.modulemap"; sourceTree = "<group>"; };
C28309C4F4E9B6CE84EA40634F09F67C /* Pods-Funnel_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Funnel_Example.release.xcconfig"; sourceTree = "<group>"; };
C3596BC98747CA625F2CD21F0C5E4144 /* Pods_Funnel_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Funnel_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
C8E9634CF58B22F95DF5AA222CDAF9B8 /* Nimble-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Nimble-dummy.m"; sourceTree = "<group>"; };
CD6892139A4E44DF95C89A6BE52900CE /* Nimble.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Nimble.modulemap; sourceTree = "<group>"; };
D0843BD7412E439120C081E8D9FE0F80 /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Nimble/Matchers/Match.swift; sourceTree = "<group>"; };
D17DFC0D37F8449B1B2A2D117D1179A2 /* DSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DSL.m; path = Nimble/objc/DSL.m; sourceTree = "<group>"; };
D4E0D7E2D11371A45CB3D1221E7B4EC2 /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Quick/Quick.h; sourceTree = "<group>"; };
D75276E4A134A22E123F4C40E529080C /* Equal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Equal.swift; path = Nimble/Matchers/Equal.swift; sourceTree = "<group>"; };
DA695A07DF17BA243064E57D889E1CBB /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Nimble/objc/DSL.h; sourceTree = "<group>"; };
E011C7464B5848B996122DA2BE725221 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
E2BC0728045ED4D4A2C12B52A561EEF7 /* ThrowError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThrowError.swift; path = Nimble/Matchers/ThrowError.swift; sourceTree = "<group>"; };
E31CE50F8B4B99D3C229D2438892ED5B /* Stringers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stringers.swift; path = Nimble/Utils/Stringers.swift; sourceTree = "<group>"; };
E351727CD07BB90B2A3CAE2C2433F6C5 /* 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; };
E3CD67A0263B5D926517C112081F48B2 /* BeGreaterThan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThan.swift; path = Nimble/Matchers/BeGreaterThan.swift; sourceTree = "<group>"; };
E41A31E4949F1319040B8D2BBBF2B5D6 /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Quick/DSL/QCKDSL.h; sourceTree = "<group>"; };
E43EEEBE209F0CF242FBC231937E6922 /* MatcherFunc.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MatcherFunc.swift; path = Nimble/Wrappers/MatcherFunc.swift; sourceTree = "<group>"; };
EB95D6EDE250641FCA8BE9501DD1C98B /* Funnel.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Funnel.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
ECB4882E47E7537D32F4C677DF4F0B43 /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Nimble/Adapters/AdapterProtocols.swift; sourceTree = "<group>"; };
F1D4A64A54F414359EC782444B27597B /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Quick/Configuration/QuickConfiguration.h; sourceTree = "<group>"; };
F517FA8EFFEFFF05CC4F7EEE8876BCAC /* Pods-Funnel_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Funnel_Tests.debug.xcconfig"; sourceTree = "<group>"; };
F5F4CE0DE16848CBDA8A93366A52BEF7 /* NMBExceptionCapture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NMBExceptionCapture.m; path = Nimble/objc/NMBExceptionCapture.m; sourceTree = "<group>"; };
F689A549CFB432AE0684F3EA3BA8D2FF /* Poll.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Poll.swift; path = Nimble/Utils/Poll.swift; sourceTree = "<group>"; };
F7FE6BD80E2769820B83F2550DAC4AAF /* ObjCExpectation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjCExpectation.swift; path = Nimble/ObjCExpectation.swift; sourceTree = "<group>"; };
FC9D0077C69A720B9DD2BB12344FD893 /* Quick-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-umbrella.h"; sourceTree = "<group>"; };
FD0AF5781847E82CEC8A2C6AEE2DBE57 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
FDA388FEA33C5B8824432D9681B318F3 /* DSL+Wait.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DSL+Wait.swift"; path = "Nimble/DSL+Wait.swift"; sourceTree = "<group>"; };
FF7511682ED488897012E4EEC14429BF /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Quick/Filter.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
17FA4DB95ECABD9A40BE1B3575A65328 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C3FFCDECCA300C52EC73167154676B71 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7FBD7B1537B634BB7C94BB4D4384BD63 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C150157922BAEB1F93635508FB59E618 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
A03AD4C3536E888D3CFA1DFB3CFFBE9E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
B6EB110EEDE72553B342767EB6DA930A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
59FE4E87C039366F7006ABE83EB0CD58 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C4343D1CDD392566FA2CB24D855E7B99 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
F500F3BF86B531CE61C22FAEEB422C39 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E75F5D17BCB7D8A5CD7C0069F20AA2F6 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
2479ACABBCEB7391C52BD1ECC3E918EB /* Foundation.framework in Frameworks */,
479C7F5A2E319AB413908DAFB8EEA0AF /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
0A60AB1F119A6010ED0AC25BD662F927 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
8A5573B8049F36E28DC1FC0200549E60 /* Pods-Funnel_Example */,
3488FEAD5A78E4D1D63A551D59503DAA /* Pods-Funnel_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
0C6B012983F9FEF8CC65C1318F5F090C /* iOS */ = {
isa = PBXGroup;
children = (
E351727CD07BB90B2A3CAE2C2433F6C5 /* Foundation.framework */,
279AA6492631DEFA8C439A9C088EEB8A /* XCTest.framework */,
);
name = iOS;
sourceTree = "<group>";
};
16F40755D50C39F84A302222E30E8DD2 /* Support Files */ = {
isa = PBXGroup;
children = (
28CBE0D19FC6E65EFAA29981A9422B23 /* Info.plist */,
021C4E135FFC34B4A74FD0560A640549 /* Quick.modulemap */,
7C07CB259CB51CAA2B1B59537C0A7C2C /* Quick.xcconfig */,
616BFD5BF73AEF373E5250D05560A338 /* Quick-dummy.m */,
3F1975D001BFB447009180BAF8C14ADB /* Quick-prefix.pch */,
FC9D0077C69A720B9DD2BB12344FD893 /* Quick-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Quick";
sourceTree = "<group>";
};
2E858509CC8010F364B8A0C5A9C30083 /* Support Files */ = {
isa = PBXGroup;
children = (
50F51DD2E3078D68A507D7B113644C41 /* Funnel.modulemap */,
174AA22AFC156D6555E055A62C6C9ACD /* Funnel.xcconfig */,
04D646BE83B043473F9B2993EF2E4F53 /* Funnel-dummy.m */,
2BA6ACF97E852A053DA9717DBF189DB6 /* Funnel-prefix.pch */,
0252867B128CDA4E49762765C6283A35 /* Funnel-umbrella.h */,
E011C7464B5848B996122DA2BE725221 /* Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/Funnel";
sourceTree = "<group>";
};
3488FEAD5A78E4D1D63A551D59503DAA /* Pods-Funnel_Tests */ = {
isa = PBXGroup;
children = (
38951D9AFD46D6EC1E718F5DC3EBCCE8 /* Info.plist */,
C0D4F567B88F8E3AC2223CFAB94332E5 /* Pods-Funnel_Tests.modulemap */,
1F05C7A62D359CB4C607336256CB4F48 /* Pods-Funnel_Tests-acknowledgements.markdown */,
297D75C934041FDD939B25CE7BCCD2D8 /* Pods-Funnel_Tests-acknowledgements.plist */,
8C9D2EAB117EAE2DAEE724F2AA7D71A6 /* Pods-Funnel_Tests-dummy.m */,
7A49795654C6F7E5815A703228913CB1 /* Pods-Funnel_Tests-frameworks.sh */,
5B966C2FD71AB6EDF5D33B480EC2473C /* Pods-Funnel_Tests-resources.sh */,
A09901588097894E4FFEE37665BCBD43 /* Pods-Funnel_Tests-umbrella.h */,
F517FA8EFFEFFF05CC4F7EEE8876BCAC /* Pods-Funnel_Tests.debug.xcconfig */,
15EFB060E875408599F664FCE0C6605A /* Pods-Funnel_Tests.release.xcconfig */,
);
name = "Pods-Funnel_Tests";
path = "Target Support Files/Pods-Funnel_Tests";
sourceTree = "<group>";
};
36FD97F93AB8E4D454DAB2C2051EC699 /* Support Files */ = {
isa = PBXGroup;
children = (
FD0AF5781847E82CEC8A2C6AEE2DBE57 /* Info.plist */,
CD6892139A4E44DF95C89A6BE52900CE /* Nimble.modulemap */,
B68A276C05A93CFCC331A055BCA33167 /* Nimble.xcconfig */,
C8E9634CF58B22F95DF5AA222CDAF9B8 /* Nimble-dummy.m */,
5D6A2E71DBC9D0DE17402BCFCFEEBDB2 /* Nimble-prefix.pch */,
BF4AE1E80CC4EA4F2E1FF17CA10A3D26 /* Nimble-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/Nimble";
sourceTree = "<group>";
};
433CD3331B6C3787F473C941B61FC68F /* Frameworks */ = {
isa = PBXGroup;
children = (
0C6B012983F9FEF8CC65C1318F5F090C /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
64E98FF7B6454214F8290BB0AC208D8F /* Quick */ = {
isa = PBXGroup;
children = (
4C6D6E41BA9F922E7BBD3A24B7E5D00A /* Callsite.swift */,
AE6E3634125A20B9BA58962919B08DDC /* Closures.swift */,
5BF695047E0AAFB3CA54EC10F0E97FD3 /* Configuration.swift */,
33DD2CC5441C4540A072B29E4A257A9D /* DSL.swift */,
BEA1EFFE836005E11B9D420692E9E50C /* Example.swift */,
B2005F86F2C2D05CDE00BB78EF02D6D4 /* ExampleGroup.swift */,
01F8C281E400A6FABAD082CEA7263B2A /* ExampleHooks.swift */,
38715BF4570032AE706B97AB11365E48 /* ExampleMetadata.swift */,
FF7511682ED488897012E4EEC14429BF /* Filter.swift */,
64F492985EB6550A418DD3DB1BCDE146 /* NSString+QCKSelectorName.h */,
20ABC5A3D02301EC1EC014B6ABEFA42A /* NSString+QCKSelectorName.m */,
E41A31E4949F1319040B8D2BBBF2B5D6 /* QCKDSL.h */,
2543809E4D3D9755B94735346ACDFF03 /* QCKDSL.m */,
D4E0D7E2D11371A45CB3D1221E7B4EC2 /* Quick.h */,
F1D4A64A54F414359EC782444B27597B /* QuickConfiguration.h */,
AE670FBBCC7FBB0E81F05DA0C8EAAEE5 /* QuickConfiguration.m */,
8880B82EFD81A0D6EE2BBD27A39D61BA /* QuickSpec.h */,
62241019A9DFE31F82A2CDF8690A163C /* QuickSpec.m */,
64F0BEE5B67844F0E333920C2CB3416C /* SuiteHooks.swift */,
4C0EAA5BA062125C64E6A819695F87C6 /* World.h */,
8487245080A1AB0FFD48288B814AEA82 /* World.swift */,
94A039912FDC46FCB2AF6DCEEB91ADB4 /* World+DSL.h */,
6DDA3CDE7515A11BE56C6C2FE5FB65D8 /* World+DSL.swift */,
16F40755D50C39F84A302222E30E8DD2 /* Support Files */,
);
path = Quick;
sourceTree = "<group>";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */,
F788D364B75A5D5ED739E0FEC92F040A /* Development Pods */,
433CD3331B6C3787F473C941B61FC68F /* Frameworks */,
8F29E9621F2E4347FEA6F6D7F0748038 /* Pods */,
F14117ABE5AA03DDCC7FA0E304E45DBE /* Products */,
0A60AB1F119A6010ED0AC25BD662F927 /* Targets Support Files */,
);
sourceTree = "<group>";
};
8A5573B8049F36E28DC1FC0200549E60 /* Pods-Funnel_Example */ = {
isa = PBXGroup;
children = (
7BA6AF683C48C4E7A13543795097F1A4 /* Info.plist */,
1F6952F77C0D2CD938EBF46961B1CC8C /* Pods-Funnel_Example.modulemap */,
3A2BEC7D155E5221D2FDE657DD8515CC /* Pods-Funnel_Example-acknowledgements.markdown */,
A52859469AC6739CDEEBADC064EF51F4 /* Pods-Funnel_Example-acknowledgements.plist */,
125791D75A1F60C2BA9DD05B3921E34A /* Pods-Funnel_Example-dummy.m */,
2F431164DB6F2B0A63AD4763C5C643BF /* Pods-Funnel_Example-frameworks.sh */,
A99087E711417971A6730640F02AAC8E /* Pods-Funnel_Example-resources.sh */,
BF9D717971793C12BA14C5764E468F76 /* Pods-Funnel_Example-umbrella.h */,
2989637FC850A7CB3E915CC5850ED6C1 /* Pods-Funnel_Example.debug.xcconfig */,
C28309C4F4E9B6CE84EA40634F09F67C /* Pods-Funnel_Example.release.xcconfig */,
);
name = "Pods-Funnel_Example";
path = "Target Support Files/Pods-Funnel_Example";
sourceTree = "<group>";
};
8D1B480816191DD20C1F7002C61781F0 /* Pod */ = {
isa = PBXGroup;
children = (
C964E863DF08E0394851937299F18B31 /* Classes */,
);
path = Pod;
sourceTree = "<group>";
};
8F29E9621F2E4347FEA6F6D7F0748038 /* Pods */ = {
isa = PBXGroup;
children = (
D877BEEDC4F6494B4B10BC732B32A32B /* Nimble */,
64E98FF7B6454214F8290BB0AC208D8F /* Quick */,
);
name = Pods;
sourceTree = "<group>";
};
C01592F17C682EA3EADF23F9EEAA7662 /* Funnel */ = {
isa = PBXGroup;
children = (
8D1B480816191DD20C1F7002C61781F0 /* Pod */,
2E858509CC8010F364B8A0C5A9C30083 /* Support Files */,
);
name = Funnel;
path = ../..;
sourceTree = "<group>";
};
C964E863DF08E0394851937299F18B31 /* Classes */ = {
isa = PBXGroup;
children = (
A24F59BB6834896D4272604473C479FD /* FunnelChart.swift */,
);
path = Classes;
sourceTree = "<group>";
};
D877BEEDC4F6494B4B10BC732B32A32B /* Nimble */ = {
isa = PBXGroup;
children = (
ECB4882E47E7537D32F4C677DF4F0B43 /* AdapterProtocols.swift */,
4F2CCEF958AF4E4C4F073031905F2CE2 /* AllPass.swift */,
0B0C995C72A44C02A9369FA2BDB1F4FF /* AssertionDispatcher.swift */,
B84D274316F8C6F9695294FB40D7596F /* AssertionRecorder.swift */,
1D42013D479CDC11E7882C7C0045B66B /* AsyncMatcherWrapper.swift */,
0B53DF3C5B85F993313E9FA09386C167 /* BeAKindOf.swift */,
13064CC241598F189B1341470994F9D9 /* BeAnInstanceOf.swift */,
29A378AC6A7BCB5D43F7586353A7610A /* BeCloseTo.swift */,
2FE24AE8654BDA8234080C23F6335E26 /* BeEmpty.swift */,
58CD57ED9D79412A49A037E8EAA4AF42 /* BeginWith.swift */,
E3CD67A0263B5D926517C112081F48B2 /* BeGreaterThan.swift */,
C03BB6589A73F51F073DF050F55D7F41 /* BeGreaterThanOrEqualTo.swift */,
69A1AA2E4CDFA7B6FD9B4F253CAF481F /* BeIdenticalTo.swift */,
69578BBC16AAA12ED9630E2036580E94 /* BeLessThan.swift */,
8E12C6F645E5DC0EDB23023A394F1CB1 /* BeLessThanOrEqual.swift */,
B011BCE1507648ECA7586CF7DABF6F4C /* BeLogical.swift */,
02297D692E5CA1B1C21CCCDA1853BA44 /* BeNil.swift */,
6727AA774C6723AFCA6CFCEF099071C7 /* Contain.swift */,
DA695A07DF17BA243064E57D889E1CBB /* DSL.h */,
D17DFC0D37F8449B1B2A2D117D1179A2 /* DSL.m */,
2B9040AB08CA7AEB727960E284F746A4 /* DSL.swift */,
FDA388FEA33C5B8824432D9681B318F3 /* DSL+Wait.swift */,
1E8B6303CCFDEBF93094E92D50CAFF38 /* EndWith.swift */,
D75276E4A134A22E123F4C40E529080C /* Equal.swift */,
B3116FC3DA077740D1C5702FA4C187A2 /* Expectation.swift */,
227AD60FAC82B3DEDDBB09BAEE052647 /* Expression.swift */,
25961731CF4F7537A5ECD61A000A150C /* FailureMessage.swift */,
28E302676FFF0A4192E3ECFB4B1FDCF6 /* Functional.swift */,
54BC3268759E7DB38A0E192F06A1BD06 /* HaveCount.swift */,
D0843BD7412E439120C081E8D9FE0F80 /* Match.swift */,
E43EEEBE209F0CF242FBC231937E6922 /* MatcherFunc.swift */,
28D0DF7E7A59098355B7877A39D254B6 /* MatcherProtocols.swift */,
784135A9193F0FE38182AF2C577B3A52 /* Nimble.h */,
5596CB4CEA7B7B71461C9ECE75263656 /* NimbleXCTestHandler.swift */,
40FBD52025077E5788ADCE71EF040393 /* NMBExceptionCapture.h */,
F5F4CE0DE16848CBDA8A93366A52BEF7 /* NMBExceptionCapture.m */,
F7FE6BD80E2769820B83F2550DAC4AAF /* ObjCExpectation.swift */,
73B922FF75D982F502B345AE30399F97 /* ObjCMatcher.swift */,
F689A549CFB432AE0684F3EA3BA8D2FF /* Poll.swift */,
88457B3A5C81E0F34AC48AC05B8040D6 /* RaisesException.swift */,
4930275AC98E3FD0F3BC81A7D08B8591 /* SourceLocation.swift */,
E31CE50F8B4B99D3C229D2438892ED5B /* Stringers.swift */,
E2BC0728045ED4D4A2C12B52A561EEF7 /* ThrowError.swift */,
36FD97F93AB8E4D454DAB2C2051EC699 /* Support Files */,
);
path = Nimble;
sourceTree = "<group>";
};
F14117ABE5AA03DDCC7FA0E304E45DBE /* Products */ = {
isa = PBXGroup;
children = (
EB95D6EDE250641FCA8BE9501DD1C98B /* Funnel.bundle */,
B499523C9285A0715366B8763E8A17BD /* Funnel.framework */,
BEA6197381A1024ABCA41350D274417D /* Nimble.framework */,
1E9D2F8F30AD69245FA8CD5D5A815165 /* Pods_Funnel_Example.framework */,
C3596BC98747CA625F2CD21F0C5E4144 /* Pods_Funnel_Tests.framework */,
8B886AB8E0B2D6046AC154AE63A6EDF5 /* Quick.framework */,
);
name = Products;
sourceTree = "<group>";
};
F788D364B75A5D5ED739E0FEC92F040A /* Development Pods */ = {
isa = PBXGroup;
children = (
C01592F17C682EA3EADF23F9EEAA7662 /* Funnel */,
);
name = "Development Pods";
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
5C4ED604754101442557A6C541A8F61F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
66AF5C3D4739ABC4740167CEB6F52098 /* Pods-Funnel_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
AC4B05A321EB343A68ED4DC1A838DA6C /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
08082797197F4F4E97CFCAEEEFA33B61 /* Funnel-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D1787D2BB78CF1631FD89754A330D03F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
9ADD3455BFCF72CF833DB3ED6412FA5E /* Pods-Funnel_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
DB6EB32E88120AB402EC81C13F855C0B /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
D9219E251FB4D963A8E88C70F7A900DC /* NSString+QCKSelectorName.h in Headers */,
2705B450A4663ED428BAA8E703172BAC /* QCKDSL.h in Headers */,
52129F58DDE1C8902D50E4168D441F68 /* Quick-umbrella.h in Headers */,
65DFB9B3FD7C5246F9AF97586D5FFD54 /* Quick.h in Headers */,
FDAE2CECA08839699079796C864A41E0 /* QuickConfiguration.h in Headers */,
F4A9DBE93D2706D719A8C535C2DB4BEB /* QuickSpec.h in Headers */,
686851F75CDF412F6FF5E299105BCAC7 /* World+DSL.h in Headers */,
1178B4EC0A142700678F5FAAA59A3C00 /* World.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 */
0CBED300D22F7ADCBAC702DFA2D29065 /* Funnel */ = {
isa = PBXNativeTarget;
buildConfigurationList = 62EB1BA3E09AE1025E62C9D446E943A6 /* Build configuration list for PBXNativeTarget "Funnel" */;
buildPhases = (
692BAE5364E48B98388266C14A345B72 /* Sources */,
C4343D1CDD392566FA2CB24D855E7B99 /* Frameworks */,
77B6E33A6E22D1FCD90B5E305FD1ADE4 /* Resources */,
AC4B05A321EB343A68ED4DC1A838DA6C /* Headers */,
);
buildRules = (
);
dependencies = (
57B890631D0C011156DB892C42B518C5 /* PBXTargetDependency */,
);
name = Funnel;
productName = Funnel;
productReference = B499523C9285A0715366B8763E8A17BD /* Funnel.framework */;
productType = "com.apple.product-type.framework";
};
98FB75A0AECA5AACD63650D0803E239D /* Funnel-Funnel */ = {
isa = PBXNativeTarget;
buildConfigurationList = 76D5103FE52151F30B03C18BFA89B9D4 /* Build configuration list for PBXNativeTarget "Funnel-Funnel" */;
buildPhases = (
64B10FCC525A7FCFACE2C5FABB5DAFA4 /* Sources */,
A03AD4C3536E888D3CFA1DFB3CFFBE9E /* Frameworks */,
B946DB6354CC91AC97FF2948864E0DAB /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "Funnel-Funnel";
productName = "Funnel-Funnel";
productReference = EB95D6EDE250641FCA8BE9501DD1C98B /* Funnel.bundle */;
productType = "com.apple.product-type.bundle";
};
A1A7AAAC67C8F201527E0F7A4FFB916D /* Quick */ = {
isa = PBXNativeTarget;
buildConfigurationList = E2D0E5A711DFFFBA1BF6A4A067403ADC /* Build configuration list for PBXNativeTarget "Quick" */;
buildPhases = (
D8E7B844FA5AFD81DC7218B02AFF19C9 /* Sources */,
E75F5D17BCB7D8A5CD7C0069F20AA2F6 /* Frameworks */,
DB6EB32E88120AB402EC81C13F855C0B /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = Quick;
productName = Quick;
productReference = 8B886AB8E0B2D6046AC154AE63A6EDF5 /* Quick.framework */;
productType = "com.apple.product-type.framework";
};
C1E6DE3071C2D2703BA46AA3225C56DE /* Pods-Funnel_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = F88FD65AA60AA52C934D360AD7E95858 /* Build configuration list for PBXNativeTarget "Pods-Funnel_Tests" */;
buildPhases = (
837E174FD67CAD954529E6D150235230 /* Sources */,
B6EB110EEDE72553B342767EB6DA930A /* Frameworks */,
5C4ED604754101442557A6C541A8F61F /* Headers */,
);
buildRules = (
);
dependencies = (
41BC65CF3FDACA91153FEEAB7DFFA528 /* PBXTargetDependency */,
E12B4A9C5EEBD40C312CA2B1F725FB07 /* PBXTargetDependency */,
00B8C02AE516A01FCA0D05E95B681E02 /* PBXTargetDependency */,
);
name = "Pods-Funnel_Tests";
productName = "Pods-Funnel_Tests";
productReference = C3596BC98747CA625F2CD21F0C5E4144 /* Pods_Funnel_Tests.framework */;
productType = "com.apple.product-type.framework";
};
C5DB5104FED3C10F78978AFC810982B9 /* Nimble */ = {
isa = PBXNativeTarget;
buildConfigurationList = D4DCEA35595251EC6B9BDC29A571E7B2 /* Build configuration list for PBXNativeTarget "Nimble" */;
buildPhases = (
CC264E557A8A184C30ECCED31C74BB34 /* Sources */,
7FBD7B1537B634BB7C94BB4D4384BD63 /* Frameworks */,
E558CFA5C045F339837B0B7645133081 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = Nimble;
productName = Nimble;
productReference = BEA6197381A1024ABCA41350D274417D /* Nimble.framework */;
productType = "com.apple.product-type.framework";
};
FDC324CB5ACCB0ADC1E58F983E558FAD /* Pods-Funnel_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 7A370091F83E856C652C87FF87AF3221 /* Build configuration list for PBXNativeTarget "Pods-Funnel_Example" */;
buildPhases = (
D96F0B5060451BE5095A9B82E0F2FF91 /* Sources */,
17FA4DB95ECABD9A40BE1B3575A65328 /* Frameworks */,
D1787D2BB78CF1631FD89754A330D03F /* Headers */,
);
buildRules = (
);
dependencies = (
2827C72B87F66495E40E50A2F27A6FC2 /* PBXTargetDependency */,
);
name = "Pods-Funnel_Example";
productName = "Pods-Funnel_Example";
productReference = 1E9D2F8F30AD69245FA8CD5D5A815165 /* Pods_Funnel_Example.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0700;
LastUpgradeCheck = 0700;
};
buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
productRefGroup = F14117ABE5AA03DDCC7FA0E304E45DBE /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
0CBED300D22F7ADCBAC702DFA2D29065 /* Funnel */,
98FB75A0AECA5AACD63650D0803E239D /* Funnel-Funnel */,
C5DB5104FED3C10F78978AFC810982B9 /* Nimble */,
FDC324CB5ACCB0ADC1E58F983E558FAD /* Pods-Funnel_Example */,
C1E6DE3071C2D2703BA46AA3225C56DE /* Pods-Funnel_Tests */,
A1A7AAAC67C8F201527E0F7A4FFB916D /* Quick */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
77B6E33A6E22D1FCD90B5E305FD1ADE4 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
70788D98A7635C22E4735C9EA7EAEFC1 /* Funnel.bundle in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
B946DB6354CC91AC97FF2948864E0DAB /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
64B10FCC525A7FCFACE2C5FABB5DAFA4 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
692BAE5364E48B98388266C14A345B72 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2AA0B2264C5DAA3AB37B552E66488A06 /* Funnel-dummy.m in Sources */,
076233DE7D0E141C9D395A9B06E57BCB /* FunnelChart.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
837E174FD67CAD954529E6D150235230 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
4F740BF57A295559D70A7F9DF87443A7 /* Pods-Funnel_Tests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
CC264E557A8A184C30ECCED31C74BB34 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
CAAED5FB81DB035A9EC080917C783FA6 /* AdapterProtocols.swift in Sources */,
D429691F39B4C30A8993360FB8A3E334 /* AllPass.swift in Sources */,
33514FEE6EA65605EFB6F1801834B692 /* AssertionDispatcher.swift in Sources */,
E6E7B15FAD6C56681511813DB2666478 /* AssertionRecorder.swift in Sources */,
0A6E71555F55082003A3DB2B03CA85D2 /* AsyncMatcherWrapper.swift in Sources */,
77128C0365A98E3BAC038A915B38791C /* BeAKindOf.swift in Sources */,
7A6E2730A25A55D8DFA74D3D7CB005EF /* BeAnInstanceOf.swift in Sources */,
B905718B2501DDA22F2AE73CB6E76E6B /* BeCloseTo.swift in Sources */,
9E7786C034F0E0A6B5F0A0E6BE7D7E4A /* BeEmpty.swift in Sources */,
9646787942A85613FE77F45794E9B5CD /* BeginWith.swift in Sources */,
1E28F9362956B758C4C981D3C1129C90 /* BeGreaterThan.swift in Sources */,
33264C6A7A3536AD91EF42B3E8CC8220 /* BeGreaterThanOrEqualTo.swift in Sources */,
7680F08C43B965EC873D26E6AD854C9F /* BeIdenticalTo.swift in Sources */,
BCB53F24DCADF12601B8BA90AE3190AE /* BeLessThan.swift in Sources */,
4E87C6AE24AB15700A39FC24A2F1C93B /* BeLessThanOrEqual.swift in Sources */,
02DF5BD2281BA10105A447F95FCF8CF3 /* BeLogical.swift in Sources */,
F1D4A8A1FC68EFA7F45945908D70A352 /* BeNil.swift in Sources */,
B41E8E775408ACE233F29CE93388B270 /* Contain.swift in Sources */,
DEE170DD3064F7343884A4016546B762 /* DSL+Wait.swift in Sources */,
B0A26F58BA3E6222E50AE5AC883B8EAF /* DSL.m in Sources */,
58EBA2C1A43283FB2188AB1FB592D32B /* DSL.swift in Sources */,
3A92AEE86034356AF8987F20EE1F82DF /* EndWith.swift in Sources */,
FB1347627E64CA7E98C19DC985E13D95 /* Equal.swift in Sources */,
E2FBD93D72DF01427486D1A6853FC689 /* Expectation.swift in Sources */,
C63AB521EA514A811A167E507C0CF9AD /* Expression.swift in Sources */,
0492354DA7EF0C9068F7B4E8F74001B0 /* FailureMessage.swift in Sources */,
D7B45D4600C6166C124C0A926EE65284 /* Functional.swift in Sources */,
BB4F35062294C1A461DA3CEF6306A1DB /* HaveCount.swift in Sources */,
E36C5201AE7F1CBB25F9D2E7CBFC3C20 /* Match.swift in Sources */,
3AEAC447B09E7AABC140654C8529BC94 /* MatcherFunc.swift in Sources */,
C9AC658F3FCB67B50E96313C2687B33D /* MatcherProtocols.swift in Sources */,
73695FA6A6CDFBB13C0CC73C2E5126C0 /* Nimble-dummy.m in Sources */,
831D33A4C5C5BBC1EC158D9A236C61D7 /* NimbleXCTestHandler.swift in Sources */,
9187EEC2982DB82AD8D3A7001AA647D6 /* NMBExceptionCapture.m in Sources */,
CD9D31B6063C50689EAC2A0745C282DC /* ObjCExpectation.swift in Sources */,
7BFD25B1BB1116D8AC47E2C3874C5B76 /* ObjCMatcher.swift in Sources */,
8D0BF52FF564A170A3D1DE28C27B233E /* Poll.swift in Sources */,
FFC311AC1E19A23E0EB7B1B3A7A5A744 /* RaisesException.swift in Sources */,
7DA9FF8513AA48310B15A0744A541818 /* SourceLocation.swift in Sources */,
F10FD3129985704FA1610F84FB98EDF5 /* Stringers.swift in Sources */,
2D3B916F7168E9412EDB95BA203A5BB4 /* ThrowError.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D8E7B844FA5AFD81DC7218B02AFF19C9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
F7A46BA5C4A1A82596BDB8AE216183E9 /* Callsite.swift in Sources */,
7E12F5CA1F1A9D6C495EC0E1AEC04D9C /* Closures.swift in Sources */,
06A00C31A4D58C8A3C651700DF592C93 /* Configuration.swift in Sources */,
F89370EF14FE5A904A8C794B5F663D97 /* DSL.swift in Sources */,
A50F4C511D2ADED48C89E54E931802B9 /* Example.swift in Sources */,
DF7380A71376BE6AEAD3DA35A4FB4BC4 /* ExampleGroup.swift in Sources */,
FD028877D8DB335D188D67BA99F5A4A4 /* ExampleHooks.swift in Sources */,
48CFA2936275CCEAA68957F238B84D21 /* ExampleMetadata.swift in Sources */,
66DCA10DDBD203C63CA8C05F3B304FA3 /* Filter.swift in Sources */,
F83B408EB3FFF4A1FB9D18587C666E78 /* NSString+QCKSelectorName.m in Sources */,
9E0479D08A7FB0AF5CA08F0AA011EC23 /* QCKDSL.m in Sources */,
4059EF96B3BCC0A089188ECE4CA03CA6 /* Quick-dummy.m in Sources */,
E01F3E8F7DDA3132B04B55B547579368 /* QuickConfiguration.m in Sources */,
6F532B50A4F638B4DA509350D65F9DBE /* QuickSpec.m in Sources */,
638F167F8F9286EA35DB5D7E01318074 /* SuiteHooks.swift in Sources */,
0E8E6629711A0EAAE1A7267191EDD97F /* World+DSL.swift in Sources */,
4113759073E2DFF0CA7DC9CBB1DD7CEB /* World.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D96F0B5060451BE5095A9B82E0F2FF91 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
58659F68593EF7DFEA84A3517B97BB64 /* Pods-Funnel_Example-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
00B8C02AE516A01FCA0D05E95B681E02 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Quick;
target = A1A7AAAC67C8F201527E0F7A4FFB916D /* Quick */;
targetProxy = D1155EEBF8B391B54C32F07EDDC5C505 /* PBXContainerItemProxy */;
};
2827C72B87F66495E40E50A2F27A6FC2 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Funnel;
target = 0CBED300D22F7ADCBAC702DFA2D29065 /* Funnel */;
targetProxy = 1C72CB209CA9384E37FFDA1EA0F5BCFF /* PBXContainerItemProxy */;
};
41BC65CF3FDACA91153FEEAB7DFFA528 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Funnel;
target = 0CBED300D22F7ADCBAC702DFA2D29065 /* Funnel */;
targetProxy = D1E5F0609DD5F3FF75BB80077D5465E4 /* PBXContainerItemProxy */;
};
57B890631D0C011156DB892C42B518C5 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Funnel-Funnel";
target = 98FB75A0AECA5AACD63650D0803E239D /* Funnel-Funnel */;
targetProxy = 4DD96195450D16E7C820E951220F7F0E /* PBXContainerItemProxy */;
};
E12B4A9C5EEBD40C312CA2B1F725FB07 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Nimble;
target = C5DB5104FED3C10F78978AFC810982B9 /* Nimble */;
targetProxy = E27CBECDEA9B85BF35839936131C3533 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
10DE1947DAC0ED28F6C0A9F9BD75D546 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1";
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
STRIP_INSTALLED_PRODUCT = NO;
SYMROOT = "${SRCROOT}/../build";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
35227D3BFE69C608E4227CB96AA15977 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 2989637FC850A7CB3E915CC5850ED6C1 /* Pods-Funnel_Example.debug.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
INFOPLIST_FILE = "Target Support Files/Pods-Funnel_Example/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-Funnel_Example/Pods-Funnel_Example.modulemap";
MTL_ENABLE_DEBUG_INFO = YES;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_NAME = Pods_Funnel_Example;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
3A931A7644CC926D3162E0BA9E4ACFA6 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = B68A276C05A93CFCC331A055BCA33167 /* Nimble.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_PREFIX_HEADER = "Target Support Files/Nimble/Nimble-prefix.pch";
INFOPLIST_FILE = "Target Support Files/Nimble/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/Nimble/Nimble.modulemap";
MTL_ENABLE_DEBUG_INFO = YES;
PRODUCT_NAME = Nimble;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";