-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
40 lines (31 loc) · 655 Bytes
/
Podfile
File metadata and controls
40 lines (31 loc) · 655 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
platform :ios, '11.0'
plugin 'cocoapods-keys', {
:project => "GithubBrowser",
:keys => [
"GithubClientId",
"GithubClientSecret"
]}
def libraries
pod 'SnapKit', '~> 5.0'
pod 'Swinject'
pod 'SwinjectAutoregistration'
pod 'Kingfisher'
pod 'SVProgressHUD'
pod 'R.swift', '~> 5.0'
pod 'SwiftLint', '~> 0.38'
end
def testing_libraries
pod 'Quick', '~> 2.2'
pod 'Nimble', '~> 8.0'
pod 'SnapshotTesting', '~> 1.6'
pod 'Sourcery', '~> 0.17.0'
end
target 'GithubBrowser' do
inhibit_all_warnings!
use_frameworks!
libraries
target 'GithubBrowserTests' do
inherit! :search_paths
testing_libraries
end
end