-
Notifications
You must be signed in to change notification settings - Fork 7
/
TinkoffConcurrencyTesting.podspec
30 lines (24 loc) · 1.26 KB
/
TinkoffConcurrencyTesting.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
Pod::Spec.new do |s|
s.name = 'TinkoffConcurrencyTesting'
s.version = '2.0.2'
s.summary = 'A toolset that makes Swift Concurrency testing a bit easier.'
s.description = <<-DESC
A set of tools that would help testing parts of code combining synchronous and asynchronous parts
DESC
s.homepage = 'https://github.com/tinkoff-mobile-tech/TinkoffConcurrency'
s.license = { :type => 'Apache License 2.0', :file => 'LICENSE' }
s.author = { 'Timur Khamidov' => '[email protected]',
'Aleksandr Darovskikh' => '[email protected]' }
s.source = { :git => 'https://github.com/tinkoff-mobile-tech/TinkoffConcurrency.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
# s.watchos.deployment_target = '6.0'
s.tvos.deployment_target = '13.0'
s.swift_version = '5.5'
s.static_framework = true
s.source_files = 'Development/TinkoffConcurrencyTesting/**/*.{swift,md,docc}'
s.dependency 'TinkoffConcurrency', '2.0.2'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = ["Tests/TinkoffConcurrencyTesting/**/*.swift", "Tests/TestSupport/**/*.swift"]
end
end