-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #467 from DataDog/buranmert/RUMM-1172-make-bump-al…
…amofire RUMM-1172 AFExtension included in make bump (cherry picked from commit ddb4dbd)
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "DatadogSDKAlamofireExtension" | ||
s.module_name = "DatadogAlamofireExtension" | ||
s.version = "__DATADOG_VERSION__" | ||
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" => "[email protected]", | ||
"Mert Buran" => "[email protected]", | ||
"Alexandre Costanza" => "[email protected]" | ||
} | ||
|
||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters