123456789101112131415161718 |
- Pod::Spec.new do |s|
- s.name = "CryptoSwift"
- s.version = "0.7.0"
- s.summary = "Cryptography in Swift. SHA, MD5, CRC, PBKDF, Poly1305, HMAC, ChaCha20, Rabbit, Blowfish, AES."
- s.description = "Cryptography functions and helpers for Swift implemented in Swift. SHA, MD5, PBKDF1, PBKDF2, CRC, Poly1305, HMAC, ChaCha20, Rabbit, Blowfish, AES."
- s.homepage = "https://github.com/krzyzanowskim/CryptoSwift"
- s.license = {:type => "Attribution License", :file => "LICENSE"}
- s.source = { :git => "https://github.com/krzyzanowskim/CryptoSwift.git", :tag => "#{s.version}" }
- s.authors = {'Marcin Krzyżanowski' => 'marcin@krzyzanowskim.com'}
- s.social_media_url = "https://twitter.com/krzyzanowskim"
- s.ios.deployment_target = "8.0"
- s.osx.deployment_target = "10.9"
- s.watchos.deployment_target = "2.0"
- s.tvos.deployment_target = "9.0"
- s.source_files = "Sources/CryptoSwift/**/*.swift"
- s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0', 'SWIFT_OPTIMIZATION_LEVEL' => '-Owholemodule' }
- s.requires_arc = true
- end
|