- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProtocolProxy.podspec
More file actions
Latest commit
39 lines (32 loc) · 1.76 KB
/
Copy pathProtocolProxy.podspec
File metadata and controls
39 lines (32 loc) · 1.76 KB
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
Pod::Spec.newdo |s|
s.name="ProtocolProxy"
s.version="0.1.2"
s.summary="Flexible proxy for overriding and observing protocol method/property messages"
s.description=<<-DESC
A small helper library that provides a proxy class for overriding and observing method and property messages from one or more protocols
DESC
s.homepage="https://github.com/SomeRandomiOSDev/ProtocolProxy"
s.license="MIT"
s.author={"Joe Newton"=>"somerandomiosdev@gmail.com"}
s.source={:git=>"https://github.com/SomeRandomiOSDev/ProtocolProxy.git",:tag=>s.version.to_s}
s.ios.deployment_target='9.0'
s.macos.deployment_target='10.10'
s.tvos.deployment_target='9.0'
s.watchos.deployment_target='2.0'
s.public_header_files='Sources/ProtocolProxy/include/ProtocolProxy.h'
s.source_files='Sources/ProtocolProxy/**/*.{h,m}','Sources/ProtocolProxySwift/*.swift'
s.swift_versions=['5.0']
s.cocoapods_version='>= 1.7.3'
s.test_spec'Tests'do |ts|
ts.ios.deployment_target='9.0'
ts.macos.deployment_target='10.10'
ts.tvos.deployment_target='9.0'
ts.watchos.deployment_target='2.0'
ts.pod_target_xcconfig={'SWIFT_INCLUDE_PATHS'=>'$PODS_TARGET_SRCROOT/Tests/ProtocolProxyTestsBase/include',
'HEADER_SEARCH_PATHS'=>'$PODS_TARGET_SRCROOT/Tests/ProtocolProxyTestsBase/include'}
ts.preserve_paths='Tests/ProtocolProxyTestsBase/include/module.modulemap'
ts.source_files='Tests/ProtocolProxyObjCTests/*.m',
'Tests/ProtocolProxySwiftTests/*.swift',
'Tests/ProtocolProxyTestsBase/**/*{h,m}'
end
end