-
Notifications
You must be signed in to change notification settings - Fork 26
/
Podfile
44 lines (38 loc) · 1.15 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
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
project 'Yippy', {
'Debug' => :debug,
'Release' => :release,
'Beta Debug' => :debug,
'Beta Release' => :release,
'XCTest' => :debug
}
target 'Yippy' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Yippy
pod 'Default'
pod 'LoginServiceKit', :git => 'https://github.com/Clipy/LoginServiceKit.git'
pod 'RxSwift', '~> 5'
pod 'RxCocoa', '~> 5'
target 'YippyTests' do
inherit! :search_paths
# Pods for testing
pod 'RxBlocking', '~> 5'
pod 'RxTest', '~> 5'
pod 'Default'
pod 'LoginServiceKit', :git => 'https://github.com/Clipy/LoginServiceKit.git'
pod 'RxSwift', '~> 5'
pod 'RxCocoa', '~> 5'
end
target 'YippyUITests' do
inherit! :search_paths
# Pods for testing
pod 'RxBlocking', '~> 5'
pod 'RxTest', '~> 5'
pod 'Default'
pod 'LoginServiceKit', :git => 'https://github.com/Clipy/LoginServiceKit.git'
pod 'RxSwift', '~> 5'
pod 'RxCocoa', '~> 5'
end
end