-
Notifications
You must be signed in to change notification settings - Fork 19
/
Podfile
160 lines (125 loc) · 1.9 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
source 'https://cdn.cocoapods.org/'
workspace 'Pods/_Unused.xcworkspace'
project './AbemaTutorial.xcodeproj'
use_frameworks! :linkage => :static
inhibit_all_warnings!
deployment_target = '13.0'
platform :ios, '13.0'
$rx_version = '6.5.0'
def app_proj
project './AbemaTutorial.xcodeproj'
end
def rxswift
pod 'RxSwift', $rx_version
end
def rxrelay
pod 'RxRelay', $rx_version
end
def rxcocoa
pod 'RxCocoa', $rx_version
end
def rxtest
pod 'RxTest', $rx_version
end
def rxblocking
pod 'RxBlocking', $rx_version
end
def rxaction
pod 'Action', '5.0.0'
end
def unio
pod 'Unio', '0.11.0'
end
target 'AbemaTutorial' do
app_proj
rxswift
rxrelay
rxcocoa
rxaction
unio
## Tool
pod 'SwiftLint', '0.47.0'
pod 'SwiftGen', '6.5.1'
end
target 'Extension' do
rxswift
rxrelay
end
target 'TestExtension' do
rxtest
end
target 'ExtensionTests' do
rxswift
rxrelay
rxtest
end
target 'Domain' do
rxswift
rxrelay
end
target 'DomainTests' do
rxswift
rxrelay
rxtest
end
target 'Repository' do
rxswift
end
target 'RepositoryTests' do
rxswift
rxrelay
rxtest
end
target 'UIComponent' do
rxswift
rxrelay
rxcocoa
unio
end
target 'XcodePreviews' do
rxswift
rxrelay
rxcocoa
unio
end
target 'UILogic' do
rxswift
rxrelay
rxcocoa
unio
end
target 'UILogicTests' do
rxswift
rxrelay
rxcocoa
unio
rxtest
end
target 'UILogicInterface' do
rxswift
rxrelay
rxcocoa
unio
end
target 'UseCase' do
rxswift
rxrelay
end
target 'UseCaseTests' do
rxswift
rxrelay
rxtest
end
target 'UseCaseInterface' do
rxswift
rxrelay
end
post_install do |installer|
# Workaround for Xcode12
# https://qiita.com/temoki/items/46ad22940e819a132435
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end