KeychainSwift.podspec 1012 B

1234567891011121314151617181920
  1. Pod::Spec.new do |s|
  2. s.name = "KeychainSwift"
  3. s.version = "3.0.1"
  4. s.license = { :type => "MIT" }
  5. s.homepage = "https://github.com/exchangegroup/keychain-swift"
  6. s.summary = "A library for saving text and data in the Keychain with Swift."
  7. s.description = <<-DESC
  8. This is a collection of helper functions for saving text and data in the Keychain.
  9. * Write and read text and NSData with simple functions.
  10. * Specify optional access rule for the keychain item.
  11. DESC
  12. s.authors = { "Evgenii Neumerzhitckii" => "sausageskin@gmail.com" }
  13. s.source = { :git => "https://github.com/exchangegroup/keychain-swift.git", :tag => s.version }
  14. s.screenshots = "https://raw.githubusercontent.com/exchangegroup/keychain-swift/master/graphics/keychain-swift-demo.png"
  15. s.source_files = "KeychainSwift/*.swift"
  16. s.ios.deployment_target = "8.0"
  17. s.osx.deployment_target = "10.9"
  18. s.watchos.deployment_target = "2.0"
  19. end