-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathTutorial5.podspec
31 lines (25 loc) · 967 Bytes
/
Tutorial5.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
Pod::Spec.new do |s|
s.name = 'Tutorial5'
s.version = '1.0.0.LOCAL'
s.summary = 'See the README.'
s.homepage = 'https://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.resource_bundle = { 'TutorialResources' => ['Resources/**/*'] }
s.dependency 'TutorialViews'
s.dependency 'Workflow'
s.dependency 'WorkflowUI'
s.dependency 'BackStackContainer'
s.dependency 'WorkflowReactiveSwift'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/**/*.swift'
test_spec.framework = 'XCTest'
test_spec.dependency 'WorkflowTesting'
end
end