-
Notifications
You must be signed in to change notification settings - Fork 124
/
Podfile
56 lines (42 loc) · 1.02 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
platform :ios, '12.4'
workspace 'App.xcworkspace'
project 'App.xcodeproj'
def networking_pod
pod 'Networking', :path => 'DevPods/Networking', :testspecs => ['Tests']
end
def authentication_pod
pod 'Authentication', :path => 'DevPods/Authentication'
end
def movies_search_pod
pod 'MoviesSearch', :path => 'DevPods/MoviesSearch', :testspecs => ['Tests']
end
def development_pods
networking_pod
authentication_pod
movies_search_pod
end
target 'App' do
use_frameworks!
# Pods for App
development_pods
end
target 'AppUITests' do
use_frameworks!
# Pods for testing
development_pods
end
target 'Networking_Example' do
use_frameworks!
project 'DevPods/Networking/Example/Networking.xcodeproj'
networking_pod
end
target 'Authentication_Example' do
use_frameworks!
project 'DevPods/Authentication/Example/Authentication.xcodeproj'
authentication_pod
end
target 'MoviesSearch_Example' do
use_frameworks!
project 'DevPods/MoviesSearch/Example/MoviesSearch.xcodeproj'
movies_search_pod
end