-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
44 lines (37 loc) · 1.51 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
platform :ios, '11.1'
swift_version = '4.0'
use_frameworks!
target 'StaticDI' do
pod 'RxSwift', :git => 'https://github.com/ReactiveX/RxSwift.git', :tag => '4.0.0-rc.0'
pod 'Sourcery', :git => 'https://github.com/krzysztofzablocki/Sourcery.git', :tag => '0.9.0'
pod 'SwiftLint'
target 'Presentation' do
pod 'RxCocoa', :git => 'https://github.com/ReactiveX/RxSwift.git', :tag => '4.0.0-rc.0'
target 'PresentationTests' do
inherit! :search_paths
pod 'Quick', :git => 'https://github.com/Quick/Quick.git', :tag => 'v1.2.0'
pod 'Nimble', :git => 'https://github.com/Quick/Nimble.git', :tag => 'v7.0.2'
pod 'RxTest', :git => 'https://github.com/ReactiveX/RxSwift.git', :tag => '4.0.0-rc.0'
end
end
target 'Domain' do
target 'DomainTests' do
inherit! :search_paths
pod 'Quick', :git => 'https://github.com/Quick/Quick.git', :tag => 'v1.2.0'
pod 'Nimble', :git => 'https://github.com/Quick/Nimble.git', :tag => 'v7.0.2'
pod 'RxBlocking', :git => 'https://github.com/ReactiveX/RxSwift.git', :tag => '4.0.0-rc.0'
end
end
target 'Infrastructure' do
pod 'RealmSwift'
target 'InfrastructureTests' do
inherit! :search_paths
pod 'Quick', :git => 'https://github.com/Quick/Quick.git', :tag => 'v1.2.0'
pod 'Nimble', :git => 'https://github.com/Quick/Nimble.git', :tag => 'v7.0.2'
pod 'RxBlocking', :git => 'https://github.com/ReactiveX/RxSwift.git', :tag => '4.0.0-rc.0'
end
end
target 'Utility' do
pod 'SwiftyBeaver'
end
end