Update podspec.

This commit is contained in:
kishikawaka katsumi
2013-10-31 20:54:42 +09:00
parent 21d987a3e8
commit d0ba6355d0

View File

@@ -1,15 +1,15 @@
Pod::Spec.new do |s|
s.name = 'UICKeyChainStore'
s.version = '1.0.4'
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.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'kishikawakatsumi' => 'kishikawakatsumi@mac.com' }
s.authors = { 'kishikawakatsumi' => 'kishikawakatsumi@mac.com' }
s.source = { :git => 'https://github.com/kishikawakatsumi/UICKeyChainStore.git', :tag => 'v#{s.version}' }
s.ios.deployment_target = '4.3'
s.osx.deployment_target = '10.6'
s.source_files = 'Lib/*'
s.framework = 'Security'
s.name = "UICKeyChainStore"
s.version = "1.0.4"
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.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "kishikawakatsumi" => "kishikawakatsumi@mac.com" }
s.authors = { "kishikawakatsumi" => "kishikawakatsumi@mac.com" }
s.source = { :git => "https://github.com/kishikawakatsumi/UICKeyChainStore.git", :tag => "v#{s.version}" }
s.ios.deployment_target = "4.3"
s.osx.deployment_target = "10.6"
s.source_files = "Lib/*"
s.framework = "Security"
s.requires_arc = true
end