KeychainSwift.podspec 1.1 KB

12345678910111213141516171819202122
  1. Pod::Spec.new do |s|
  2. s.name = "KeychainSwift"
  3. s.version = "8.0.0"
  4. s.license = { :type => "MIT" }
  5. s.homepage = "https://github.com/marketplacer/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 Data with simple functions.
  10. * Specify optional access rule for the keychain item.
  11. * Limit operations to a specific access group.
  12. DESC
  13. s.authors = { "Evgenii Neumerzhitckii" => "sausageskin@gmail.com" }
  14. s.source = { :git => "https://github.com/marketplacer/keychain-swift.git", :tag => s.version }
  15. s.screenshots = "https://raw.githubusercontent.com/marketplacer/keychain-swift/master/graphics/keychain-swift-demo-3.png"
  16. s.source_files = "Sources/*.swift"
  17. s.ios.deployment_target = "8.0"
  18. s.osx.deployment_target = "10.10"
  19. s.watchos.deployment_target = "2.0"
  20. s.tvos.deployment_target = "9.0"
  21. end