-
Notifications
You must be signed in to change notification settings - Fork 14
/
CacheKit.podspec
27 lines (21 loc) · 943 Bytes
/
CacheKit.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
Pod::Spec.new do |spec|
spec.name = "CacheKit"
spec.version = "0.6.4"
spec.summary = "Easily cache objects in memory, to files, a database or not at all."
spec.homepage = "https://github.com/davbeck/CacheKit"
spec.license = 'MIT'
spec.author = { "David Beck" => "[email protected]" }
spec.source = { :git => "https://github.com/davbeck/CacheKit.git", :tag => spec.version.to_s }
spec.social_media_url = 'https://twitter.com/davbeck'
spec.requires_arc = true
spec.ios.deployment_target = '6.0'
spec.osx.deployment_target = '10.8'
spec.dependency 'FMDB', '~> 2.4'
spec.subspec "Core" do |core_spec|
core_spec.source_files = "CacheKit/Classes/**/*"
end
spec.subspec "FastImages" do |fast_images_spec|
fast_images_spec.dependency 'CacheKit/Core'
fast_images_spec.ios.source_files = 'CacheKit/FastImages/**/*'
end
end