This repository was archived by the owner on Nov 14, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1415 lines (1400 loc) · 78.7 KB
/
project.pbxproj
File metadata and controls
1415 lines (1400 loc) · 78.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
550D0EBF1B243AB200FEB6EF /* RACAFNConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 550D0EBD1B243AB200FEB6EF /* RACAFNConstants.h */; };
550D0EC01B243AB200FEB6EF /* RACAFNConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 550D0EBD1B243AB200FEB6EF /* RACAFNConstants.h */; };
550D0EC11B243AB200FEB6EF /* RACAFNConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 550D0EBE1B243AB200FEB6EF /* RACAFNConstants.m */; };
550D0EC21B243AB200FEB6EF /* RACAFNConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 550D0EBE1B243AB200FEB6EF /* RACAFNConstants.m */; };
84DA97D7196C9FEA0064A552 /* RACAFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97D6196C9FEA0064A552 /* RACAFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA97DD196C9FEA0064A552 /* RACAFNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84DA97D1196C9FEA0064A552 /* RACAFNetworking.framework */; };
84DA97F5196CA0430064A552 /* AFHTTPRequestOperationManager+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97ED196CA0430064A552 /* AFHTTPRequestOperationManager+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA97F6196CA0430064A552 /* AFHTTPRequestOperationManager+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA97EE196CA0430064A552 /* AFHTTPRequestOperationManager+RACSupport.m */; };
84DA97F7196CA0430064A552 /* AFHTTPSessionManager+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97EF196CA0430064A552 /* AFHTTPSessionManager+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA97F8196CA0430064A552 /* AFHTTPSessionManager+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA97F0196CA0430064A552 /* AFHTTPSessionManager+RACSupport.m */; };
84DA97F9196CA0430064A552 /* AFURLConnectionOperation+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97F1196CA0430064A552 /* AFURLConnectionOperation+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA97FA196CA0430064A552 /* AFURLConnectionOperation+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA97F2196CA0430064A552 /* AFURLConnectionOperation+RACSupport.m */; };
84DA97FB196CA0430064A552 /* RACSubscriber+AFProgressCallbacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97F3196CA0430064A552 /* RACSubscriber+AFProgressCallbacks.h */; };
84DA97FC196CA0430064A552 /* RACSubscriber+AFProgressCallbacks.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA97F4196CA0430064A552 /* RACSubscriber+AFProgressCallbacks.m */; };
84DA9812196CA05D0064A552 /* AFHTTPRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97FF196CA05D0064A552 /* AFHTTPRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9813196CA05D0064A552 /* AFHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA9800196CA05D0064A552 /* AFHTTPRequestOperation.m */; };
84DA9814196CA05D0064A552 /* AFHTTPRequestOperationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9801196CA05D0064A552 /* AFHTTPRequestOperationManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9815196CA05D0064A552 /* AFHTTPRequestOperationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA9802196CA05D0064A552 /* AFHTTPRequestOperationManager.m */; };
84DA9816196CA05D0064A552 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9803196CA05D0064A552 /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9817196CA05D0064A552 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA9804196CA05D0064A552 /* AFHTTPSessionManager.m */; };
84DA9818196CA05D0064A552 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9805196CA05D0064A552 /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9819196CA05D0064A552 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9806196CA05D0064A552 /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA981A196CA05D0064A552 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA9807196CA05D0064A552 /* AFNetworkReachabilityManager.m */; };
84DA981B196CA05D0064A552 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9808196CA05D0064A552 /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA981C196CA05D0064A552 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA9809196CA05D0064A552 /* AFSecurityPolicy.m */; };
84DA981D196CA05D0064A552 /* AFURLConnectionOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA980A196CA05D0064A552 /* AFURLConnectionOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA981E196CA05D0064A552 /* AFURLConnectionOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA980B196CA05D0064A552 /* AFURLConnectionOperation.m */; };
84DA981F196CA05D0064A552 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA980C196CA05D0064A552 /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9820196CA05D0064A552 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA980D196CA05D0064A552 /* AFURLRequestSerialization.m */; };
84DA9821196CA05D0064A552 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA980E196CA05D0064A552 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9822196CA05D0064A552 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA980F196CA05D0064A552 /* AFURLResponseSerialization.m */; };
84DA9823196CA05D0064A552 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9810196CA05D0064A552 /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9824196CA05D0064A552 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA9811196CA05D0064A552 /* AFURLSessionManager.m */; };
84DA9887196CA15D0064A552 /* ReactiveCocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84DA9878196CA1520064A552 /* ReactiveCocoa.framework */; };
84DA98A3196CA2070064A552 /* AFHTTPRequestOperationManager+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA97EE196CA0430064A552 /* AFHTTPRequestOperationManager+RACSupport.m */; };
84DA98A4196CA2070064A552 /* AFHTTPSessionManager+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA97F0196CA0430064A552 /* AFHTTPSessionManager+RACSupport.m */; };
84DA98A5196CA2070064A552 /* AFURLConnectionOperation+RACSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA97F2196CA0430064A552 /* AFURLConnectionOperation+RACSupport.m */; };
84DA98A6196CA2070064A552 /* RACSubscriber+AFProgressCallbacks.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA97F4196CA0430064A552 /* RACSubscriber+AFProgressCallbacks.m */; };
84DA98A7196CA2070064A552 /* AFHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA9800196CA05D0064A552 /* AFHTTPRequestOperation.m */; };
84DA98A8196CA2070064A552 /* AFHTTPRequestOperationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA9802196CA05D0064A552 /* AFHTTPRequestOperationManager.m */; };
84DA98A9196CA2070064A552 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA9804196CA05D0064A552 /* AFHTTPSessionManager.m */; };
84DA98AA196CA2070064A552 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA9807196CA05D0064A552 /* AFNetworkReachabilityManager.m */; };
84DA98AB196CA2070064A552 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA9809196CA05D0064A552 /* AFSecurityPolicy.m */; };
84DA98AC196CA2070064A552 /* AFURLConnectionOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA980B196CA05D0064A552 /* AFURLConnectionOperation.m */; };
84DA98AD196CA2070064A552 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA980D196CA05D0064A552 /* AFURLRequestSerialization.m */; };
84DA98AE196CA2070064A552 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA980F196CA05D0064A552 /* AFURLResponseSerialization.m */; };
84DA98AF196CA2070064A552 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA9811196CA05D0064A552 /* AFURLSessionManager.m */; };
84DA98B2196CA2120064A552 /* libReactiveCocoa-Mac.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 84DA9884196CA1520064A552 /* libReactiveCocoa-Mac.a */; };
84DA98DE196CA4E00064A552 /* AFHTTPRequestOperationManager+RAFMocking.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA98DB196CA4E00064A552 /* AFHTTPRequestOperationManager+RAFMocking.m */; };
84DA98DF196CA4E00064A552 /* RACAFHTTPClientSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DA98DC196CA4E00064A552 /* RACAFHTTPClientSpec.m */; };
84DA9908196CA51F0064A552 /* libExpecta.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 84DA98EA196CA4F70064A552 /* libExpecta.a */; };
84DA9909196CA51F0064A552 /* libSpecta-OSX.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 84DA98FD196CA4FB0064A552 /* libSpecta-OSX.a */; };
84DA990B196CA6160064A552 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84DA990A196CA6160064A552 /* Cocoa.framework */; };
84DA990D196CA6210064A552 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84DA990C196CA6210064A552 /* SystemConfiguration.framework */; };
84DA990F196CA6270064A552 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84DA990E196CA6270064A552 /* Security.framework */; };
84DA9910196CA6300064A552 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84DA990A196CA6160064A552 /* Cocoa.framework */; };
84DA9913196CA7050064A552 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84DA9912196CA7050064A552 /* Foundation.framework */; };
84DA9915196CA70C0064A552 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84DA9914196CA70C0064A552 /* MobileCoreServices.framework */; };
84DA9917196CA7180064A552 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84DA9916196CA7180064A552 /* UIKit.framework */; };
84DA993C196CAD000064A552 /* RACAFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97D6196C9FEA0064A552 /* RACAFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA993D196CAD000064A552 /* AFHTTPRequestOperationManager+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97ED196CA0430064A552 /* AFHTTPRequestOperationManager+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA993E196CAD000064A552 /* AFHTTPSessionManager+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97EF196CA0430064A552 /* AFHTTPSessionManager+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA993F196CAD000064A552 /* AFURLConnectionOperation+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97F1196CA0430064A552 /* AFURLConnectionOperation+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9940196CAD000064A552 /* RACSubscriber+AFProgressCallbacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97F3196CA0430064A552 /* RACSubscriber+AFProgressCallbacks.h */; };
84DA9941196CAD000064A552 /* AFHTTPRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97FF196CA05D0064A552 /* AFHTTPRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9942196CAD000064A552 /* AFHTTPRequestOperationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9801196CA05D0064A552 /* AFHTTPRequestOperationManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9943196CAD000064A552 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9803196CA05D0064A552 /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9944196CAD000064A552 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9805196CA05D0064A552 /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9945196CAD000064A552 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9806196CA05D0064A552 /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9946196CAD000064A552 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9808196CA05D0064A552 /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9947196CAD000064A552 /* AFURLConnectionOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA980A196CA05D0064A552 /* AFURLConnectionOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9948196CAD000064A552 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA980C196CA05D0064A552 /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9949196CAD000064A552 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA980E196CA05D0064A552 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA994A196CAD000064A552 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9810196CA05D0064A552 /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA994B196CAD000064A552 /* AFHTTPRequestOperationManager+RAFMocking.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA98DA196CA4E00064A552 /* AFHTTPRequestOperationManager+RAFMocking.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA994C196CAD4C0064A552 /* RACAFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97D6196C9FEA0064A552 /* RACAFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA994D196CAD4C0064A552 /* AFHTTPRequestOperationManager+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97ED196CA0430064A552 /* AFHTTPRequestOperationManager+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA994E196CAD4C0064A552 /* AFHTTPSessionManager+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97EF196CA0430064A552 /* AFHTTPSessionManager+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA994F196CAD4C0064A552 /* AFURLConnectionOperation+RACSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97F1196CA0430064A552 /* AFURLConnectionOperation+RACSupport.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9950196CAD4C0064A552 /* RACSubscriber+AFProgressCallbacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97F3196CA0430064A552 /* RACSubscriber+AFProgressCallbacks.h */; };
84DA9951196CAD4C0064A552 /* AFHTTPRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA97FF196CA05D0064A552 /* AFHTTPRequestOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9952196CAD4C0064A552 /* AFHTTPRequestOperationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9801196CA05D0064A552 /* AFHTTPRequestOperationManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9953196CAD4C0064A552 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9803196CA05D0064A552 /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9954196CAD4C0064A552 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9805196CA05D0064A552 /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9955196CAD4C0064A552 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9806196CA05D0064A552 /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9956196CAD4C0064A552 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9808196CA05D0064A552 /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9957196CAD4C0064A552 /* AFURLConnectionOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA980A196CA05D0064A552 /* AFURLConnectionOperation.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9958196CAD4C0064A552 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA980C196CA05D0064A552 /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA9959196CAD4C0064A552 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA980E196CA05D0064A552 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA995A196CAD4C0064A552 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA9810196CA05D0064A552 /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA995B196CAD4D0064A552 /* AFHTTPRequestOperationManager+RAFMocking.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DA98DA196CA4E00064A552 /* AFHTTPRequestOperationManager+RAFMocking.h */; settings = {ATTRIBUTES = (Public, ); }; };
84DA995C196CAE5A0064A552 /* libReactiveCocoa-iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 84DA987A196CA1520064A552 /* libReactiveCocoa-iOS.a */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
84DA97DE196C9FEA0064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA97C8196C9FEA0064A552 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 84DA97D0196C9FEA0064A552;
remoteInfo = RACAFNetworking;
};
84DA9877196CA1520064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA9825196CA07A0064A552 /* ReactiveCocoa.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 88037F8315056328001A5B19;
remoteInfo = ReactiveCocoa;
};
84DA9879196CA1520064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA9825196CA07A0064A552 /* ReactiveCocoa.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 88F440AB153DAC820097B4C3;
remoteInfo = "ReactiveCocoa-iOS";
};
84DA987B196CA1520064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA9825196CA07A0064A552 /* ReactiveCocoa.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 88CDF7DC15000FCF00163A9F;
remoteInfo = ReactiveCocoaTests;
};
84DA987D196CA1520064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA9825196CA07A0064A552 /* ReactiveCocoa.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 5FAF5223174D4C2000CAC810;
remoteInfo = "ReactiveCocoaTests-iOS";
};
84DA987F196CA1520064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA9825196CA07A0064A552 /* ReactiveCocoa.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 1860F412177C91B500C7B3C9;
remoteInfo = "ReactiveCocoa-iOS-UIKitTestHost";
};
84DA9881196CA1520064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA9825196CA07A0064A552 /* ReactiveCocoa.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 1860F430177C91B500C7B3C9;
remoteInfo = "ReactiveCocoa-iOS-UIKitTestHostTests";
};
84DA9883196CA1520064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA9825196CA07A0064A552 /* ReactiveCocoa.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = D05AD39417F2D56F0080895B;
remoteInfo = "ReactiveCocoa-Mac";
};
84DA9885196CA15A0064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA9825196CA07A0064A552 /* ReactiveCocoa.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 88037F8215056328001A5B19;
remoteInfo = ReactiveCocoa;
};
84DA98B0196CA20E0064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA9825196CA07A0064A552 /* ReactiveCocoa.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = D05AD39317F2D56F0080895B;
remoteInfo = "ReactiveCocoa-Mac";
};
84DA98CF196CA2450064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA9825196CA07A0064A552 /* ReactiveCocoa.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 88F440AA153DAC820097B4C3;
remoteInfo = "ReactiveCocoa-iOS";
};
84DA98E9196CA4F70064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA98E1196CA4F70064A552 /* Expecta.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = E9ACDF0C13B2DD520010F4D7;
remoteInfo = Expecta;
};
84DA98EB196CA4F70064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA98E1196CA4F70064A552 /* Expecta.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = E93067CE13B2E6D100EA26FF;
remoteInfo = "Expecta-iOS";
};
84DA98ED196CA4F70064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA98E1196CA4F70064A552 /* Expecta.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = E9ACDF1D13B2DD520010F4D7;
remoteInfo = ExpectaTests;
};
84DA98EF196CA4F70064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA98E1196CA4F70064A552 /* Expecta.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = E93067DA13B2E6D100EA26FF;
remoteInfo = "Expecta-iOSTests";
};
84DA98F1196CA4F70064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA98E1196CA4F70064A552 /* Expecta.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = 9C4416F917FF3F4A00978F09;
remoteInfo = "ExpectaTests-XCTest";
};
84DA98FA196CA4FB0064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA98F3196CA4FB0064A552 /* Specta.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = E9901BFD18205A3500844A05;
remoteInfo = "Specta-iOS";
};
84DA98FC196CA4FB0064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA98F3196CA4FB0064A552 /* Specta.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = E9901C2A18205AB100844A05;
remoteInfo = "Specta-OSX";
};
84DA98FE196CA4FB0064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA98F3196CA4FB0064A552 /* Specta.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = E9901C0D18205A3500844A05;
remoteInfo = "SpectaTests-iOS";
};
84DA9900196CA4FB0064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA98F3196CA4FB0064A552 /* Specta.xcodeproj */;
proxyType = 2;
remoteGlobalIDString = E9901C3B18205AB100844A05;
remoteInfo = "Specta-OSXTests";
};
84DA9904196CA5180064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA98F3196CA4FB0064A552 /* Specta.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = E9901C2918205AB100844A05;
remoteInfo = "Specta-OSX";
};
84DA9906196CA5180064A552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA98E1196CA4F70064A552 /* Expecta.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = E9ACDF0B13B2DD520010F4D7;
remoteInfo = Expecta;
};
84EA3821197378F70014CFF7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 84DA97C8196C9FEA0064A552 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 84DA97D0196C9FEA0064A552;
remoteInfo = RACAFNetworking;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
84DA98B5196CA22B0064A552 /* CopyFiles */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "include/$(PRODUCT_NAME)";
dstSubfolderSpec = 16;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
550D0EBD1B243AB200FEB6EF /* RACAFNConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RACAFNConstants.h; sourceTree = "<group>"; };
550D0EBE1B243AB200FEB6EF /* RACAFNConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RACAFNConstants.m; sourceTree = "<group>"; };
84DA97D1196C9FEA0064A552 /* RACAFNetworking.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = RACAFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; };
84DA97D5196C9FEA0064A552 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
84DA97D6196C9FEA0064A552 /* RACAFNetworking.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RACAFNetworking.h; sourceTree = "<group>"; };
84DA97DC196C9FEA0064A552 /* RACAFNetworkingTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RACAFNetworkingTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
84DA97E2196C9FEA0064A552 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
84DA97ED196CA0430064A552 /* AFHTTPRequestOperationManager+RACSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AFHTTPRequestOperationManager+RACSupport.h"; sourceTree = "<group>"; };
84DA97EE196CA0430064A552 /* AFHTTPRequestOperationManager+RACSupport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AFHTTPRequestOperationManager+RACSupport.m"; sourceTree = "<group>"; };
84DA97EF196CA0430064A552 /* AFHTTPSessionManager+RACSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AFHTTPSessionManager+RACSupport.h"; sourceTree = "<group>"; };
84DA97F0196CA0430064A552 /* AFHTTPSessionManager+RACSupport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AFHTTPSessionManager+RACSupport.m"; sourceTree = "<group>"; };
84DA97F1196CA0430064A552 /* AFURLConnectionOperation+RACSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AFURLConnectionOperation+RACSupport.h"; sourceTree = "<group>"; };
84DA97F2196CA0430064A552 /* AFURLConnectionOperation+RACSupport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AFURLConnectionOperation+RACSupport.m"; sourceTree = "<group>"; };
84DA97F3196CA0430064A552 /* RACSubscriber+AFProgressCallbacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RACSubscriber+AFProgressCallbacks.h"; sourceTree = "<group>"; };
84DA97F4196CA0430064A552 /* RACSubscriber+AFProgressCallbacks.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "RACSubscriber+AFProgressCallbacks.m"; sourceTree = "<group>"; };
84DA97FF196CA05D0064A552 /* AFHTTPRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFHTTPRequestOperation.h; path = External/AFNetworking/AFNetworking/AFHTTPRequestOperation.h; sourceTree = SOURCE_ROOT; };
84DA9800196CA05D0064A552 /* AFHTTPRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AFHTTPRequestOperation.m; path = External/AFNetworking/AFNetworking/AFHTTPRequestOperation.m; sourceTree = SOURCE_ROOT; };
84DA9801196CA05D0064A552 /* AFHTTPRequestOperationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFHTTPRequestOperationManager.h; path = External/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h; sourceTree = SOURCE_ROOT; };
84DA9802196CA05D0064A552 /* AFHTTPRequestOperationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AFHTTPRequestOperationManager.m; path = External/AFNetworking/AFNetworking/AFHTTPRequestOperationManager.m; sourceTree = SOURCE_ROOT; };
84DA9803196CA05D0064A552 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = External/AFNetworking/AFNetworking/AFHTTPSessionManager.h; sourceTree = SOURCE_ROOT; };
84DA9804196CA05D0064A552 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = External/AFNetworking/AFNetworking/AFHTTPSessionManager.m; sourceTree = SOURCE_ROOT; };
84DA9805196CA05D0064A552 /* AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = External/AFNetworking/AFNetworking/AFNetworking.h; sourceTree = SOURCE_ROOT; };
84DA9806196CA05D0064A552 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = External/AFNetworking/AFNetworking/AFNetworkReachabilityManager.h; sourceTree = SOURCE_ROOT; };
84DA9807196CA05D0064A552 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = External/AFNetworking/AFNetworking/AFNetworkReachabilityManager.m; sourceTree = SOURCE_ROOT; };
84DA9808196CA05D0064A552 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = External/AFNetworking/AFNetworking/AFSecurityPolicy.h; sourceTree = SOURCE_ROOT; };
84DA9809196CA05D0064A552 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = External/AFNetworking/AFNetworking/AFSecurityPolicy.m; sourceTree = SOURCE_ROOT; };
84DA980A196CA05D0064A552 /* AFURLConnectionOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFURLConnectionOperation.h; path = External/AFNetworking/AFNetworking/AFURLConnectionOperation.h; sourceTree = SOURCE_ROOT; };
84DA980B196CA05D0064A552 /* AFURLConnectionOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AFURLConnectionOperation.m; path = External/AFNetworking/AFNetworking/AFURLConnectionOperation.m; sourceTree = SOURCE_ROOT; };
84DA980C196CA05D0064A552 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = External/AFNetworking/AFNetworking/AFURLRequestSerialization.h; sourceTree = SOURCE_ROOT; };
84DA980D196CA05D0064A552 /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = External/AFNetworking/AFNetworking/AFURLRequestSerialization.m; sourceTree = SOURCE_ROOT; };
84DA980E196CA05D0064A552 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = External/AFNetworking/AFNetworking/AFURLResponseSerialization.h; sourceTree = SOURCE_ROOT; };
84DA980F196CA05D0064A552 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = External/AFNetworking/AFNetworking/AFURLResponseSerialization.m; sourceTree = SOURCE_ROOT; };
84DA9810196CA05D0064A552 /* AFURLSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = External/AFNetworking/AFNetworking/AFURLSessionManager.h; sourceTree = SOURCE_ROOT; };
84DA9811196CA05D0064A552 /* AFURLSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = External/AFNetworking/AFNetworking/AFURLSessionManager.m; sourceTree = SOURCE_ROOT; };
84DA9825196CA07A0064A552 /* ReactiveCocoa.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ReactiveCocoa.xcodeproj; path = ../External/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa.xcodeproj; sourceTree = "<group>"; };
84DA9842196CA0A60064A552 /* Common.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Common.xcconfig; sourceTree = "<group>"; };
84DA9844196CA0A60064A552 /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
84DA9845196CA0A60064A552 /* Profile.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Profile.xcconfig; sourceTree = "<group>"; };
84DA9846196CA0A60064A552 /* Release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
84DA9847196CA0A60064A552 /* Test.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Test.xcconfig; sourceTree = "<group>"; };
84DA9849196CA0A60064A552 /* Application.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Application.xcconfig; sourceTree = "<group>"; };
84DA984A196CA0A60064A552 /* Framework.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Framework.xcconfig; sourceTree = "<group>"; };
84DA984B196CA0A60064A552 /* StaticLibrary.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = StaticLibrary.xcconfig; sourceTree = "<group>"; };
84DA984D196CA0A60064A552 /* iOS-Application.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "iOS-Application.xcconfig"; sourceTree = "<group>"; };
84DA984E196CA0A60064A552 /* iOS-Base.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "iOS-Base.xcconfig"; sourceTree = "<group>"; };
84DA984F196CA0A60064A552 /* iOS-Framework.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "iOS-Framework.xcconfig"; sourceTree = "<group>"; };
84DA9850196CA0A60064A552 /* iOS-StaticLibrary.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "iOS-StaticLibrary.xcconfig"; sourceTree = "<group>"; };
84DA9852196CA0A60064A552 /* Mac-Application.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "Mac-Application.xcconfig"; sourceTree = "<group>"; };
84DA9853196CA0A60064A552 /* Mac-Base.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "Mac-Base.xcconfig"; sourceTree = "<group>"; };
84DA9854196CA0A60064A552 /* Mac-DynamicLibrary.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "Mac-DynamicLibrary.xcconfig"; sourceTree = "<group>"; };
84DA9855196CA0A60064A552 /* Mac-Framework.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "Mac-Framework.xcconfig"; sourceTree = "<group>"; };
84DA9856196CA0A60064A552 /* Mac-StaticLibrary.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "Mac-StaticLibrary.xcconfig"; sourceTree = "<group>"; };
84DA9857196CA0A60064A552 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
84DA988C196CA1DF0064A552 /* libRACAFNetworking-Mac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libRACAFNetworking-Mac.a"; sourceTree = BUILT_PRODUCTS_DIR; };
84DA98B7196CA22B0064A552 /* libRACAFNetworking-iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libRACAFNetworking-iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
84DA98D1196CA2C50064A552 /* RACAFNetworking-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RACAFNetworking-Prefix.pch"; sourceTree = "<group>"; };
84DA98DA196CA4E00064A552 /* AFHTTPRequestOperationManager+RAFMocking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AFHTTPRequestOperationManager+RAFMocking.h"; sourceTree = "<group>"; };
84DA98DB196CA4E00064A552 /* AFHTTPRequestOperationManager+RAFMocking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AFHTTPRequestOperationManager+RAFMocking.m"; sourceTree = "<group>"; };
84DA98DC196CA4E00064A552 /* RACAFHTTPClientSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RACAFHTTPClientSpec.m; sourceTree = "<group>"; };
84DA98DD196CA4E00064A552 /* RACAFNetworkingTests-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RACAFNetworkingTests-Prefix.pch"; sourceTree = "<group>"; };
84DA98E1196CA4F70064A552 /* Expecta.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Expecta.xcodeproj; path = External/Expecta/Expecta.xcodeproj; sourceTree = SOURCE_ROOT; };
84DA98F3196CA4FB0064A552 /* Specta.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Specta.xcodeproj; path = External/Specta/Specta.xcodeproj; sourceTree = SOURCE_ROOT; };
84DA990A196CA6160064A552 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
84DA990C196CA6210064A552 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
84DA990E196CA6270064A552 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
84DA9912196CA7050064A552 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
84DA9914196CA70C0064A552 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.0.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; };
84DA9916196CA7180064A552 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
84DA97CD196C9FEA0064A552 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
84DA990F196CA6270064A552 /* Security.framework in Frameworks */,
84DA990D196CA6210064A552 /* SystemConfiguration.framework in Frameworks */,
84DA990B196CA6160064A552 /* Cocoa.framework in Frameworks */,
84DA9887196CA15D0064A552 /* ReactiveCocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
84DA97D9196C9FEA0064A552 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
84DA9910196CA6300064A552 /* Cocoa.framework in Frameworks */,
84DA9908196CA51F0064A552 /* libExpecta.a in Frameworks */,
84DA9909196CA51F0064A552 /* libSpecta-OSX.a in Frameworks */,
84DA97DD196C9FEA0064A552 /* RACAFNetworking.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
84DA9889196CA1DF0064A552 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
84DA98B2196CA2120064A552 /* libReactiveCocoa-Mac.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
84DA98B4196CA22B0064A552 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
84DA995C196CAE5A0064A552 /* libReactiveCocoa-iOS.a in Frameworks */,
84DA9917196CA7180064A552 /* UIKit.framework in Frameworks */,
84DA9915196CA70C0064A552 /* MobileCoreServices.framework in Frameworks */,
84DA9913196CA7050064A552 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
84DA97C7196C9FEA0064A552 = {
isa = PBXGroup;
children = (
84DA97D3196C9FEA0064A552 /* RACAFNetworking */,
84DA97E0196C9FEA0064A552 /* RACAFNetworkingTests */,
84DA97D2196C9FEA0064A552 /* Products */,
);
sourceTree = "<group>";
};
84DA97D2196C9FEA0064A552 /* Products */ = {
isa = PBXGroup;
children = (
84DA97D1196C9FEA0064A552 /* RACAFNetworking.framework */,
84DA97DC196C9FEA0064A552 /* RACAFNetworkingTests.xctest */,
84DA988C196CA1DF0064A552 /* libRACAFNetworking-Mac.a */,
84DA98B7196CA22B0064A552 /* libRACAFNetworking-iOS.a */,
);
name = Products;
sourceTree = "<group>";
};
84DA97D3196C9FEA0064A552 /* RACAFNetworking */ = {
isa = PBXGroup;
children = (
84DA97D6196C9FEA0064A552 /* RACAFNetworking.h */,
84DA97FD196CA0470064A552 /* Classes */,
84DA986A196CA0BB0064A552 /* External */,
84DA97D4196C9FEA0064A552 /* Supporting Files */,
);
path = RACAFNetworking;
sourceTree = "<group>";
};
84DA97D4196C9FEA0064A552 /* Supporting Files */ = {
isa = PBXGroup;
children = (
84DA9911196CA6F50064A552 /* Frameworks */,
84DA97D5196C9FEA0064A552 /* Info.plist */,
84DA98D1196CA2C50064A552 /* RACAFNetworking-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
84DA97E0196C9FEA0064A552 /* RACAFNetworkingTests */ = {
isa = PBXGroup;
children = (
84DA98DA196CA4E00064A552 /* AFHTTPRequestOperationManager+RAFMocking.h */,
84DA98DB196CA4E00064A552 /* AFHTTPRequestOperationManager+RAFMocking.m */,
84DA98DC196CA4E00064A552 /* RACAFHTTPClientSpec.m */,
84DA98E0196CA4EE0064A552 /* External */,
84DA97E1196C9FEA0064A552 /* Supporting Files */,
);
path = RACAFNetworkingTests;
sourceTree = "<group>";
};
84DA97E1196C9FEA0064A552 /* Supporting Files */ = {
isa = PBXGroup;
children = (
84DA98DD196CA4E00064A552 /* RACAFNetworkingTests-Prefix.pch */,
84DA97E2196C9FEA0064A552 /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
84DA97FD196CA0470064A552 /* Classes */ = {
isa = PBXGroup;
children = (
84DA97ED196CA0430064A552 /* AFHTTPRequestOperationManager+RACSupport.h */,
84DA97EE196CA0430064A552 /* AFHTTPRequestOperationManager+RACSupport.m */,
84DA97EF196CA0430064A552 /* AFHTTPSessionManager+RACSupport.h */,
84DA97F0196CA0430064A552 /* AFHTTPSessionManager+RACSupport.m */,
84DA97F1196CA0430064A552 /* AFURLConnectionOperation+RACSupport.h */,
84DA97F2196CA0430064A552 /* AFURLConnectionOperation+RACSupport.m */,
84DA97F3196CA0430064A552 /* RACSubscriber+AFProgressCallbacks.h */,
84DA97F4196CA0430064A552 /* RACSubscriber+AFProgressCallbacks.m */,
550D0EBD1B243AB200FEB6EF /* RACAFNConstants.h */,
550D0EBE1B243AB200FEB6EF /* RACAFNConstants.m */,
);
name = Classes;
sourceTree = "<group>";
};
84DA97FE196CA0510064A552 /* AFNetworking */ = {
isa = PBXGroup;
children = (
84DA97FF196CA05D0064A552 /* AFHTTPRequestOperation.h */,
84DA9800196CA05D0064A552 /* AFHTTPRequestOperation.m */,
84DA9801196CA05D0064A552 /* AFHTTPRequestOperationManager.h */,
84DA9802196CA05D0064A552 /* AFHTTPRequestOperationManager.m */,
84DA9803196CA05D0064A552 /* AFHTTPSessionManager.h */,
84DA9804196CA05D0064A552 /* AFHTTPSessionManager.m */,
84DA9805196CA05D0064A552 /* AFNetworking.h */,
84DA9806196CA05D0064A552 /* AFNetworkReachabilityManager.h */,
84DA9807196CA05D0064A552 /* AFNetworkReachabilityManager.m */,
84DA9808196CA05D0064A552 /* AFSecurityPolicy.h */,
84DA9809196CA05D0064A552 /* AFSecurityPolicy.m */,
84DA980A196CA05D0064A552 /* AFURLConnectionOperation.h */,
84DA980B196CA05D0064A552 /* AFURLConnectionOperation.m */,
84DA980C196CA05D0064A552 /* AFURLRequestSerialization.h */,
84DA980D196CA05D0064A552 /* AFURLRequestSerialization.m */,
84DA980E196CA05D0064A552 /* AFURLResponseSerialization.h */,
84DA980F196CA05D0064A552 /* AFURLResponseSerialization.m */,
84DA9810196CA05D0064A552 /* AFURLSessionManager.h */,
84DA9811196CA05D0064A552 /* AFURLSessionManager.m */,
);
name = AFNetworking;
sourceTree = "<group>";
};
84DA9840196CA0A60064A552 /* Configuration */ = {
isa = PBXGroup;
children = (
84DA9841196CA0A60064A552 /* Base */,
84DA984C196CA0A60064A552 /* iOS */,
84DA9851196CA0A60064A552 /* Mac OS X */,
84DA9857196CA0A60064A552 /* README.md */,
);
name = Configuration;
path = ../xcconfigs;
sourceTree = "<group>";
};
84DA9841196CA0A60064A552 /* Base */ = {
isa = PBXGroup;
children = (
84DA9842196CA0A60064A552 /* Common.xcconfig */,
84DA9843196CA0A60064A552 /* Configurations */,
84DA9848196CA0A60064A552 /* Targets */,
);
path = Base;
sourceTree = "<group>";
};
84DA9843196CA0A60064A552 /* Configurations */ = {
isa = PBXGroup;
children = (
84DA9844196CA0A60064A552 /* Debug.xcconfig */,
84DA9845196CA0A60064A552 /* Profile.xcconfig */,
84DA9846196CA0A60064A552 /* Release.xcconfig */,
84DA9847196CA0A60064A552 /* Test.xcconfig */,
);
path = Configurations;
sourceTree = "<group>";
};
84DA9848196CA0A60064A552 /* Targets */ = {
isa = PBXGroup;
children = (
84DA9849196CA0A60064A552 /* Application.xcconfig */,
84DA984A196CA0A60064A552 /* Framework.xcconfig */,
84DA984B196CA0A60064A552 /* StaticLibrary.xcconfig */,
);
path = Targets;
sourceTree = "<group>";
};
84DA984C196CA0A60064A552 /* iOS */ = {
isa = PBXGroup;
children = (
84DA984D196CA0A60064A552 /* iOS-Application.xcconfig */,
84DA984E196CA0A60064A552 /* iOS-Base.xcconfig */,
84DA984F196CA0A60064A552 /* iOS-Framework.xcconfig */,
84DA9850196CA0A60064A552 /* iOS-StaticLibrary.xcconfig */,
);
path = iOS;
sourceTree = "<group>";
};
84DA9851196CA0A60064A552 /* Mac OS X */ = {
isa = PBXGroup;
children = (
84DA9852196CA0A60064A552 /* Mac-Application.xcconfig */,
84DA9853196CA0A60064A552 /* Mac-Base.xcconfig */,
84DA9854196CA0A60064A552 /* Mac-DynamicLibrary.xcconfig */,
84DA9855196CA0A60064A552 /* Mac-Framework.xcconfig */,
84DA9856196CA0A60064A552 /* Mac-StaticLibrary.xcconfig */,
);
path = "Mac OS X";
sourceTree = "<group>";
};
84DA986A196CA0BB0064A552 /* External */ = {
isa = PBXGroup;
children = (
84DA986B196CA0C20064A552 /* ReactiveCocoa */,
84DA97FE196CA0510064A552 /* AFNetworking */,
84DA9840196CA0A60064A552 /* Configuration */,
);
name = External;
sourceTree = "<group>";
};
84DA986B196CA0C20064A552 /* ReactiveCocoa */ = {
isa = PBXGroup;
children = (
84DA9825196CA07A0064A552 /* ReactiveCocoa.xcodeproj */,
);
name = ReactiveCocoa;
sourceTree = "<group>";
};
84DA986E196CA1520064A552 /* Products */ = {
isa = PBXGroup;
children = (
84DA9878196CA1520064A552 /* ReactiveCocoa.framework */,
84DA987A196CA1520064A552 /* libReactiveCocoa-iOS.a */,
84DA987C196CA1520064A552 /* ReactiveCocoaTests.xctest */,
84DA987E196CA1520064A552 /* ReactiveCocoaTests-iOS.xctest */,
84DA9880196CA1520064A552 /* ReactiveCocoa-iOS-UIKitTestHost.app */,
84DA9882196CA1520064A552 /* ReactiveCocoa-iOS-UIKitTestHostTests.octest */,
84DA9884196CA1520064A552 /* libReactiveCocoa-Mac.a */,
);
name = Products;
sourceTree = "<group>";
};
84DA98E0196CA4EE0064A552 /* External */ = {
isa = PBXGroup;
children = (
84DA9902196CA5020064A552 /* Specta */,
84DA9903196CA5060064A552 /* Expecta */,
);
name = External;
sourceTree = "<group>";
};
84DA98E2196CA4F70064A552 /* Products */ = {
isa = PBXGroup;
children = (
84DA98EA196CA4F70064A552 /* libExpecta.a */,
84DA98EC196CA4F70064A552 /* libExpecta-iOS.a */,
84DA98EE196CA4F70064A552 /* ExpectaTests.octest */,
84DA98F0196CA4F70064A552 /* Expecta-iOSTests.octest */,
84DA98F2196CA4F70064A552 /* ExpectaTests-XCTest.xctest */,
);
name = Products;
sourceTree = "<group>";
};
84DA98F4196CA4FB0064A552 /* Products */ = {
isa = PBXGroup;
children = (
84DA98FB196CA4FB0064A552 /* libSpecta-iOS.a */,
84DA98FD196CA4FB0064A552 /* libSpecta-OSX.a */,
84DA98FF196CA4FB0064A552 /* SpectaTests-iOS.xctest */,
84DA9901196CA4FB0064A552 /* Specta-OSXTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
84DA9902196CA5020064A552 /* Specta */ = {
isa = PBXGroup;
children = (
84DA98F3196CA4FB0064A552 /* Specta.xcodeproj */,
);
name = Specta;
sourceTree = "<group>";
};
84DA9903196CA5060064A552 /* Expecta */ = {
isa = PBXGroup;
children = (
84DA98E1196CA4F70064A552 /* Expecta.xcodeproj */,
);
name = Expecta;
sourceTree = "<group>";
};
84DA9911196CA6F50064A552 /* Frameworks */ = {
isa = PBXGroup;
children = (
84DA9916196CA7180064A552 /* UIKit.framework */,
84DA9914196CA70C0064A552 /* MobileCoreServices.framework */,
84DA9912196CA7050064A552 /* Foundation.framework */,
84DA990E196CA6270064A552 /* Security.framework */,
84DA990C196CA6210064A552 /* SystemConfiguration.framework */,
84DA990A196CA6160064A552 /* Cocoa.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
84DA97CE196C9FEA0064A552 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
84DA9823196CA05D0064A552 /* AFURLSessionManager.h in Headers */,
84DA981F196CA05D0064A552 /* AFURLRequestSerialization.h in Headers */,
84DA981B196CA05D0064A552 /* AFSecurityPolicy.h in Headers */,
84DA97F9196CA0430064A552 /* AFURLConnectionOperation+RACSupport.h in Headers */,
84DA981D196CA05D0064A552 /* AFURLConnectionOperation.h in Headers */,
84DA9816196CA05D0064A552 /* AFHTTPSessionManager.h in Headers */,
84DA97F7196CA0430064A552 /* AFHTTPSessionManager+RACSupport.h in Headers */,
84DA9814196CA05D0064A552 /* AFHTTPRequestOperationManager.h in Headers */,
550D0EBF1B243AB200FEB6EF /* RACAFNConstants.h in Headers */,
84DA97F5196CA0430064A552 /* AFHTTPRequestOperationManager+RACSupport.h in Headers */,
84DA9819196CA05D0064A552 /* AFNetworkReachabilityManager.h in Headers */,
84DA9821196CA05D0064A552 /* AFURLResponseSerialization.h in Headers */,
84DA9812196CA05D0064A552 /* AFHTTPRequestOperation.h in Headers */,
84DA9818196CA05D0064A552 /* AFNetworking.h in Headers */,
84DA97D7196C9FEA0064A552 /* RACAFNetworking.h in Headers */,
84DA97FB196CA0430064A552 /* RACSubscriber+AFProgressCallbacks.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
84DA988A196CA1DF0064A552 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
84DA994C196CAD4C0064A552 /* RACAFNetworking.h in Headers */,
84DA994D196CAD4C0064A552 /* AFHTTPRequestOperationManager+RACSupport.h in Headers */,
84DA994E196CAD4C0064A552 /* AFHTTPSessionManager+RACSupport.h in Headers */,
550D0EC01B243AB200FEB6EF /* RACAFNConstants.h in Headers */,
84DA994F196CAD4C0064A552 /* AFURLConnectionOperation+RACSupport.h in Headers */,
84DA9951196CAD4C0064A552 /* AFHTTPRequestOperation.h in Headers */,
84DA9952196CAD4C0064A552 /* AFHTTPRequestOperationManager.h in Headers */,
84DA9953196CAD4C0064A552 /* AFHTTPSessionManager.h in Headers */,
84DA9954196CAD4C0064A552 /* AFNetworking.h in Headers */,
84DA9955196CAD4C0064A552 /* AFNetworkReachabilityManager.h in Headers */,
84DA9956196CAD4C0064A552 /* AFSecurityPolicy.h in Headers */,
84DA9957196CAD4C0064A552 /* AFURLConnectionOperation.h in Headers */,
84DA9958196CAD4C0064A552 /* AFURLRequestSerialization.h in Headers */,
84DA9959196CAD4C0064A552 /* AFURLResponseSerialization.h in Headers */,
84DA995A196CAD4C0064A552 /* AFURLSessionManager.h in Headers */,
84DA995B196CAD4D0064A552 /* AFHTTPRequestOperationManager+RAFMocking.h in Headers */,
84DA9950196CAD4C0064A552 /* RACSubscriber+AFProgressCallbacks.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
84DA993B196CACE10064A552 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
84DA993C196CAD000064A552 /* RACAFNetworking.h in Headers */,
84DA993D196CAD000064A552 /* AFHTTPRequestOperationManager+RACSupport.h in Headers */,
84DA993E196CAD000064A552 /* AFHTTPSessionManager+RACSupport.h in Headers */,
84DA993F196CAD000064A552 /* AFURLConnectionOperation+RACSupport.h in Headers */,
84DA9941196CAD000064A552 /* AFHTTPRequestOperation.h in Headers */,
84DA9942196CAD000064A552 /* AFHTTPRequestOperationManager.h in Headers */,
84DA9943196CAD000064A552 /* AFHTTPSessionManager.h in Headers */,
84DA9944196CAD000064A552 /* AFNetworking.h in Headers */,
84DA9945196CAD000064A552 /* AFNetworkReachabilityManager.h in Headers */,
84DA9946196CAD000064A552 /* AFSecurityPolicy.h in Headers */,
84DA9947196CAD000064A552 /* AFURLConnectionOperation.h in Headers */,
84DA9948196CAD000064A552 /* AFURLRequestSerialization.h in Headers */,
84DA9949196CAD000064A552 /* AFURLResponseSerialization.h in Headers */,
84DA994A196CAD000064A552 /* AFURLSessionManager.h in Headers */,
84DA994B196CAD000064A552 /* AFHTTPRequestOperationManager+RAFMocking.h in Headers */,
84DA9940196CAD000064A552 /* RACSubscriber+AFProgressCallbacks.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
84DA97D0196C9FEA0064A552 /* RACAFNetworking */ = {
isa = PBXNativeTarget;
buildConfigurationList = 84DA97E7196C9FEA0064A552 /* Build configuration list for PBXNativeTarget "RACAFNetworking" */;
buildPhases = (
84DA97CC196C9FEA0064A552 /* Sources */,
84DA97CD196C9FEA0064A552 /* Frameworks */,
84DA97CE196C9FEA0064A552 /* Headers */,
84DA97CF196C9FEA0064A552 /* Resources */,
);
buildRules = (
);
dependencies = (
84DA9886196CA15A0064A552 /* PBXTargetDependency */,
);
name = RACAFNetworking;
productName = RACAFNetworking;
productReference = 84DA97D1196C9FEA0064A552 /* RACAFNetworking.framework */;
productType = "com.apple.product-type.framework";
};
84DA97DB196C9FEA0064A552 /* RACAFNetworkingTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 84DA97EA196C9FEA0064A552 /* Build configuration list for PBXNativeTarget "RACAFNetworkingTests" */;
buildPhases = (
84DA97D8196C9FEA0064A552 /* Sources */,
84DA97D9196C9FEA0064A552 /* Frameworks */,
84DA97DA196C9FEA0064A552 /* Resources */,
);
buildRules = (
);
dependencies = (
84DA9905196CA5180064A552 /* PBXTargetDependency */,
84DA9907196CA5180064A552 /* PBXTargetDependency */,
84DA97DF196C9FEA0064A552 /* PBXTargetDependency */,
84EA3822197378F70014CFF7 /* PBXTargetDependency */,
);
name = RACAFNetworkingTests;
productName = RACAFNetworkingTests;
productReference = 84DA97DC196C9FEA0064A552 /* RACAFNetworkingTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
84DA988B196CA1DF0064A552 /* RACAFNetworking-Mac */ = {
isa = PBXNativeTarget;
buildConfigurationList = 84DA989D196CA1DF0064A552 /* Build configuration list for PBXNativeTarget "RACAFNetworking-Mac" */;
buildPhases = (
84DA9888196CA1DF0064A552 /* Sources */,
84DA9889196CA1DF0064A552 /* Frameworks */,
84DA988A196CA1DF0064A552 /* Headers */,
);
buildRules = (
);
dependencies = (
84DA98B1196CA20E0064A552 /* PBXTargetDependency */,
);
name = "RACAFNetworking-Mac";
productName = "RACAFNetworking-Mac";
productReference = 84DA988C196CA1DF0064A552 /* libRACAFNetworking-Mac.a */;
productType = "com.apple.product-type.library.static";
};
84DA98B6196CA22B0064A552 /* RACAFNetworking-iOS */ = {
isa = PBXNativeTarget;
buildConfigurationList = 84DA98C8196CA22B0064A552 /* Build configuration list for PBXNativeTarget "RACAFNetworking-iOS" */;
buildPhases = (
84DA98B3196CA22B0064A552 /* Sources */,
84DA98B4196CA22B0064A552 /* Frameworks */,
84DA98B5196CA22B0064A552 /* CopyFiles */,
84DA993B196CACE10064A552 /* Headers */,
);
buildRules = (
);
dependencies = (
84DA98D0196CA2450064A552 /* PBXTargetDependency */,
);
name = "RACAFNetworking-iOS";
productName = "RACAFNetworking-iOS";
productReference = 84DA98B7196CA22B0064A552 /* libRACAFNetworking-iOS.a */;
productType = "com.apple.product-type.library.static";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
84DA97C8196C9FEA0064A552 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0600;
ORGANIZATIONNAME = "Robert Widmann";
TargetAttributes = {
84DA97D0196C9FEA0064A552 = {
CreatedOnToolsVersion = 6.0;
};
84DA97DB196C9FEA0064A552 = {
CreatedOnToolsVersion = 6.0;
TestTargetID = 84DA97D0196C9FEA0064A552;
};
84DA988B196CA1DF0064A552 = {
CreatedOnToolsVersion = 6.0;
};
84DA98B6196CA22B0064A552 = {
CreatedOnToolsVersion = 6.0;
};
};
};
buildConfigurationList = 84DA97CB196C9FEA0064A552 /* Build configuration list for PBXProject "RACAFNetworking" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 84DA97C7196C9FEA0064A552;
productRefGroup = 84DA97D2196C9FEA0064A552 /* Products */;
projectDirPath = "";
projectReferences = (
{
ProductGroup = 84DA98E2196CA4F70064A552 /* Products */;
ProjectRef = 84DA98E1196CA4F70064A552 /* Expecta.xcodeproj */;
},
{
ProductGroup = 84DA986E196CA1520064A552 /* Products */;
ProjectRef = 84DA9825196CA07A0064A552 /* ReactiveCocoa.xcodeproj */;
},
{
ProductGroup = 84DA98F4196CA4FB0064A552 /* Products */;
ProjectRef = 84DA98F3196CA4FB0064A552 /* Specta.xcodeproj */;
},
);
projectRoot = "";
targets = (
84DA97D0196C9FEA0064A552 /* RACAFNetworking */,
84DA988B196CA1DF0064A552 /* RACAFNetworking-Mac */,
84DA98B6196CA22B0064A552 /* RACAFNetworking-iOS */,
84DA97DB196C9FEA0064A552 /* RACAFNetworkingTests */,
);
};
/* End PBXProject section */
/* Begin PBXReferenceProxy section */
84DA9878196CA1520064A552 /* ReactiveCocoa.framework */ = {
isa = PBXReferenceProxy;
fileType = wrapper.framework;
path = ReactiveCocoa.framework;
remoteRef = 84DA9877196CA1520064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA987A196CA1520064A552 /* libReactiveCocoa-iOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libReactiveCocoa-iOS.a";
remoteRef = 84DA9879196CA1520064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA987C196CA1520064A552 /* ReactiveCocoaTests.xctest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = ReactiveCocoaTests.xctest;
remoteRef = 84DA987B196CA1520064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA987E196CA1520064A552 /* ReactiveCocoaTests-iOS.xctest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = "ReactiveCocoaTests-iOS.xctest";
remoteRef = 84DA987D196CA1520064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA9880196CA1520064A552 /* ReactiveCocoa-iOS-UIKitTestHost.app */ = {
isa = PBXReferenceProxy;
fileType = wrapper.application;
path = "ReactiveCocoa-iOS-UIKitTestHost.app";
remoteRef = 84DA987F196CA1520064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA9882196CA1520064A552 /* ReactiveCocoa-iOS-UIKitTestHostTests.octest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = "ReactiveCocoa-iOS-UIKitTestHostTests.octest";
remoteRef = 84DA9881196CA1520064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA9884196CA1520064A552 /* libReactiveCocoa-Mac.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libReactiveCocoa-Mac.a";
remoteRef = 84DA9883196CA1520064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA98EA196CA4F70064A552 /* libExpecta.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = libExpecta.a;
remoteRef = 84DA98E9196CA4F70064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA98EC196CA4F70064A552 /* libExpecta-iOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libExpecta-iOS.a";
remoteRef = 84DA98EB196CA4F70064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA98EE196CA4F70064A552 /* ExpectaTests.octest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = ExpectaTests.octest;
remoteRef = 84DA98ED196CA4F70064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA98F0196CA4F70064A552 /* Expecta-iOSTests.octest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = "Expecta-iOSTests.octest";
remoteRef = 84DA98EF196CA4F70064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA98F2196CA4F70064A552 /* ExpectaTests-XCTest.xctest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = "ExpectaTests-XCTest.xctest";
remoteRef = 84DA98F1196CA4F70064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA98FB196CA4FB0064A552 /* libSpecta-iOS.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libSpecta-iOS.a";
remoteRef = 84DA98FA196CA4FB0064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA98FD196CA4FB0064A552 /* libSpecta-OSX.a */ = {
isa = PBXReferenceProxy;
fileType = archive.ar;
path = "libSpecta-OSX.a";
remoteRef = 84DA98FC196CA4FB0064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA98FF196CA4FB0064A552 /* SpectaTests-iOS.xctest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = "SpectaTests-iOS.xctest";
remoteRef = 84DA98FE196CA4FB0064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
84DA9901196CA4FB0064A552 /* Specta-OSXTests.xctest */ = {
isa = PBXReferenceProxy;
fileType = wrapper.cfbundle;
path = "Specta-OSXTests.xctest";
remoteRef = 84DA9900196CA4FB0064A552 /* PBXContainerItemProxy */;
sourceTree = BUILT_PRODUCTS_DIR;
};
/* End PBXReferenceProxy section */
/* Begin PBXResourcesBuildPhase section */
84DA97CF196C9FEA0064A552 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
84DA97DA196C9FEA0064A552 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};