-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathKeyStorage.podspec
More file actions
executable file
·21 lines (18 loc) · 877 Bytes
/
Copy pathKeyStorage.podspec
File metadata and controls
executable file
·21 lines (18 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'KeyStorage'
s.version = '1.0.4'
s.summary = 'KeyStorage is a simple secure key persistance library written in Swift.'
s.description = <<-DESC
Persist passwords, preferences, and other key information quickly, easily and securely using the Keychain or NSUserDefaults.
DESC
s.homepage = 'https://github.com/benbahrenburg/KeyStorage'
s.license = 'MIT'
s.authors = { 'Ben Bahrenburg' => 'hello@bencoding.com' }
s.source = { :git => 'https://github.com/benbahrenburg/KeyStorage.git', :tag => s.version }
s.social_media_url = 'https://twitter.com/bencoding'
s.swift_version = "5.0"
s.ios.deployment_target = '14.0'
s.watchos.deployment_target = '7.0'
s.source_files = 'KeyStorage/Classes/**/*'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
end