-
Notifications
You must be signed in to change notification settings - Fork 7
/
TinkoffConcurrency.podspec
31 lines (26 loc) · 1.45 KB
/
TinkoffConcurrency.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 = 'TinkoffConcurrency'
s.version = '2.0.2'
s.summary = 'A toolset that makes Swift Concurrency a bit easier.'
s.description = <<-DESC
A set of handful tools that would help adopting an existing codebase to Swift Concurrency, including
* A general-purpose cancellables storage
* A robust `withTrowingContinuation` alternative that supports task cancelling and converts all cancelling
contracts to Swift Concurrency requirements.
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/TinkoffConcurrency/**/*.{swift,md,docc}'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = ["Tests/TinkoffConcurrency/**/*.swift", "Tests/TestSupport/**/*.swift"]
end
end