forked from auth0/SimpleKeychain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SimpleKeychain.podspec
24 lines (22 loc) · 1.13 KB
/
SimpleKeychain.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
version = `agvtool mvers -terse1`.strip
Pod::Spec.new do |s|
s.name = "SimpleKeychain"
s.version = version
s.summary = "A wrapper to make it really easy to deal with iOS Keychain and store your user's credentials securely."
s.description = <<-DESC
A simple way to store items in iOS Keychain, without the hassle of dealing with iOS Keychain API directly.
It has support for the new AccessControl for Keychain items added in iOS 8.
DESC
s.homepage = "https://github.com/auth0/SimpleKeychain"
s.license = 'MIT'
s.author = { "Auth0" => "support@auth0.com", "Hernan Zalazar" => "hernan@auth0.com" }
s.source = { :git => "https://github.com/auth0/SimpleKeychain.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/auth0'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'SimpleKeychain/*.{h,m}'
s.exclude_files = 'SimpleKeychain/include/*'
end