Skip to content
This repository was archived by the owner on Sep 30, 2025. It is now read-only.

Commit b0b99ed

Browse files
committed
Add a podspec
1 parent 9e2114f commit b0b99ed

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

SPTDataLoader.podspec

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Pod::Spec.new do |s|
2+
3+
s.name = "SPTDataLoader"
4+
s.version = "1.0.0"
5+
s.summary = "SPTDataLoader is Spotify's HTTP library for Objective-C"
6+
7+
s.description = <<-DESC
8+
Authentication and back-off logic is a pain, let's do it
9+
once and forget about it! This is a library that allows you
10+
to centralise this logic and forget about the ugly parts of
11+
making HTTP requests.
12+
DESC
13+
14+
s.homepage = "https://github.com/spotify/SPTDataLoader"
15+
s.license = "Apache 2.0"
16+
s.author = { "Will Sackfield" => "sackfield@spotify.com" }
17+
s.platform = :ios, "7.0"
18+
s.source = { :git => "https://github.com/spotify/SPTDataLoader.git", :tag => "1.0.0" }
19+
s.source_files = "include/SPTDataLoader/*.h", "SPTDataLoader/*.{h,m}"
20+
s.public_header_files = "include/SPTDataLoader/*.h"
21+
s.xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
22+
23+
end

0 commit comments

Comments
 (0)