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 pathLayoutTest.podspec
More file actions
Latest commit
33 lines (29 loc) · 1.21 KB
/
Copy pathLayoutTest.podspec
File metadata and controls
33 lines (29 loc) · 1.21 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
Pod::Spec.newdo |spec|
spec.name='LayoutTest'
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='LayoutTest enables you to write unit tests which test the layout of a view in multiple configurations.'
spec.source={:git=>'https://github.com/linkedin/LayoutTest-iOS.git',:tag=>spec.version}
spec.platform=:ios,'12.0'
spec.default_subspecs='TestCase'
spec.swift_version='5.0'
spec.subspec'Swift'do |sp|
sp.dependency'LayoutTest/SwiftSubspec'
end
spec.subspec'TestCase'do |sp|
sp.source_files='LayoutTest/TestCase'
sp.dependency'LayoutTestBase/Autolayout'
sp.dependency'LayoutTestBase/Catalog'
sp.dependency'LayoutTestBase/Config'
sp.dependency'LayoutTestBase/Core'
sp.dependency'LayoutTestBase/UIViewHelpers'
sp.framework='XCTest'
end
spec.subspec'SwiftSubspec'do |sp|
sp.source_files='LayoutTest/Swift','LayoutTest/LayoutTest.h'
sp.dependency'LayoutTest/TestCase'
sp.dependency'LayoutTestBase/Swift'
end
end