-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathPodfile
53 lines (43 loc) · 754 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
use_frameworks!
inhibit_all_warnings!
def shared_pods
ui_pods
rx_pods
db_pods
networking_pods
etc_pods
end
def ui_pods
pod 'FluidHighlighter'
pod 'AwaitToast'
pod 'PanModal'
end
def rx_pods
pod 'RxSwift'
pod 'RxDataSources', '~> 3.0'
pod 'RxGesture'
end
def db_pods
pod 'RealmWrapper'
end
def networking_pods
pod 'Moya/RxSwift', '~> 12.0'
pod 'Kingfisher', '~> 5.0'
end
def etc_pods
pod 'Fabric'
pod 'Crashlytics'
pod 'SwiftLint'
pod 'AcknowList'
end
target 'GiTiny' do
shared_pods
target 'GiTinyTests' do
inherit! :search_paths
end
end
target 'GiTinyUITests' do
shared_pods
end