-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
94 lines (65 loc) · 1 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
platform :ios, '12.0'
inhibit_all_warnings!
def swinject
pod 'Swinject', '2.6.2'
end
def swift_lint
pod 'SwiftLint'
end
def tests
pod 'Quick'
pod 'Nimble'
end
target 'Movies' do
use_frameworks!
pod 'Kingfisher'
pod 'SwinjectStoryboard'
pod 'Firebase/Analytics'
pod 'Fabric'
pod 'Crashlytics'
pod 'FLEX', :configurations => ['Debug (Development)']
swinject
swift_lint
target 'MoviesTests' do
use_frameworks!
tests
end
end
target 'Domain' do
use_frameworks!
swinject
swift_lint
target 'DomainTests' do
use_frameworks!
tests
end
end
target 'Data' do
use_frameworks!
swinject
swift_lint
target 'DataTests' do
use_frameworks!
tests
end
end
target 'Net' do
use_frameworks!
pod 'Alamofire'
swinject
swift_lint
target 'NetTests' do
use_frameworks!
tests
end
end
target 'Database' do
use_frameworks!
pod 'CoreStore'
swinject
swift_lint
target 'DatabaseTests' do
use_frameworks!
tests
end
end