-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
63 lines (53 loc) · 973 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
use_frameworks!
inhibit_all_warnings!
workspace 'NASAImages'
platform :ios, '11.0'
def alamofire
pod 'Alamofire', '~> 5'
end
def base_rx_pods
pod 'RxSwift', '~> 5'
pod 'RxCocoa', '~> 5'
end
def rswift
pod 'R.swift', '~> 5.1.0'
end
def snap_kit
pod 'SnapKit', '~> 5.0.0'
end
def swiftlint
pod 'SwiftLint', '~> 0.39.0'
end
def netfox
pod 'netfox', '~> 1.19.0', :configurations => ['Debug']
end
target 'NASAImages' do
alamofire
base_rx_pods
rswift
snap_kit
swiftlint
netfox
pod 'Toast-Swift', '~> 5.0.1'
pod 'Kingfisher', '~> 5.0'
end
target 'NASAImagesCore' do
project 'NASAImagesCore/NASAImagesCore.xcodeproj'
base_rx_pods
swiftlint
snap_kit
end
target 'NASAImagesService' do
project 'NASAImagesService/NASAImagesService.xcodeproj'
alamofire
base_rx_pods
swiftlint
netfox
end
target 'NASAImagesNetwork' do
project 'NASAImagesNetwork/NASAImagesNetwork.xcodeproj'
alamofire
base_rx_pods
rswift
swiftlint
end