UICKeyChainStore.podspec 1.6 KB

1234567891011121314151617181920212223242526272829303132
  1. Pod::Spec.new do |s|
  2. s.name = "UICKeyChainStore"
  3. s.version = "2.1.1"
  4. s.summary = "UICKeyChainStore is a simple wrapper for Keychain that works on iOS and OS X. Makes using Keychain APIs as easy as NSUserDefaults."
  5. s.description = <<-DESC
  6. UICKeyChainStore is a simple wrapper for Keychain that works on iOS and OS X.
  7. Makes using Keychain APIs as easy as NSUserDefaults.
  8. Features
  9. - Simple interface
  10. - Support access group
  11. - [Support accessibility](#accessibility)
  12. - [Support iCloud sharing](#icloud_sharing)
  13. - **[Support TouchID and Keychain integration (iOS 8+)](#touch_id_integration)**
  14. - Works on both iOS & OS X
  15. DESC
  16. s.homepage = "https://github.com/kishikawakatsumi/UICKeyChainStore"
  17. s.license = { :type => "MIT", :file => "LICENSE" }
  18. s.author = { "kishikawa katsumi" => "kishikawakatsumi@mac.com" }
  19. s.source = { :git => "https://github.com/kishikawakatsumi/UICKeyChainStore.git", :tag => "v#{s.version}" }
  20. s.social_media_url = "https://twitter.com/k_katsumi"
  21. s.ios.deployment_target = "4.3"
  22. s.osx.deployment_target = "10.7"
  23. s.watchos.deployment_target = '2.0'
  24. s.tvos.deployment_target = '9.0'
  25. s.requires_arc = true
  26. s.source_files = "Lib/UICKeyChainStore/*.{h,m}"
  27. s.framework = "Security"
  28. end