-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
49 lines (39 loc) · 1.27 KB
/
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
42
43
44
45
46
47
48
49
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
platform :ios, '9.3'
target 'Podo' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for main target
pod 'SnapKit', '~> 4.0'
pod 'R.swift', '~> 4.0'
pod 'RxSwift', '~> 4.0'
pod 'RxCocoa', '~> 4.0'
pod 'Swinject', '~> 2.0'
pod 'RealmSwift', '~> 3.2'
pod 'EmptyDataSet-Swift', '~> 4.0'
pod 'RxDataSources', '~> 3.0'
pod 'SwiftLint', '~> 0.1'
pod 'Fabric', '~> 1.5'
pod 'Crashlytics', '~> 3.0'
pod 'PKHUD', '~> 5.0'
pod 'Firebase/Core', '~> 5.1'
pod 'Firebase/Database', '~> 5.0'
pod 'BSK', :git => 'https://github.com/m3g0byt3/BSK.git', :branch => 'experimental/strict-credit-card-initializer'
target 'PodoTests' do
inherit! :search_paths
# Pods for testing
pod 'Quick', '~> 1.2'
pod 'Nimble', '~> 7.0'
pod 'RxBlocking', '~> 4.0'
pod 'RxTest', '~> 4.0'
end
target 'PodoUITests' do
inherit! :search_paths
# Pods for testing
pod 'Quick', '~> 1.2'
pod 'Nimble', '~> 7.0'
pod 'RxBlocking', '~> 4.0'
pod 'RxTest', '~> 4.0'
end
end