-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
51 lines (39 loc) · 705 Bytes
/
Copy pathPodfile
File metadata and controls
51 lines (39 loc) · 705 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
use_frameworks!
target 'StudyDesignPattern' do
#Architecture
pod 'ReactorKit'
pod 'RxFlow'
# Rx
pod "RxSwift"
pod "RxCocoa"
pod "RxSwiftExt"
pod "RxOptional"
pod "RxViewController"
pod "RxAnimated"
#UI
pod "SnapKit"
pod "Reusable"
pod "Kingfisher"
#DI
pod 'Swinject'
#Lint
pod 'SwiftLint'
# Network
pod 'Moya'
## Parsing
pod 'SwiftyJSON'
# Misc.
pod "Then"
pod "SwiftyUserDefaults"
pod 'RxDataSources'
pod 'Result', '~> 5.0'
# Log
pod 'CocoaLumberjack/Swift'
target 'StudyDesignPatternTests' do
inherit! :search_paths
pod 'Quick'
pod 'Nimble'
pod 'RxTest'
pod 'RxBlocking'
end
end