forked from borchero/Squid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSquid.podspec
More file actions
33 lines (26 loc) · 835 Bytes
/
Copy pathSquid.podspec
File metadata and controls
33 lines (26 loc) · 835 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
31
32
33
#
# Squid.podspec
# Squid
#
# Created by Oliver Borchert on 10/14/19.
# Copyright (c) 2019 Oliver Borchert. All rights reserved.
#
Pod::Spec.new do |s|
s.name = 'Squid'
s.version = ENV['GITHUB_REF'].split('/')[-1]
s.license = 'MIT'
s.summary = 'Declarative and Reactive Networking in Swift.'
s.homepage = 'https://squid.borchero.com'
s.authors = { 'Oliver Borchert' => 'borchero@icloud.com' }
s.source = {
:git => 'https://github.com/borchero/Squid.git',
:tag => s.version
}
s.documentation_url = 'https://squid.borchero.com'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.swift_versions = ['5.0', '5.1']
s.source_files = 'Sources/Squid/**/*.swift'
end