- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPersistentCacheKit.podspec
More file actions
Latest commit
18 lines (15 loc) · 745 Bytes
/
Copy pathPersistentCacheKit.podspec
File metadata and controls
18 lines (15 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.newdo |s|
s.name='PersistentCacheKit'
s.version='0.4.2'
s.summary='A Swift library for caching items to the filesystem (using SQLite by default).'
s.homepage='https://github.com/davbeck/PersistentCacheKit'
s.license={:type=>'MIT',:file=>'LICENSE'}
s.author={'David Beck'=>'code@davidbeck.co'}
s.source={:git=>'https://github.com/davbeck/PersistentCacheKit.git',:tag=>s.version.to_s}
s.social_media_url='https://twitter.com/davbeck'
s.ios.deployment_target='10.0'
s.osx.deployment_target='10.10'
s.static_framework=true
s.swift_version='5.0'
s.source_files='Sources/PersistentCacheKit/**/*'
end