forked from DataDog/dd-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDatadogSDKAlamofireExtension.podspec
More file actions
26 lines (21 loc) · 975 Bytes
/
DatadogSDKAlamofireExtension.podspec
File metadata and controls
26 lines (21 loc) · 975 Bytes
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
Pod::Spec.new do |s|
s.name = "DatadogSDKAlamofireExtension"
s.module_name = "DatadogAlamofireExtension"
s.version = "1.6.0-alpha1"
s.summary = "An Official Extensions of Datadog Swift SDK for Alamofire."
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",
"Mert Buran" => "mert.buran@datadoghq.com",
"Alexandre Costanza" => "alexandre.costanza@datadoghq.com"
}
s.swift_version = '5.1'
s.ios.deployment_target = '11.0'
# :tag must follow DatadogSDK version below
s.source = { :git => "https://github.com/DataDog/dd-sdk-ios.git", :tag => s.version.to_s }
s.source_files = ["Sources/DatadogExtensions/Alamofire/**/*.swift"]
s.dependency 'DatadogSDK', s.version.to_s
s.dependency 'Alamofire', '~> 5.0'
end