-
Notifications
You must be signed in to change notification settings - Fork 76
/
SBTUITestTunnelCommon.podspec
27 lines (23 loc) · 1.22 KB
/
SBTUITestTunnelCommon.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
Pod::Spec.new do |s|
s.name = "SBTUITestTunnelCommon"
s.version = "11.0.0"
s.summary = "Enable network mocks and more in UI Tests"
s.description = <<-DESC
Use this library to easily setup an HTTP tunnel between our UI Tests cases and the app under test.
The tunnel allows to inject data in order to enabale network mocking.
DESC
s.homepage = "https://github.com/Subito-it/SBTUITestTunnel"
s.license = "Apache License, Version 2.0"
s.author = { "Tomas Camin" => "[email protected]" }
s.source = { :git => "https://github.com/Subito-it/SBTUITestTunnel.git", :tag => s.version.to_s }
s.ios.deployment_target = "12.0"
s.tvos.deployment_target = "12.0"
s.swift_version = "5.0"
s.xcconfig = { "OTHER_LDFLAGS" => "-ObjC" }
s.pod_target_xcconfig = { :prebuild_configuration => "debug" }
s.library = "z"
s.static_framework = true
s.source_files = ["Sources/SBTUITestTunnelCommon/**/*.{h,m}", "Sources/SBTUITestTunnelCommonSwift/**/*.{swift}"]
s.requires_arc = false
s.requires_arc = ["Sources/SBTUITestTunnelCommon/*.{m}", "Sources/SBTUITestTunnelCommon/DetoxIPC/*.{m}", "Sources/SBTUITestTunnelCommon/DetoxIPC/Apple/**/*.{m}", "Sources/SBTUITestTunnelCommon/DetoxIPC/DTXObjectiveCHelpers/**/*.{m}"]
end