-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathSplitScreenContainer.podspec
41 lines (31 loc) · 1.18 KB
/
SplitScreenContainer.podspec
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
Pod::Spec.new do |s|
s.name = 'SplitScreenContainer'
s.version = '1.0.0.LOCAL'
s.summary = 'See the README.'
s.homepage = 'https://www.github.com/square/workflow-swift'
s.license = 'Apache License, Version 2.0'
s.author = 'Square'
s.source = { git: 'Not Published', tag: "podify/#{s.version}" }
# 1.7 is needed for `swift_versions` support
s.cocoapods_version = '>= 1.7.0'
s.swift_versions = [WORKFLOW_SWIFT_VERSION]
s.ios.deployment_target = WORKFLOW_IOS_DEPLOYMENT_TARGET
s.source_files = 'Sources/**/*.swift'
s.dependency 'Workflow'
s.dependency 'WorkflowUI'
s.app_spec 'DemoApp' do |app_spec|
app_spec.source_files = 'DemoApp/**/*.swift'
end
s.test_spec 'SnapshotTests' do |test_spec|
test_spec.requires_app_host = true
test_spec.source_files = 'SnapshotTests/**/*.swift'
test_spec.framework = 'XCTest'
test_spec.dependency 'iOSSnapshotTestCase'
test_spec.scheme = {
environment_variables: {
'FB_REFERENCE_IMAGE_DIR' => '$PODS_TARGET_SRCROOT/SnapshotTests/ReferenceImages',
'IMAGE_DIFF_DIR' => '$PODS_TARGET_SRCROOT/SnapshotTests/FailureDiffs'
}
}
end
end