- Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCacheKit.podspec
More file actions
Latest commit
27 lines (21 loc) · 943 Bytes
/
Copy pathCacheKit.podspec
File metadata and controls
27 lines (21 loc) · 943 Bytes
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.newdo |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"=>"code@thinkultimate.com"}
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