forked from DataDog/dd-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestUtilities.podspec
37 lines (28 loc) · 1.08 KB
/
TestUtilities.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 |s|
s.name = "TestUtilities"
s.version = "2.7.1"
s.summary = "Datadog Testing Utilities. This module is for internal testing and should not be published."
s.homepage = "https://www.datadoghq.com"
s.social_media_url = "https://twitter.com/datadoghq"
s.license = { :type => "Apache", :file => 'LICENSE' }
s.authors = {
"Maciek Grzybowski" => "maciek.grzybowski@datadoghq.com",
"Maciej Burda" => "maciej.burda@datadoghq.com",
"Maxime Epain" => "maxime.epain@datadoghq.com",
"Ganesh Jangir" => "ganesh.jangir@datadoghq.com"
}
s.swift_version = '5.7.1'
s.ios.deployment_target = '11.0'
s.tvos.deployment_target = '11.0'
s.source = { :git => "https://github.com/DataDog/dd-sdk-ios.git", :tag => s.version.to_s }
s.pod_target_xcconfig = {
'ENABLE_TESTING_SEARCH_PATHS'=>'YES'
}
s.framework = 'XCTest'
s.source_files = [
"TestUtilities/Helpers/**/*.swift",
"TestUtilities/Mocks/**/*.swift",
"TestUtilities/Matchers/**/*.swift",
]
s.dependency 'DatadogInternal'
end