forked from krzyzanowskim/CryptoSwift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCryptoSwift.podspec
21 lines (21 loc) · 1.02 KB
/
CryptoSwift.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "CryptoSwift"
s.version = "0.1.1"
s.summary = "Cryptography in Swift. SHA, MD5, CRC, Poly1305, HMAC, ChaCha20, AES."
s.description = "Cryptography functions and helpers for Swift implemented in Swift. SHA, MD5, CRC, Poly1305, HMAC, ChaCha20, 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' => '[email protected]'}
s.social_media_url = "https://twitter.com/krzyzanowskim"
s.ios.platform = :ios, '8.0'
s.ios.deployment_target = "8.0"
s.osx.platform = :osx, '10.9'
s.osx.deployment_target = "10.9"
s.watchos.platform = :watchos, '2.0'
s.watchos.deployment_target = "2.0"
s.tvos.platform = :tvos, '9.0'
s.tvos.deployment_target = "9.0"
s.source_files = "CryptoSwift/**/*.swift"
s.requires_arc = true
end