-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathStrongbox.podspec
More file actions
19 lines (16 loc) · 811 Bytes
/
Strongbox.podspec
File metadata and controls
19 lines (16 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'Strongbox'
s.version = '0.6.1'
s.summary = 'Strongbox is a Swift utility class for storing data securely in the keychain. Use it to store small, sensitive bits of data securely.'
s.homepage = 'https://github.com/granoff/Strongbox'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Mark H. Granoff' => 'mark@granoff.net' }
s.source = { :git => 'https://github.com/granoff/Strongbox.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/granoff'
s.swift_version = '4.2'
s.ios.deployment_target = '9.0'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'Strongbox/Classes/**/*'
s.frameworks = 'Security'
end