-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
68 lines (55 loc) · 1.02 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
require 'fileutils'
source 'https://github.com/CocoaPods/Specs.git'
workspace 'WeatherForecast.xcworkspace'
use_frameworks!
platform :ios, '13.0'
inhibit_all_warnings!
def common
pod 'SwiftLint'
pod 'XCGLogger'
end
def platform_app_common
pod 'Moya'
pod 'RealmSwift'
end
def test_common
pod 'Quick'
pod 'Nimble'
pod 'Cuckoo'
end
target 'WeatherForecast' do
inhibit_all_warnings!
inherit! :search_paths
common
platform_app_common
pod 'SVProgressHUD'
pod 'Wormholy', :configuration => ['Debug']
end
target 'WeatherForecastTests' do
inherit! :search_paths
test_common
common
platform_app_common
pod 'SVProgressHUD'
pod 'Wormholy', :configuration => ['Debug']
end
target 'Domain' do
inherit! :search_paths
common
end
target 'DomainTests' do
inherit! :search_paths
common
test_common
end
target 'Platform' do
inherit! :search_paths
common
platform_app_common
end
target 'PlatformTests' do
inherit! :search_paths
test_common
common
platform_app_common
end