forked from linkedin/LayoutTest-iOS
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLayoutTestBase.podspec
More file actions
Latest commit
35 lines (30 loc) · 1.26 KB
/
Copy pathLayoutTestBase.podspec
File metadata and controls
35 lines (30 loc) · 1.26 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
Pod::Spec.newdo |spec|
spec.name='LayoutTestBase'
spec.version='1.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=>'1.1.0'}
spec.platform=:ios,'7.0'
spec.frameworks='Foundation','UIKit'
spec.default_subspecs='Core','Autolayout','Catalog','Config','UIViewHelpers'
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