Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathLayoutTestBase.podspec
More file actions
Latest commit
46 lines (39 loc) · 1.63 KB
/
Copy pathLayoutTestBase.podspec
File metadata and controls
46 lines (39 loc) · 1.63 KB
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
Pod::Spec.newdo |spec|
spec.name='LayoutTestBase'
spec.version='6.1.0'
spec.license={:type=>'Apache License, Version 2.0'}
spec.homepage='https://linkedin.github.io/LayoutTest-iOS'
spec.authors='LinkedIn'
spec.summary='Base library for LayoutTest without XCTest dependency. LayoutTest enables you to write unit tests which test the layout of views.'
spec.source={:git=>'https://github.com/linkedin/LayoutTest-iOS.git',:tag=>spec.version}
spec.platform=:ios,'12.0'
spec.frameworks='Foundation','UIKit'
spec.default_subspecs='Core','Autolayout','Catalog','Config','UIViewHelpers'
spec.swift_version='5.0'
spec.subspec'Swift'do |sp|
sp.source_files='LayoutTestBase/Swift/**/*','LayoutTestBase/LayoutTestBase.h'
sp.dependency'LayoutTestBase/Core'
sp.dependency'LayoutTestBase/Autolayout'
sp.dependency'LayoutTestBase/Catalog'
sp.dependency'LayoutTestBase/Config'
sp.dependency'LayoutTestBase/UIViewHelpers'
end
spec.subspec'Core'do |sp|
sp.source_files='LayoutTestBase/Core/**/*'
sp.dependency'LayoutTestBase/Config'
end
spec.subspec'Autolayout'do |sp|
sp.source_files='LayoutTestBase/Autolayout'
end
spec.subspec'Catalog'do |sp|
sp.source_files='LayoutTestBase/Catalog'
sp.dependency'LayoutTestBase/Core'
end
spec.subspec'Config'do |sp|
sp.source_files='LayoutTestBase/Config'
end
spec.subspec'UIViewHelpers'do |sp|
sp.source_files='LayoutTestBase/UIViewHelpers'
sp.dependency'LayoutTestBase/Config'
end
end