CryptoSwift.podspec 718 B

123456789101112131415161718
  1. Pod::Spec.new do |s|
  2. s.name = "CryptoSwift"
  3. s.version = "0.0.1"
  4. s.summary = "Crypto helpers. Written in Swift"
  5. s.homepage = "https://github.com/krzyzanowskim/CryptoSwift"
  6. s.license = "Apache License"
  7. s.license = { :type => "Apache", :file => "LICENSE" }
  8. s.author = { "Marcin Krzyżanowski" => "marcin.krzyzanowski@gmail.com" }
  9. s.social_media_url = "http://twitter.com/krzyzanowskim"
  10. s.platform = :ios
  11. s.ios.deployment_target = '7.0'
  12. s.source = { :git => "https://github.com/krzyzanowskim/CryptoSwift.git", :tag => "0.0.1" }
  13. s.source_files = "CryptoSwift/*"
  14. s.dependency = "OpenSSL-Universal"
  15. s.requires_arc = true
  16. s.dependa
  17. end