-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathWorkflowTesting.podspec
More file actions
31 lines (24 loc) · 997 Bytes
/
WorkflowTesting.podspec
File metadata and controls
31 lines (24 loc) · 997 Bytes
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
require_relative('version')
Pod::Spec.new do |s|
s.name = 'WorkflowTesting'
s.version = WORKFLOW_VERSION
s.summary = 'Reactive application architecture'
s.homepage = 'https://www.github.com/square/workflow-swift'
s.license = 'Apache License, Version 2.0'
s.author = 'Square'
s.source = { :git => 'https://github.com/square/workflow-swift.git', :tag => "v#{s.version}" }
# 1.7 is needed for `swift_versions` support
s.cocoapods_version = '>= 1.7.0'
s.swift_versions = ['5.0']
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.source_files = 'WorkflowTesting/Sources/**/*.swift'
s.dependency 'Workflow', "#{s.version}"
s.dependency 'WorkflowUI', "#{s.version}"
s.framework = 'XCTest'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'WorkflowTesting/Tests/**/*.swift'
test_spec.framework = 'XCTest'
test_spec.libraries = 'swiftDispatch', 'swiftFoundation', 'swiftos'
end
end