forked from square/workflow-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathViewEnvironment.podspec
23 lines (18 loc) · 943 Bytes
/
ViewEnvironment.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative('version')
Pod::Spec.new do |s|
s.name = 'ViewEnvironment'
s.version = WORKFLOW_VERSION
s.summary = 'A collection of environment values propagated through a view hierarchy.'
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 = [WORKFLOW_SWIFT_VERSION]
s.ios.deployment_target = WORKFLOW_IOS_DEPLOYMENT_TARGET
s.osx.deployment_target = WORKFLOW_MACOS_DEPLOYMENT_TARGET
s.watchos.deployment_target = WORKFLOW_WATCHOS_DEPLOYMENT_TARGET
s.source_files = 'ViewEnvironment/Sources/**/*.swift'
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
end