-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
52 lines (44 loc) · 728 Bytes
/
Copy pathPodfile
File metadata and controls
52 lines (44 loc) · 728 Bytes
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
use_frameworks!
inhibit_all_warnings!
workspace 'Workouts'
platform :ios, '13.0'
def base_rx_pods
pod 'RxSwift', '~> 5'
pod 'RxCocoa', '~> 5'
end
def realm
pod 'RealmSwift', '~> 4.4.0'
end
def rswift
pod 'R.swift', '~> 5.1.0'
end
def snap_kit
pod 'SnapKit', '~> 5.0.0'
end
def swiftlint
pod 'SwiftLint', '~> 0.39.0'
end
target 'Workouts' do
base_rx_pods
realm
rswift
snap_kit
swiftlint
pod 'RxGesture', '~> 3'
pod 'Toast-Swift', '~> 5.0.1'
pod 'Firebase/Analytics'
pod 'Firebase/Firestore'
end
target 'core' do
project 'core/core.xcodeproj'
base_rx_pods
swiftlint
realm
snap_kit
end
target 'service' do
project 'service/service.xcodeproj'
base_rx_pods
swiftlint
realm
end