session-ios/Podspecs/UICKeyChainStore.podspec
Frederic Jacobs 60fb869baa Closes #80 #37
- Use of new Keychain Access attribute
- Error management (notifying the user) when opening app without
required push and microphone permission
- Enforcing APNID are sent to server, retry later if not able to reach
server
2014-08-01 01:53:58 -04:00

19 lines
854 B
Ruby

Pod::Spec.new do |s|
s.name = "UICKeyChainStore"
s.version = "1.0.7"
s.summary = "UICKeyChainStore is a simple wrapper for Keychain on iOS and OS X. Makes using Keychain APIs as easy as NSUserDefaults."
s.homepage = "https://github.com/kishikawakatsumi/UICKeyChainStore"
s.social_media_url = "https://twitter.com/k_katsumi"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "kishikawa katsumi" => "kishikawakatsumi@mac.com" }
s.source = { :git => "https://github.com/FredericJacobs/UICKeyChainStore.git", :tag => "v#{s.version}" }
s.ios.deployment_target = "4.3"
s.osx.deployment_target = "10.6"
s.requires_arc = true
s.source_files = "Lib/*"
s.framework = "Security"
end