-
Notifications
You must be signed in to change notification settings - Fork 92
/
ResponseDetective.podspec
61 lines (43 loc) · 1.21 KB
/
ResponseDetective.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#
# ResponseDetective.podspec
#
# Copyright © 2017-2020 Netguru S.A. All rights reserved.
# Licensed under the MIT License.
#
Pod::Spec.new do |spec|
# Description
spec.name = 'ResponseDetective'
spec.version = '1.5.0'
spec.summary = 'Sherlock Holmes of the networking layer'
spec.homepage = 'https://github.com/netguru/ResponseDetective'
# License
spec.license = {
type: 'MIT',
file: 'LICENSE.md'
}
spec.authors = {
'Adrian Kashivskyy' => 'adrian.kashivskyy@netguru.co',
'Aleksander Popko' => 'aleksander.popko@netguru.co'
}
# Source
spec.source = {
git: 'https://github.com/netguru/ResponseDetective.git',
tag: spec.version.to_s
}
spec.source_files = 'ResponseDetective/Sources'
spec.module_map = 'ResponseDetective/Resources/Framework.modulemap'
# Linking
spec.frameworks = 'Foundation'
spec.libraries = 'xml2'
spec.ios.frameworks = 'UIKit'
spec.osx.frameworks = 'AppKit'
# Settings
spec.swift_version = '5.2'
spec.requires_arc = true
spec.ios.deployment_target = '8.0'
spec.osx.deployment_target = '10.10'
spec.tvos.deployment_target = '9.0'
spec.pod_target_xcconfig = {
'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2'
}
end