forked from spotify/SPTPersistentCache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SPTPersistentCache.podspec
30 lines (24 loc) · 1.14 KB
/
SPTPersistentCache.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
Pod::Spec.new do |s|
s.name = "SPTPersistentCache"
s.version = "1.1.1"
s.summary = "SPTPersistentCache is a fast, binary, LRU cache used in the Spotify iOS app"
s.description = <<-DESC
Everyone tries to implement a cache at some point in their apps lifecycle,
and this is ours. This is a library that allows people to cache NSData
with TTL values and semantics for disk management.
DESC
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.homepage = "https://github.com/spotify/SPTPersistentCache"
s.social_media_url = "https://twitter.com/spotifyeng"
s.license = "Apache 2.0"
s.author = {
"Dmitry Ponomarev" => "[email protected]"
}
s.source = { :git => "https://github.com/appunite/SPTPersistentCache.git", :tag => s.version }
s.source_files = "Sources/**/*.{h,m,c}"
s.public_header_files = "Sources/SPTPersistentCache/include/*.h"
s.xcconfig = {
"OTHER_LDFLAGS" => "-lObjC"
}
end