forked from FWEugene/SwiftKeyValueStore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftKeyValueStore.podspec
More file actions
21 lines (16 loc) · 844 Bytes
/
SwiftKeyValueStore.podspec
File metadata and controls
21 lines (16 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "SwiftKeyValueStore"
s.version = "0.1.3"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = "Simple Key Value Store. Wrapper for UserDefaults and KeyChain. Written in Swift."
s.description = "Use SwiftKeyValueStore api if you want type-safe, easy to use database to persist data across launches of your app."
s.homepage = "https://github.com/FWEugene/SwiftKeyValueStore"
s.author = { "Yevgeniy Prokoshev" => "yevgeniy@futureworkshops.com" }
s.platform = :ios, "10.0"
s.source = { :git => 'https://github.com/FWEugene/SwiftKeyValueStore.git', :tag => s.version.to_s }
s.requires_arc = true
s.swift_version = "4.0"
s.cocoapods_version = '>= 1.5.0'
s.source_files = "Source/**/*.swift"
s.dependency 'SwiftKeychainWrapper'
end