forked from jrendel/SwiftKeychainWrapper
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftKeychainWrapper.podspec
More file actions
Latest commit
15 lines (15 loc) · 693 Bytes
/
Copy pathSwiftKeychainWrapper.podspec
File metadata and controls
15 lines (15 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.newdo |s|
s.name='SwiftKeychainWrapper'
s.version='3.2.0'
s.summary='Wrapper for the iOS Keychain written in Swift.'
s.description=<<-DESC
A simple wrapper for the iOS Keychain to allow you to use it in a similar fashion to UserDefaults. Supports Access Groups. Written in Swift.'
DESC
s.module_name="SwiftKeychainWrapper"
s.homepage='https://github.com/jrendel/SwiftKeychainWrapper'
s.license='MIT'
s.authors={'Jason Rendel'=>'jason@jasonrendel.com'}
s.ios.deployment_target='8.0'
s.source={:git=>'https://github.com/jrendel/SwiftKeychainWrapper.git',:tag=>s.version}
s.source_files='SwiftKeychainWrapper/*.{h,swift}'
end