-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
55 lines (43 loc) · 915 Bytes
/
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
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
inhibit_all_warnings!
target 'BookSeeker' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
def rxswift_pods
pod 'RxSwift'
pod 'RxCocoa'
end
def networking_pods
pod 'Alamofire', '5.4.3'
end
def kingfisher_pods
pod 'Kingfisher', '~> 5.0'
end
def dependency_injection_pods
pod 'Swinject'
end
def reusepods
networking_pods
rxswift_pods
kingfisher_pods
dependency_injection_pods
end
def test_pods
pod 'Quick'
pod 'Nimble'
end
# Pods for BookSeeker
reusepods
pod 'SwiftLint', '~> 0.33'
target 'BookSeekerTests' do
inherit! :search_paths
test_pods
pod 'Swifter', '~> 1.5.0'
end
target 'BookSeekerUITests' do
inherit! :search_paths
test_pods
reusepods
end
end