forked from liuznsn/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPodfile
41 lines (32 loc) · 839 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
# Uncomment this line to define a global platform for your project
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
target 'Boilerplate' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'Moya/RxSwift'
pod 'Result'
pod 'RxBlocking'
pod 'RxCocoa'
pod 'RxSwift'
pod 'RxOptional'
# pod 'Traits', '~> 0.1'
pod 'RxDataSources'
pod 'KeychainAccess', '~> 3.1.1'
pod 'XLPagerTabStrip'
pod 'SVProgressHUD'
pod 'SwiftIconFont'
pod 'SDWebImage'
# Pods for Boilerplate
target 'BoilerplateTests' do
inherit! :search_paths
pod 'Quick'
pod 'Nimble'
pod 'RxTest'
# Pods for testing
end
target 'BoilerplateUITests' do
inherit! :search_paths
# Pods for testing
end
end