forked from contentful/contentful.objc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
72 lines (46 loc) · 1.62 KB
/
Podfile
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
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/contentful/CocoaPodsSpecs.git'
platform :ios, "6.0"
target "ContentfulDeliveryAPI", :exclusive => true do
pod 'AFNetworking', :inhibit_warnings => true
pod 'ISO8601DateFormatter'
end
target "CDA Tests", :exclusive => true do
platform :ios, "7.0"
pod 'CCLRequestReplay', :git => 'https://github.com/neonichu/CCLRequestReplay.git'
pod 'ContentfulPersistence/CoreData', '>= 0.6.0'
pod 'ContentfulPersistence/Realm', '>= 0.6.0'
pod 'FBSnapshotTestCase'
pod 'OCMock'
pod 'VCRURLConnection', :inhibit_warnings => true
end
target "Catalog", :exclusive => true do
pod 'ContentfulDeliveryAPI', :path => '.'
pod 'PDKTCollectionViewWaterfallLayout'
end
target "ContentfulSeedDatabase", :exclusive => true do
platform :osx, "10.8"
pod 'ContentfulDeliveryAPI', :path => '.'
pod 'ContentfulPersistence/CoreData'
end
target "CoreDataExample", :exclusive => true do
pod 'ContentfulDeliveryAPI', :path => '.'
pod 'ContentfulPersistence/CoreData'
end
target "SeedDatabaseExample", :exclusive => true do
pod 'ContentfulDeliveryAPI', :path => '.'
pod 'ContentfulPersistence/CoreData'
end
target "UFO Example", :exclusive => true do
pod 'ContentfulDeliveryAPI', :path => '.'
pod 'AFNetworking', :inhibit_warnings => true
end
post_install do |installer_or_rep|
# Support both CP 0.36.1 and >= 0.38
installer = installer_or_rep.respond_to?(:installer) ? installer_or_rep.installer : installer_or_rep
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ONLY_ACTIVE_ARCH'] = "NO"
end
end
end