-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathAFCache.podspec
33 lines (23 loc) · 1.35 KB
/
AFCache.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
Pod::Spec.new do |s|
s.name = "AFCache"
s.version = "0.13.0"
s.summary = "AFCache is an HTTP disk cache for use on iPhone/iPad and OSX."
s.description = <<-DESC
AFCache is an HTTP disk cache for use on iPhone/iPad and OSX. It can be linked as a static library or as a framework.
The cache was initially written because on iOS, NSURLCache ignores NSURLCacheStorageAllowed and instead treats it as
NSURLCacheStorageAllowedInMemoryOnly which is pretty useless for a persistent cache.
DESC
s.homepage = "https://github.com/artifacts/AFCache"
s.license = 'Apache'
s.authors = { "Michael Markowski" => "m.markowski@artifacts.de", "Lars Blumberg" => "lars.blumberg@sprylab.com", "Nico Schmidt" => "", "Björn Kriews" => "bkr@jumper.org", "Christian Menschel" => "post@cmenschel.de" }
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.7'
s.source = { :git => "https://github.com/artifacts/AFCache.git", :tag => s.version.to_s }
s.source_files = 'src/shared/**/*.{h,m}', 'src/3rdparty/AFRegexString/**/*.{h,m}'
s.ios.source_files = 'src/iOS/**/*.{h,m}'
s.osx.source_files = 'src/OSX/**/*.{h,m}'
s.exclude_files = 'src/OSX/afcpkg_main*', '**/main.{h,m}'
s.requires_arc = true
s.dependency 'ZipArchive', '~> 1.3.0'
s.dependency 'VersionIntrospection', '~> 0.4.0'
end