forked from spotify/SPTDataLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSPTDataLoader.podspec
34 lines (28 loc) · 1.28 KB
/
SPTDataLoader.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
Pod::Spec.new do |s|
s.name = "SPTDataLoader"
s.version = "1.1.1"
s.summary = "SPTDataLoader is Spotify’s HTTP library for Objective-C"
s.description = <<-DESC
Authentication and back-off logic is a pain, let’s do it
once and forget about it! This is a library that allows you
to centralise this logic and forget about the ugly parts of
making HTTP requests.
DESC
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.homepage = "https://github.com/spotify/SPTDataLoader"
s.social_media_url = "https://twitter.com/spotifyeng"
s.license = "Apache 2.0"
s.author = {
"Will Sackfield" => "[email protected]"
}
s.source = { :git => "https://github.com/spotify/SPTDataLoader.git", :tag => s.version }
s.source_files = "include/SPTDataLoader/*.h", "SPTDataLoader/*.{h,m}"
s.public_header_files = "include/SPTDataLoader/*.h"
s.framework = "Security"
s.xcconfig = {
"OTHER_LDFLAGS" => "-lObjC"
}
end