forked from devxoul/RxTodo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
40 lines (32 loc) · 736 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
platform :ios, '8.0'
target 'RxTodo' do
use_frameworks!
# Architecture
pod 'ReactorKit'
# Rx
pod 'RxSwift', '~> 3.1'
pod 'RxCocoa', '~> 3.1'
pod 'RxDataSources', '~> 1.0'
pod 'RxOptional', '~> 3.1'
# UI
pod 'SnapKit', '~> 3.0'
pod 'ManualLayout', '~> 1.3'
# Misc.
pod 'Then', '~> 2.1'
pod 'ReusableKit', '~> 1.1'
pod 'CGFloatLiteral', '~> 0.2'
pod 'URLNavigator'
# Testing
target 'RxTodoTests' do
pod 'RxTest', '~> 3.1'
pod 'RxExpect', '~> 0.3'
pod 'RxOptional', '~> 3.1'
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end