-
Notifications
You must be signed in to change notification settings - Fork 0
/
YAHTTPVCR.podspec
37 lines (33 loc) · 1.25 KB
/
YAHTTPVCR.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
Pod::Spec.new do |spec|
spec.name = 'YAHTTPVCR'
spec.version = '1.5.0'
spec.summary = 'Yet Another HTTP VCR.'
spec.homepage = 'https://github.com/parfeon/YAHTTPVCR'
spec.documentation_url = 'https://github.com/parfeon/YAHTTPVCR/wiki'
spec.authors = {
'Serhii Mamontov' => '[email protected]'
}
spec.social_media_url = 'https://twitter.com/parfeon'
spec.source = {
:git => 'https://github.com/parfeon/YAHTTPVCR.git',
:tag => "v#{spec.version}"
}
spec.ios.deployment_target = '9.0'
spec.osx.deployment_target = '10.11'
spec.tvos.deployment_target = '9.0'
spec.requires_arc = true
spec.source_files = 'YAHTTPVCR/**/*', 'YAHTTPVCR/YAHTTPVCR.h'
spec.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'NO' }
spec.private_header_files = [
'YAHTTPVCR/Core/YHVVCR+{Recorder,Player}.h',
'YAHTTPVCR/Matchers/*.h',
'YAHTTPVCR/Misc/{Categories,Helpers}/*.h',
'YAHTTPVCR/Misc/Protocols/{YHVNSURLProtocol,YHVSerializableDataProtocol}.h',
'YAHTTPVCR/Misc/YHVPrivateStructures.h',
'YAHTTPVCR/Data/YHVScene.h',
'YAHTTPVCR/**/*Private.h'
]
spec.library = 'z'
spec.framework = 'XCTest'
spec.license = 'MIT'
end