-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
47 lines (33 loc) · 791 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
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
def ui_pods
pod 'SnapKit', '~> 4.0.0'
end
def helper_pods
pod 'Swinject', '~> 2.1.0'
pod 'SwinjectStoryboard', '1.1.2'
pod 'R.swift'
end
def net_pods
pod 'Moya'
pod 'Moya/RxSwift'
pod 'Kingfisher', '~> 4.0'
end
def test_pods
pod 'Nimble', '~> 7.0.0'
end
target 'GithubGists' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for GithubGists
ui_pods
net_pods
helper_pods
end
target 'GithubGistsTests' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for GithubGists
net_pods
test_pods
end