forked from aschuch/AwesomeCache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
AwesomeCache.podspec
16 lines (16 loc) · 992 Bytes
/
AwesomeCache.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "AwesomeCache"
s.version = "5.0"
s.summary = "Delightful on-disk cache (written in Swift)"
s.description = "Delightful on-disk cache (written in Swift). Backed by NSCache for maximum performance and support for expiry of single objects."
s.homepage = "https://github.com/aschuch/AwesomeCache"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Alexander Schuch" => "[email protected]" }
s.social_media_url = "http://twitter.com/schuchalexander"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target= "9.0"
s.watchos.deployment_target= "3.0"
s.source = { :git => "https://github.com/aschuch/AwesomeCache.git", :tag => s.version }
s.requires_arc = true
s.source_files = "AwesomeCache/Cache.swift", "AwesomeCache/CacheObject.swift", "AwesomeCache/NSKeyedUnarchiverWrapper.{h,m}"
end