KeychainAccess.podspec 1020 B

1234567891011121314151617181920
  1. Pod::Spec.new do |s|
  2. s.name = "KeychainAccess"
  3. s.version = "1.0.2"
  4. s.summary = "KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and OS X."
  5. s.description = <<-DESC
  6. KeychainAccess is a simple Swift wrapper for Keychain that works on iOS and OS X. Makes using Keychain APIs exremely easy and much more palatable to use in Swift.
  7. DESC
  8. s.homepage = "https://github.com/kishikawakatsumi/KeychainAccess"
  9. s.screenshots = "https://raw.githubusercontent.com/kishikawakatsumi/KeychainAccess/master/Screenshots/01.png"
  10. s.license = 'MIT'
  11. s.author = { "kishikawa katsumi" => "kishikawakatsumi@mac.com" }
  12. s.source = { :git => "https://github.com/kishikawakatsumi/KeychainAccess.git", :tag => "v#{s.version}" }
  13. s.social_media_url = 'https://twitter.com/k_katsumi'
  14. s.ios.deployment_target = "8.0"
  15. s.osx.deployment_target = "10.9"
  16. s.requires_arc = true
  17. s.source_files = 'Lib/KeychainAccess/*.swift'
  18. end