-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathKeyValueData.podspec
More file actions
23 lines (18 loc) · 830 Bytes
/
KeyValueData.podspec
File metadata and controls
23 lines (18 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'KeyValueData'
s.version = '1.5.0'
s.summary = 'Key-Value data store protocol.'
s.description = <<-DESC
This is designed to code with same protocol but store data to many places.
Include .plist, KeyChain, UserDefault as well as Sqlite.
DESC
s.homepage = 'https://github.com/1fr3dg/KeyValueData'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Alfred Gao' => 'alfredg@alfredg.cn' }
s.source = { :git => 'https://github.com/1fr3dg/KeyValueData.git', :tag => s.version.to_s }
s.ios.deployment_target = '14.1'
s.swift_versions = '5'
s.source_files = 'KeyValueData/Classes/**/*'
s.dependency 'KeychainAccess', '~> 4'
s.dependency 'SQLite.swift', '~> 0.12'
end