-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPodfile
More file actions
41 lines (29 loc) · 815 Bytes
/
Podfile
File metadata and controls
41 lines (29 loc) · 815 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
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
target 'MyGithubUserSearch' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for MyGithubUserSearch
# Network
pod 'Moya', '~> 14.0.0'
# Auto-layout
pod 'SnapKit', '~> 5.0.1'
# Image
pod 'Nuke', '~> 8.4.1'
# Rx
pod 'ReactorKit', '~> 2.1.0'
pod 'RxSwift', '~> 5.1.0'
pod 'RxCocoa', '~> 5.1.0'
pod 'RxDataSources', '~> 4.0.1'
pod 'RxGesture', '~> 3.0.0'
pod 'RxSwiftExt', '~> 5.2.0'
# Convenient Logging
pod 'SwiftyBeaver', '~> 1.9.1'
# Etc
target 'MyGithubUserSearchTests' do
inherit! :search_paths
# Pods for testing
pod 'Nimble', '~> 8.0.7'
pod 'RxExpect', '~> 2.0.0'
end
end