-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject_LOCAL_24667.pbxproj
1427 lines (1414 loc) · 90.3 KB
/
project_LOCAL_24667.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 */
00B19E456452110B1C7E27384A3BEBDD /* NSString+QCKSelectorName.m in Sources */ = {isa = PBXBuildFile; fileRef = 20ABC5A3D02301EC1EC014B6ABEFA42A /* NSString+QCKSelectorName.m */; };
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 */; };
0A6E71555F55082003A3DB2B03CA85D2 /* AsyncMatcherWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D42013D479CDC11E7882C7C0045B66B /* AsyncMatcherWrapper.swift */; };
0C5CEF304748224C049B0E97ADE09F96 /* SimplePresentationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 438E2CE60375719DEAB393CA5F4ACC26 /* SimplePresentationController.swift */; };
0F49254A4C560DD4696936F6080756DC /* Nimble-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4AE1E80CC4EA4F2E1FF17CA10A3D26 /* Nimble-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
1E28F9362956B758C4C981D3C1129C90 /* BeGreaterThan.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3CD67A0263B5D926517C112081F48B2 /* BeGreaterThan.swift */; };
2D3B916F7168E9412EDB95BA203A5BB4 /* ThrowError.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2BC0728045ED4D4A2C12B52A561EEF7 /* ThrowError.swift */; };
2E260489735F606019E500CD8BDADCE1 /* Pods-SimpleTransition_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3607C4A1FBBDC2EAF1787FF9677839D4 /* Pods-SimpleTransition_Example-dummy.m */; };
33264C6A7A3536AD91EF42B3E8CC8220 /* BeGreaterThanOrEqualTo.swift in Sources */ = {isa = PBXBuildFile; fileRef = C03BB6589A73F51F073DF050F55D7F41 /* BeGreaterThanOrEqualTo.swift */; };
33514FEE6EA65605EFB6F1801834B692 /* AssertionDispatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B0C995C72A44C02A9369FA2BDB1F4FF /* AssertionDispatcher.swift */; };
36F9605F37F129F6E74F9BDEE31E32EA /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE6E3634125A20B9BA58962919B08DDC /* Closures.swift */; };
398C1E55768BD2ABB0C129AD13DAFF44 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AAC405455F8E20BD0434D9D3E3D2879A /* Foundation.framework */; };
3A92AEE86034356AF8987F20EE1F82DF /* EndWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E8B6303CCFDEBF93094E92D50CAFF38 /* EndWith.swift */; };
3AEAC447B09E7AABC140654C8529BC94 /* MatcherFunc.swift in Sources */ = {isa = PBXBuildFile; fileRef = E43EEEBE209F0CF242FBC231937E6922 /* MatcherFunc.swift */; };
3B00E5F1641B837C6818444D4CBD6C07 /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01F8C281E400A6FABAD082CEA7263B2A /* ExampleHooks.swift */; };
3B1614DE540275FF023F52C29D1178B3 /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEA1EFFE836005E11B9D420692E9E50C /* Example.swift */; };
3D1A9715887F12053AE265FFE9AB6C52 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B89BF7315BAB3516AF2A51041DC39C3B /* XCTest.framework */; };
464AE44912454E9066420C20586DA926 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AAC405455F8E20BD0434D9D3E3D2879A /* Foundation.framework */; };
4E87C6AE24AB15700A39FC24A2F1C93B /* BeLessThanOrEqual.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E12C6F645E5DC0EDB23023A394F1CB1 /* BeLessThanOrEqual.swift */; };
4ED3B02DD6D8C38A6B0401FDB6977937 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AAC405455F8E20BD0434D9D3E3D2879A /* Foundation.framework */; };
4EF94FE58D5DC224294EA175A4B29897 /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2005F86F2C2D05CDE00BB78EF02D6D4 /* ExampleGroup.swift */; };
512DFAE728521F02AF225F0082195DCC /* Nimble.h in Headers */ = {isa = PBXBuildFile; fileRef = 784135A9193F0FE38182AF2C577B3A52 /* Nimble.h */; settings = {ATTRIBUTES = (Public, ); }; };
58EBA2C1A43283FB2188AB1FB592D32B /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B9040AB08CA7AEB727960E284F746A4 /* DSL.swift */; };
6608C9D2D246873492FEC88A7A25B7E1 /* Pods-SimpleTransition_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FC22FD78066B3D9C171AEBBE90CB81 /* Pods-SimpleTransition_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
69EB53CD8C261A32C57E4C735850CE4B /* SimpleTransition.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 82E7240F4194B37903AF5B4BF897C8B1 /* SimpleTransition.bundle */; };
6A6DECC705C9F8A61AEFBC844E4ED15A /* Pods-SimpleTransition_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 24CB3AC9F780CE341ACC286F9E9BA297 /* Pods-SimpleTransition_Tests-dummy.m */; };
6AAA9C65813403C56620365D44E7EE60 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AAC405455F8E20BD0434D9D3E3D2879A /* Foundation.framework */; };
72BB49633586BF038A386713031D30B0 /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = 2543809E4D3D9755B94735346ACDFF03 /* QCKDSL.m */; };
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 */; };
78095F10F8BDF06D23F336908D803288 /* SimpleTransition-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 95BABEE4CF317AFF3BBE04B87567BAFA /* SimpleTransition-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
7A3CA55015CF353811FAD390FB7CBB4B /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BF695047E0AAFB3CA54EC10F0E97FD3 /* Configuration.swift */; };
7A6E2730A25A55D8DFA74D3D7CB005EF /* BeAnInstanceOf.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13064CC241598F189B1341470994F9D9 /* BeAnInstanceOf.swift */; };
7B353793692546C62CBAA978D82BFB56 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 8880B82EFD81A0D6EE2BBD27A39D61BA /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; };
7B689F54294A41ED6FA5BD9910C0E12A /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33DD2CC5441C4540A072B29E4A257A9D /* DSL.swift */; };
7BFD25B1BB1116D8AC47E2C3874C5B76 /* ObjCMatcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73B922FF75D982F502B345AE30399F97 /* ObjCMatcher.swift */; };
7DA9FF8513AA48310B15A0744A541818 /* SourceLocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4930275AC98E3FD0F3BC81A7D08B8591 /* SourceLocation.swift */; };
831D33A4C5C5BBC1EC158D9A236C61D7 /* NimbleXCTestHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5596CB4CEA7B7B71461C9ECE75263656 /* NimbleXCTestHandler.swift */; };
83BBBDA72AF6F731C8D84E98BCD23FDC /* Pods-SimpleTransition_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EA1932A388667E03726F62A94FD43AC5 /* Pods-SimpleTransition_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
875C051B922A684C27FF2233780CC9D0 /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = AE670FBBCC7FBB0E81F05DA0C8EAAEE5 /* QuickConfiguration.m */; };
8BBC25C8F214B78DFB679DB828F10534 /* NSString+QCKSelectorName.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F492985EB6550A418DD3DB1BCDE146 /* NSString+QCKSelectorName.h */; settings = {ATTRIBUTES = (Project, ); }; };
8D0BF52FF564A170A3D1DE28C27B233E /* Poll.swift in Sources */ = {isa = PBXBuildFile; fileRef = F689A549CFB432AE0684F3EA3BA8D2FF /* Poll.swift */; };
8E33F174A05B78B85AB5C65A5BD9E456 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF7511682ED488897012E4EEC14429BF /* Filter.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 */; };
97116CA77F18249E303562E1D2A32590 /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64F0BEE5B67844F0E333920C2CB3416C /* SuiteHooks.swift */; };
9CCACC4A5A42F0A8847DC37A9C0DA722 /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = E41A31E4949F1319040B8D2BBBF2B5D6 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
9E7786C034F0E0A6B5F0A0E6BE7D7E4A /* BeEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FE24AE8654BDA8234080C23F6335E26 /* BeEmpty.swift */; };
A4205CB9168AF6427408D8BCCEC946C6 /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DDA3CDE7515A11BE56C6C2FE5FB65D8 /* World+DSL.swift */; };
A464E5E7F7F1057FFD168B56EEB50466 /* SimpleTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897F809DA8A73D6A535CB4421B304499 /* SimpleTransition.swift */; };
A67B2A3A87D5C65EB76EDFAAA61A1306 /* World.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C0EAA5BA062125C64E6A819695F87C6 /* World.h */; settings = {ATTRIBUTES = (Project, ); }; };
AAD4E131999865FC11CD107477BE4061 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8487245080A1AB0FFD48288B814AEA82 /* World.swift */; };
B0A26F58BA3E6222E50AE5AC883B8EAF /* DSL.m in Sources */ = {isa = PBXBuildFile; fileRef = D17DFC0D37F8449B1B2A2D117D1179A2 /* DSL.m */; };
B2742E4C4FA19E57231A1858AA3C071D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AAC405455F8E20BD0434D9D3E3D2879A /* Foundation.framework */; };
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 */; };
BF5C4F89EAA7EB5C79ACD26F6EA2A31C /* SimpleTransition-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C61B4E6F36C4C9D3202372D15879189C /* SimpleTransition-dummy.m */; };
C63AB521EA514A811A167E507C0CF9AD /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 227AD60FAC82B3DEDDBB09BAEE052647 /* Expression.swift */; };
C8CEEE539AF16CACD8EDB6DABF5992D2 /* Quick-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 616BFD5BF73AEF373E5250D05560A338 /* Quick-dummy.m */; };
C9AC658F3FCB67B50E96313C2687B33D /* MatcherProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28D0DF7E7A59098355B7877A39D254B6 /* MatcherProtocols.swift */; };
CAAED5FB81DB035A9EC080917C783FA6 /* AdapterProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECB4882E47E7537D32F4C677DF4F0B43 /* AdapterProtocols.swift */; };
CB2F12C716555223990C3723A83755A9 /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C6D6E41BA9F922E7BBD3A24B7E5D00A /* Callsite.swift */; };
CD9D31B6063C50689EAC2A0745C282DC /* ObjCExpectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7FE6BD80E2769820B83F2550DAC4AAF /* ObjCExpectation.swift */; };
D429691F39B4C30A8993360FB8A3E334 /* AllPass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F2CCEF958AF4E4C4F073031905F2CE2 /* AllPass.swift */; };
D5B40296D2171EA1DA1A82FBBFC5CAE4 /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E0D7E2D11371A45CB3D1221E7B4EC2 /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; };
D641D99E6F8ACAB746DFA93737F54BC2 /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38715BF4570032AE706B97AB11365E48 /* ExampleMetadata.swift */; };
D7B45D4600C6166C124C0A926EE65284 /* Functional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28E302676FFF0A4192E3ECFB4B1FDCF6 /* Functional.swift */; };
DEE170DD3064F7343884A4016546B762 /* DSL+Wait.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDA388FEA33C5B8824432D9681B318F3 /* DSL+Wait.swift */; };
E2FBD93D72DF01427486D1A6853FC689 /* Expectation.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3116FC3DA077740D1C5702FA4C187A2 /* Expectation.swift */; };
E36C5201AE7F1CBB25F9D2E7CBFC3C20 /* Match.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0843BD7412E439120C081E8D9FE0F80 /* Match.swift */; };
E670D4BD63878ABDDB38D30B891FE154 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 62241019A9DFE31F82A2CDF8690A163C /* QuickSpec.m */; };
E6E7B15FAD6C56681511813DB2666478 /* AssertionRecorder.swift in Sources */ = {isa = PBXBuildFile; fileRef = B84D274316F8C6F9695294FB40D7596F /* AssertionRecorder.swift */; };
E79C4C5B514FFB9CC4F3E3BB21D6E2A8 /* World+DSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 94A039912FDC46FCB2AF6DCEEB91ADB4 /* World+DSL.h */; settings = {ATTRIBUTES = (Project, ); }; };
EB8BB44A45B1B48898D00AAFA27E90D0 /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = F1D4A64A54F414359EC782444B27597B /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
EC2293EFF82A9CE5CFDF04FD28F162CD /* TransformAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDC07861EEC9189B68FB1E0D909D611A /* TransformAnimator.swift */; };
F10FD3129985704FA1610F84FB98EDF5 /* Stringers.swift in Sources */ = {isa = PBXBuildFile; fileRef = E31CE50F8B4B99D3C229D2438892ED5B /* Stringers.swift */; };
F1D4A8A1FC68EFA7F45945908D70A352 /* BeNil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02297D692E5CA1B1C21CCCDA1853BA44 /* BeNil.swift */; };
F665455332A1C72CA5D1756F43ACE1DE /* Quick-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9D0077C69A720B9DD2BB12344FD893 /* Quick-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
FB1347627E64CA7E98C19DC985E13D95 /* Equal.swift in Sources */ = {isa = PBXBuildFile; fileRef = D75276E4A134A22E123F4C40E529080C /* Equal.swift */; };
FFC311AC1E19A23E0EB7B1B3A7A5A744 /* RaisesException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88457B3A5C81E0F34AC48AC05B8040D6 /* RaisesException.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
454D8F147D8387695A33832CFE949C32 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8257B3842A082A9DC1387C64BD08E1DE;
remoteInfo = SimpleTransition;
};
71A472E01CAEC779A5FEFEF81E53807A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = CF7613969A76AAF1B0C953743F429017;
remoteInfo = "SimpleTransition-SimpleTransition";
};
837B761E95C22B2DFB7A58CC53298895 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 8257B3842A082A9DC1387C64BD08E1DE;
remoteInfo = SimpleTransition;
};
8D9FA15C434264B336EDF0004D3605AE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 88795710967E98D2E51D8F207E80F956;
remoteInfo = Quick;
};
9E3311F5DC51870080AF20C07C9FE3DF /* 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>"; };
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>"; };
0F94323B8EFEE8B0144C7778CE805825 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
13064CC241598F189B1341470994F9D9 /* BeAnInstanceOf.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeAnInstanceOf.swift; path = Nimble/Matchers/BeAnInstanceOf.swift; sourceTree = "<group>"; };
1A54E7C004AA32C347BE8C53705BABE3 /* Pods-SimpleTransition_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SimpleTransition_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
1C3A778046BC838450E9FAB1E0A58BCC /* SimpleTransition.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SimpleTransition.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>"; };
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>"; };
24CB3AC9F780CE341ACC286F9E9BA297 /* Pods-SimpleTransition_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SimpleTransition_Tests-dummy.m"; 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>"; };
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>"; };
29427F0CB2F5B899E19FC8FD53D2EDB4 /* Pods_SimpleTransition_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SimpleTransition_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
29A378AC6A7BCB5D43F7586353A7610A /* BeCloseTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeCloseTo.swift; path = Nimble/Matchers/BeCloseTo.swift; sourceTree = "<group>"; };
2ABE97C2098EB0FABDA0750B1AC8AF06 /* Pods-SimpleTransition_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SimpleTransition_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
2B9040AB08CA7AEB727960E284F746A4 /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Nimble/DSL.swift; sourceTree = "<group>"; };
2EB7DD616E2205B4EEC46DDBBF306A22 /* Pods-SimpleTransition_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-SimpleTransition_Example.modulemap"; sourceTree = "<group>"; };
2EE47833137111718235FED45EEAB802 /* Pods_SimpleTransition_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SimpleTransition_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
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>"; };
3607C4A1FBBDC2EAF1787FF9677839D4 /* Pods-SimpleTransition_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SimpleTransition_Example-dummy.m"; sourceTree = "<group>"; };
38715BF4570032AE706B97AB11365E48 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Quick/ExampleMetadata.swift; sourceTree = "<group>"; };
3F1975D001BFB447009180BAF8C14ADB /* Quick-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Quick-prefix.pch"; sourceTree = "<group>"; };
409B5EEBABA1ED7C1F2116051502D910 /* SimpleTransition-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SimpleTransition-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>"; };
438E2CE60375719DEAB393CA5F4ACC26 /* SimplePresentationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SimplePresentationController.swift; 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>"; };
4D9F969BC477E996988290CC5F22ADE2 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
4F2CCEF958AF4E4C4F073031905F2CE2 /* AllPass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllPass.swift; path = Nimble/Matchers/AllPass.swift; 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>"; };
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>"; };
66FC22FD78066B3D9C171AEBBE90CB81 /* Pods-SimpleTransition_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SimpleTransition_Example-umbrella.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>"; };
72AAAD68BD64E8F4CF3BCF1AA6CD548A /* Pods-SimpleTransition_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SimpleTransition_Example-frameworks.sh"; 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>"; };
78E2499B688FCC8D0559EF60B869E4F7 /* Pods-SimpleTransition_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-SimpleTransition_Tests.modulemap"; sourceTree = "<group>"; };
7BEAA1CEBE6BFAEC18A357C5F3354827 /* SimpleTransition.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SimpleTransition.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7C07CB259CB51CAA2B1B59537C0A7C2C /* Quick.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Quick.xcconfig; sourceTree = "<group>"; };
82E7240F4194B37903AF5B4BF897C8B1 /* SimpleTransition.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SimpleTransition.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
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>"; };
896C9900CC9B81E7446E17D17F9D2104 /* Pods-SimpleTransition_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SimpleTransition_Tests-resources.sh"; sourceTree = "<group>"; };
897F809DA8A73D6A535CB4421B304499 /* SimpleTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SimpleTransition.swift; sourceTree = "<group>"; };
8DA358C8A3E95E2096C78E30E111386D /* Pods-SimpleTransition_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SimpleTransition_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
8E12C6F645E5DC0EDB23023A394F1CB1 /* BeLessThanOrEqual.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeLessThanOrEqual.swift; path = Nimble/Matchers/BeLessThanOrEqual.swift; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
94A039912FDC46FCB2AF6DCEEB91ADB4 /* World+DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "World+DSL.h"; path = "Quick/DSL/World+DSL.h"; sourceTree = "<group>"; };
95BABEE4CF317AFF3BBE04B87567BAFA /* SimpleTransition-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SimpleTransition-umbrella.h"; sourceTree = "<group>"; };
9B33599C99BED1F331BF7FBC397141F0 /* Pods-SimpleTransition_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SimpleTransition_Tests.release.xcconfig"; sourceTree = "<group>"; };
9F4080BC32C34CDDCCBE42A8A68703B7 /* Pods-SimpleTransition_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SimpleTransition_Example-resources.sh"; sourceTree = "<group>"; };
A93E0F701C3C0E4ACE79BE196A744B4A /* Pods-SimpleTransition_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SimpleTransition_Tests.debug.xcconfig"; sourceTree = "<group>"; };
AAC405455F8E20BD0434D9D3E3D2879A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
ABE928CFB32B3F11D2920B4FD4890469 /* Quick.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; };
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>"; };
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>"; };
B89BF7315BAB3516AF2A51041DC39C3B /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
BEA1EFFE836005E11B9D420692E9E50C /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Quick/Example.swift; sourceTree = "<group>"; };
BF4AE1E80CC4EA4F2E1FF17CA10A3D26 /* Nimble-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Nimble-umbrella.h"; sourceTree = "<group>"; };
C03BB6589A73F51F073DF050F55D7F41 /* BeGreaterThanOrEqualTo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BeGreaterThanOrEqualTo.swift; path = Nimble/Matchers/BeGreaterThanOrEqualTo.swift; sourceTree = "<group>"; };
C61B4E6F36C4C9D3202372D15879189C /* SimpleTransition-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SimpleTransition-dummy.m"; sourceTree = "<group>"; };
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>"; };
CE6DFD089E3755DFF7CBE2DEC75E957F /* ResourceBundle-SimpleTransition-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SimpleTransition-Info.plist"; sourceTree = "<group>"; };
D0843BD7412E439120C081E8D9FE0F80 /* Match.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Match.swift; path = Nimble/Matchers/Match.swift; sourceTree = "<group>"; };
D101CDC45B04DAB9D8173040C28F4426 /* SimpleTransition.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = SimpleTransition.modulemap; 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>"; };
D9985B6C6EA026FB049FB41ECC310EBB /* Pods-SimpleTransition_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SimpleTransition_Tests-frameworks.sh"; sourceTree = "<group>"; };
DA695A07DF17BA243064E57D889E1CBB /* DSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DSL.h; path = Nimble/objc/DSL.h; sourceTree = "<group>"; };
DE0FE84CC666A0B5750265CA5FAEF6BD /* Nimble.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };
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>"; };
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>"; };
E91C50F77D497EC1BE1B1833C08372FD /* Pods-SimpleTransition_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SimpleTransition_Example.debug.xcconfig"; sourceTree = "<group>"; };
EA1932A388667E03726F62A94FD43AC5 /* Pods-SimpleTransition_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SimpleTransition_Tests-umbrella.h"; sourceTree = "<group>"; };
ECB4882E47E7537D32F4C677DF4F0B43 /* AdapterProtocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdapterProtocols.swift; path = Nimble/Adapters/AdapterProtocols.swift; sourceTree = "<group>"; };
EDC07861EEC9189B68FB1E0D909D611A /* TransformAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = TransformAnimator.swift; sourceTree = "<group>"; };
F1D4A64A54F414359EC782444B27597B /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Quick/Configuration/QuickConfiguration.h; sourceTree = "<group>"; };
F21CF9A7FC2D1DDE2B7329D6C3FA3F9B /* Pods-SimpleTransition_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SimpleTransition_Example.release.xcconfig"; sourceTree = "<group>"; };
F49F93786AA557A3D8FEF4FC06683C71 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; 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>"; };
FD51CD989715B69825137D03CC2D8241 /* Pods-SimpleTransition_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SimpleTransition_Example-acknowledgements.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 */
23F3E902FF980A782BCAA3199B6A9A60 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B2742E4C4FA19E57231A1858AA3C071D /* Foundation.framework in Frameworks */,
3D1A9715887F12053AE265FFE9AB6C52 /* XCTest.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
3685800EAED3A2DF50FA305599244DBA /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
6AAA9C65813403C56620365D44E7EE60 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4089531762ED774323BA562DAD249DE2 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
398C1E55768BD2ABB0C129AD13DAFF44 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
79BA6EAA38ADBD3B712363236C27806A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
7FBD7B1537B634BB7C94BB4D4384BD63 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
464AE44912454E9066420C20586DA926 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
D7521C1CFD81CAA229F097DE0E8E8EEB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
4ED3B02DD6D8C38A6B0401FDB6977937 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
09481951124090EB950F84638FF516B9 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
934916ED116E2246153984978E552F0B /* Pods-SimpleTransition_Example */,
A047E31B9F1D1BCE53F22416948D208B /* Pods-SimpleTransition_Tests */,
);
name = "Targets Support Files";
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>";
};
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>";
};
3F5C13CEB9F81F18E6E6C69EFC632166 /* Support Files */ = {
isa = PBXGroup;
children = (
F49F93786AA557A3D8FEF4FC06683C71 /* Info.plist */,
CE6DFD089E3755DFF7CBE2DEC75E957F /* ResourceBundle-SimpleTransition-Info.plist */,
D101CDC45B04DAB9D8173040C28F4426 /* SimpleTransition.modulemap */,
1C3A778046BC838450E9FAB1E0A58BCC /* SimpleTransition.xcconfig */,
C61B4E6F36C4C9D3202372D15879189C /* SimpleTransition-dummy.m */,
409B5EEBABA1ED7C1F2116051502D910 /* SimpleTransition-prefix.pch */,
95BABEE4CF317AFF3BBE04B87567BAFA /* SimpleTransition-umbrella.h */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/SimpleTransition";
sourceTree = "<group>";
};
433CD3331B6C3787F473C941B61FC68F /* Frameworks */ = {
isa = PBXGroup;
children = (
D24B2EA016AE4FABDB5AF17F3FD9C222 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
49323431A560B982399B86B58AE5F6F9 /* Pod */ = {
isa = PBXGroup;
children = (
56CD738D85D87C4F90B0E1CD39538D6F /* Classes */,
);
path = Pod;
sourceTree = "<group>";
};
56CD738D85D87C4F90B0E1CD39538D6F /* Classes */ = {
isa = PBXGroup;
children = (
438E2CE60375719DEAB393CA5F4ACC26 /* SimplePresentationController.swift */,
897F809DA8A73D6A535CB4421B304499 /* SimpleTransition.swift */,
EDC07861EEC9189B68FB1E0D909D611A /* TransformAnimator.swift */,
);
path = Classes;
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 = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
BDEE55EEC0CB2A69FE90D14DD0F5ECCB /* Development Pods */,
433CD3331B6C3787F473C941B61FC68F /* Frameworks */,
8F29E9621F2E4347FEA6F6D7F0748038 /* Pods */,
F839599AE34B2E59FF58149081B59A0C /* Products */,
09481951124090EB950F84638FF516B9 /* Targets Support Files */,
);
sourceTree = "<group>";
};
8F29E9621F2E4347FEA6F6D7F0748038 /* Pods */ = {
isa = PBXGroup;
children = (
D877BEEDC4F6494B4B10BC732B32A32B /* Nimble */,
64E98FF7B6454214F8290BB0AC208D8F /* Quick */,
);
name = Pods;
sourceTree = "<group>";
};
934916ED116E2246153984978E552F0B /* Pods-SimpleTransition_Example */ = {
isa = PBXGroup;
children = (
4D9F969BC477E996988290CC5F22ADE2 /* Info.plist */,
2EB7DD616E2205B4EEC46DDBBF306A22 /* Pods-SimpleTransition_Example.modulemap */,
8DA358C8A3E95E2096C78E30E111386D /* Pods-SimpleTransition_Example-acknowledgements.markdown */,
FD51CD989715B69825137D03CC2D8241 /* Pods-SimpleTransition_Example-acknowledgements.plist */,
3607C4A1FBBDC2EAF1787FF9677839D4 /* Pods-SimpleTransition_Example-dummy.m */,
72AAAD68BD64E8F4CF3BCF1AA6CD548A /* Pods-SimpleTransition_Example-frameworks.sh */,
9F4080BC32C34CDDCCBE42A8A68703B7 /* Pods-SimpleTransition_Example-resources.sh */,
66FC22FD78066B3D9C171AEBBE90CB81 /* Pods-SimpleTransition_Example-umbrella.h */,
E91C50F77D497EC1BE1B1833C08372FD /* Pods-SimpleTransition_Example.debug.xcconfig */,
F21CF9A7FC2D1DDE2B7329D6C3FA3F9B /* Pods-SimpleTransition_Example.release.xcconfig */,
);
name = "Pods-SimpleTransition_Example";
path = "Target Support Files/Pods-SimpleTransition_Example";
sourceTree = "<group>";
};
A047E31B9F1D1BCE53F22416948D208B /* Pods-SimpleTransition_Tests */ = {
isa = PBXGroup;
children = (
0F94323B8EFEE8B0144C7778CE805825 /* Info.plist */,
78E2499B688FCC8D0559EF60B869E4F7 /* Pods-SimpleTransition_Tests.modulemap */,
1A54E7C004AA32C347BE8C53705BABE3 /* Pods-SimpleTransition_Tests-acknowledgements.markdown */,
2ABE97C2098EB0FABDA0750B1AC8AF06 /* Pods-SimpleTransition_Tests-acknowledgements.plist */,
24CB3AC9F780CE341ACC286F9E9BA297 /* Pods-SimpleTransition_Tests-dummy.m */,
D9985B6C6EA026FB049FB41ECC310EBB /* Pods-SimpleTransition_Tests-frameworks.sh */,
896C9900CC9B81E7446E17D17F9D2104 /* Pods-SimpleTransition_Tests-resources.sh */,
EA1932A388667E03726F62A94FD43AC5 /* Pods-SimpleTransition_Tests-umbrella.h */,
A93E0F701C3C0E4ACE79BE196A744B4A /* Pods-SimpleTransition_Tests.debug.xcconfig */,
9B33599C99BED1F331BF7FBC397141F0 /* Pods-SimpleTransition_Tests.release.xcconfig */,
);
name = "Pods-SimpleTransition_Tests";
path = "Target Support Files/Pods-SimpleTransition_Tests";
sourceTree = "<group>";
};
BDEE55EEC0CB2A69FE90D14DD0F5ECCB /* Development Pods */ = {
isa = PBXGroup;
children = (
C10BB2F26787CA7E8A137CC92C1C2A8A /* SimpleTransition */,
);
name = "Development Pods";
sourceTree = "<group>";
};
C10BB2F26787CA7E8A137CC92C1C2A8A /* SimpleTransition */ = {
isa = PBXGroup;
children = (
49323431A560B982399B86B58AE5F6F9 /* Pod */,
3F5C13CEB9F81F18E6E6C69EFC632166 /* Support Files */,
);
name = SimpleTransition;
path = ../..;
sourceTree = "<group>";
};
D24B2EA016AE4FABDB5AF17F3FD9C222 /* iOS */ = {
isa = PBXGroup;
children = (
AAC405455F8E20BD0434D9D3E3D2879A /* Foundation.framework */,
B89BF7315BAB3516AF2A51041DC39C3B /* XCTest.framework */,
);
name = iOS;
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>";
};
F839599AE34B2E59FF58149081B59A0C /* Products */ = {
isa = PBXGroup;
children = (
DE0FE84CC666A0B5750265CA5FAEF6BD /* Nimble.framework */,
29427F0CB2F5B899E19FC8FD53D2EDB4 /* Pods_SimpleTransition_Example.framework */,
2EE47833137111718235FED45EEAB802 /* Pods_SimpleTransition_Tests.framework */,
ABE928CFB32B3F11D2920B4FD4890469 /* Quick.framework */,
82E7240F4194B37903AF5B4BF897C8B1 /* SimpleTransition.bundle */,
7BEAA1CEBE6BFAEC18A357C5F3354827 /* SimpleTransition.framework */,
);
name = Products;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
11965D88CF55A00D2137A7C9199C1458 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
78095F10F8BDF06D23F336908D803288 /* SimpleTransition-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
4975DD896AE9DAA811B0CA26FD6195EC /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
83BBBDA72AF6F731C8D84E98BCD23FDC /* Pods-SimpleTransition_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
5B6885CA9D26BE5ED2492FDB5F9FD582 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
8BBC25C8F214B78DFB679DB828F10534 /* NSString+QCKSelectorName.h in Headers */,
9CCACC4A5A42F0A8847DC37A9C0DA722 /* QCKDSL.h in Headers */,
F665455332A1C72CA5D1756F43ACE1DE /* Quick-umbrella.h in Headers */,
D5B40296D2171EA1DA1A82FBBFC5CAE4 /* Quick.h in Headers */,
EB8BB44A45B1B48898D00AAFA27E90D0 /* QuickConfiguration.h in Headers */,
7B353793692546C62CBAA978D82BFB56 /* QuickSpec.h in Headers */,
E79C4C5B514FFB9CC4F3E3BB21D6E2A8 /* World+DSL.h in Headers */,
A67B2A3A87D5C65EB76EDFAAA61A1306 /* World.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
93C600076DC41F7872A15E9F0C74369C /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
6608C9D2D246873492FEC88A7A25B7E1 /* Pods-SimpleTransition_Example-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 */
0B870EAF3FD07C67749782F42DFFDDE9 /* Pods-SimpleTransition_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 50439C733A32F0E902E8FD6BE0DD59F8 /* Build configuration list for PBXNativeTarget "Pods-SimpleTransition_Tests" */;
buildPhases = (
0174808E9080AEECE9C9D657B93B60C2 /* Sources */,
D7521C1CFD81CAA229F097DE0E8E8EEB /* Frameworks */,
4975DD896AE9DAA811B0CA26FD6195EC /* Headers */,
);
buildRules = (
);
dependencies = (
7AB4DA9445DDEF3F101A84A646B6815B /* PBXTargetDependency */,
B59AB9C0D4108BB7DCC68F2ABDC3F982 /* PBXTargetDependency */,
58D4EAA63AA697B8108582F912C87574 /* PBXTargetDependency */,
);
name = "Pods-SimpleTransition_Tests";
productName = "Pods-SimpleTransition_Tests";
productReference = 2EE47833137111718235FED45EEAB802 /* Pods_SimpleTransition_Tests.framework */;
productType = "com.apple.product-type.framework";
};
8257B3842A082A9DC1387C64BD08E1DE /* SimpleTransition */ = {
isa = PBXNativeTarget;
buildConfigurationList = 13BF3BDB19FAECB2831E1D4BAFD82A0C /* Build configuration list for PBXNativeTarget "SimpleTransition" */;
buildPhases = (
F86F64034924C467FCB2DF7900A66FA5 /* Sources */,
3685800EAED3A2DF50FA305599244DBA /* Frameworks */,
A2DB83DEF814924DAC54D9D12EEAD4B4 /* Resources */,
11965D88CF55A00D2137A7C9199C1458 /* Headers */,
);
buildRules = (
);
dependencies = (
1B783639DF5450FBE7EC8657CACD00DB /* PBXTargetDependency */,
);
name = SimpleTransition;
productName = SimpleTransition;
productReference = 7BEAA1CEBE6BFAEC18A357C5F3354827 /* SimpleTransition.framework */;
productType = "com.apple.product-type.framework";
};
88795710967E98D2E51D8F207E80F956 /* Quick */ = {
isa = PBXNativeTarget;
buildConfigurationList = FD174E5226D33BF848FE354C433D2F30 /* Build configuration list for PBXNativeTarget "Quick" */;
buildPhases = (
586EB74632CBBF057DEDC0B8E0922BBB /* Sources */,
23F3E902FF980A782BCAA3199B6A9A60 /* Frameworks */,
5B6885CA9D26BE5ED2492FDB5F9FD582 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = Quick;
productName = Quick;
productReference = ABE928CFB32B3F11D2920B4FD4890469 /* Quick.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 = DE0FE84CC666A0B5750265CA5FAEF6BD /* Nimble.framework */;
productType = "com.apple.product-type.framework";
};
C825273955A8A5A77DCC3E5A3673A154 /* Pods-SimpleTransition_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 7404A77CC43BA5468AC1ADAEAAF035B5 /* Build configuration list for PBXNativeTarget "Pods-SimpleTransition_Example" */;
buildPhases = (
7EFDC1A1114A76856CB74C6DD44D906B /* Sources */,
4089531762ED774323BA562DAD249DE2 /* Frameworks */,
93C600076DC41F7872A15E9F0C74369C /* Headers */,
);
buildRules = (
);
dependencies = (
49D12B975A0ACE7887CE83ABAF2390C4 /* PBXTargetDependency */,
);
name = "Pods-SimpleTransition_Example";
productName = "Pods-SimpleTransition_Example";
productReference = 29427F0CB2F5B899E19FC8FD53D2EDB4 /* Pods_SimpleTransition_Example.framework */;
productType = "com.apple.product-type.framework";
};
CF7613969A76AAF1B0C953743F429017 /* SimpleTransition-SimpleTransition */ = {
isa = PBXNativeTarget;
buildConfigurationList = 9C60BDE55E7AAE3D3ACBBE75007578FC /* Build configuration list for PBXNativeTarget "SimpleTransition-SimpleTransition" */;
buildPhases = (
32E6B5697CCFBD57572631E58EB43A2B /* Sources */,
79BA6EAA38ADBD3B712363236C27806A /* Frameworks */,
1190B14740DC104B0A103BEBB7F97C22 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "SimpleTransition-SimpleTransition";
productName = "SimpleTransition-SimpleTransition";
productReference = 82E7240F4194B37903AF5B4BF897C8B1 /* SimpleTransition.bundle */;
productType = "com.apple.product-type.bundle";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0730;
LastUpgradeCheck = 0700;
TargetAttributes = {
8257B3842A082A9DC1387C64BD08E1DE = {
LastSwiftMigration = 0800;
};
C825273955A8A5A77DCC3E5A3673A154 = {
LastSwiftMigration = 0800;
};
};
};
buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
productRefGroup = F839599AE34B2E59FF58149081B59A0C /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
C5DB5104FED3C10F78978AFC810982B9 /* Nimble */,
C825273955A8A5A77DCC3E5A3673A154 /* Pods-SimpleTransition_Example */,
0B870EAF3FD07C67749782F42DFFDDE9 /* Pods-SimpleTransition_Tests */,
88795710967E98D2E51D8F207E80F956 /* Quick */,
8257B3842A082A9DC1387C64BD08E1DE /* SimpleTransition */,
CF7613969A76AAF1B0C953743F429017 /* SimpleTransition-SimpleTransition */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
1190B14740DC104B0A103BEBB7F97C22 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
A2DB83DEF814924DAC54D9D12EEAD4B4 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
69EB53CD8C261A32C57E4C735850CE4B /* SimpleTransition.bundle in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
0174808E9080AEECE9C9D657B93B60C2 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6A6DECC705C9F8A61AEFBC844E4ED15A /* Pods-SimpleTransition_Tests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
32E6B5697CCFBD57572631E58EB43A2B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
586EB74632CBBF057DEDC0B8E0922BBB /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
CB2F12C716555223990C3723A83755A9 /* Callsite.swift in Sources */,
36F9605F37F129F6E74F9BDEE31E32EA /* Closures.swift in Sources */,
7A3CA55015CF353811FAD390FB7CBB4B /* Configuration.swift in Sources */,
7B689F54294A41ED6FA5BD9910C0E12A /* DSL.swift in Sources */,
3B1614DE540275FF023F52C29D1178B3 /* Example.swift in Sources */,
4EF94FE58D5DC224294EA175A4B29897 /* ExampleGroup.swift in Sources */,
3B00E5F1641B837C6818444D4CBD6C07 /* ExampleHooks.swift in Sources */,
D641D99E6F8ACAB746DFA93737F54BC2 /* ExampleMetadata.swift in Sources */,
8E33F174A05B78B85AB5C65A5BD9E456 /* Filter.swift in Sources */,
00B19E456452110B1C7E27384A3BEBDD /* NSString+QCKSelectorName.m in Sources */,
72BB49633586BF038A386713031D30B0 /* QCKDSL.m in Sources */,
C8CEEE539AF16CACD8EDB6DABF5992D2 /* Quick-dummy.m in Sources */,
875C051B922A684C27FF2233780CC9D0 /* QuickConfiguration.m in Sources */,
E670D4BD63878ABDDB38D30B891FE154 /* QuickSpec.m in Sources */,
97116CA77F18249E303562E1D2A32590 /* SuiteHooks.swift in Sources */,
A4205CB9168AF6427408D8BCCEC946C6 /* World+DSL.swift in Sources */,
AAD4E131999865FC11CD107477BE4061 /* World.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7EFDC1A1114A76856CB74C6DD44D906B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
2E260489735F606019E500CD8BDADCE1 /* Pods-SimpleTransition_Example-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;
};
F86F64034924C467FCB2DF7900A66FA5 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
0C5CEF304748224C049B0E97ADE09F96 /* SimplePresentationController.swift in Sources */,
BF5C4F89EAA7EB5C79ACD26F6EA2A31C /* SimpleTransition-dummy.m in Sources */,
A464E5E7F7F1057FFD168B56EEB50466 /* SimpleTransition.swift in Sources */,
EC2293EFF82A9CE5CFDF04FD28F162CD /* TransformAnimator.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
1B783639DF5450FBE7EC8657CACD00DB /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "SimpleTransition-SimpleTransition";
target = CF7613969A76AAF1B0C953743F429017 /* SimpleTransition-SimpleTransition */;
targetProxy = 71A472E01CAEC779A5FEFEF81E53807A /* PBXContainerItemProxy */;
};
49D12B975A0ACE7887CE83ABAF2390C4 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = SimpleTransition;
target = 8257B3842A082A9DC1387C64BD08E1DE /* SimpleTransition */;
targetProxy = 837B761E95C22B2DFB7A58CC53298895 /* PBXContainerItemProxy */;
};
58D4EAA63AA697B8108582F912C87574 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = SimpleTransition;
target = 8257B3842A082A9DC1387C64BD08E1DE /* SimpleTransition */;
targetProxy = 454D8F147D8387695A33832CFE949C32 /* PBXContainerItemProxy */;
};
7AB4DA9445DDEF3F101A84A646B6815B /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Nimble;
target = C5DB5104FED3C10F78978AFC810982B9 /* Nimble */;
targetProxy = 9E3311F5DC51870080AF20C07C9FE3DF /* PBXContainerItemProxy */;
};
B59AB9C0D4108BB7DCC68F2ABDC3F982 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Quick;
target = 88795710967E98D2E51D8F207E80F956 /* Quick */;
targetProxy = 8D9FA15C434264B336EDF0004D3605AE /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
003349938F94D0E728EB9775BB137A2B /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = F21CF9A7FC2D1DDE2B7329D6C3FA3F9B /* Pods-SimpleTransition_Example.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "Target Support Files/Pods-SimpleTransition_Example/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-SimpleTransition_Example/Pods-SimpleTransition_Example.modulemap";
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = Pods_SimpleTransition_Example;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_VERSION = 2.3;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
2CE96F4986FC28CF99E1EE210A14C65D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 1C3A778046BC838450E9FAB1E0A58BCC /* SimpleTransition.xcconfig */;
buildSettings = {
CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SimpleTransition";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "Target Support Files/SimpleTransition/ResourceBundle-SimpleTransition-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
PRODUCT_NAME = SimpleTransition;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
3047F583B64C7550998FE6D0607AF1EF /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = A93E0F701C3C0E4ACE79BE196A744B4A /* Pods-SimpleTransition_Tests.debug.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "Target Support Files/Pods-SimpleTransition_Tests/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-SimpleTransition_Tests/Pods-SimpleTransition_Tests.modulemap";
MTL_ENABLE_DEBUG_INFO = YES;
OTHER_LDFLAGS = "";