-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathPodfile
More file actions
44 lines (36 loc) · 977 Bytes
/
Podfile
File metadata and controls
44 lines (36 loc) · 977 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
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'BringMyOwnBeer🍺' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for BringMyOwnBeer🍺
# RxSwift + Dependencies
pod 'RxSwift', '~> 4.4.0'
pod 'RxCocoa', '~> 4.4.0'
pod 'RxOptional', '~> 3.6.2'
pod 'RxKeyboard', '~> 0.9.0'
pod 'RxAppState'
pod 'RxDataSources', '~> 3.1.0'
# Image + Animation + UI
pod 'Kingfisher', '~> 4.10.1'
pod 'Toaster', '~> 2.1.0'
pod 'SnapKit', '~> 4.2.0'
# Other Swift Utilities
pod 'Then', '~> 2.4.0'
def testing_pods
pod 'Quick', '~> 1.3.1'
pod 'Nimble', '~> 8.0.0'
pod 'RxBlocking', '~> 4.0'
pod 'RxTest', '~> 4.0'
end
target 'BringMyOwnBeer🍺Tests' do
inherit! :search_paths
# Pods for testing
testing_pods
end
target 'BringMyOwnBeer🍺UITests' do
inherit! :search_paths
# Pods for testing
testing_pods
end
end