forked from TakeScoop/SwiftyRSA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftyRSA.podspec
30 lines (24 loc) · 854 Bytes
/
SwiftyRSA.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Pod::Spec.new do |s|
s.name = "SwiftyRSA"
s.version = "1.6.0"
s.summary = "Public key RSA encryption in Swift."
s.description = <<-DESC
Encrypt with a RSA public key, decrypt with a RSA private key.
DESC
s.homepage = "https://github.com/TakeScoop/SwiftyRSA"
s.license = "MIT"
s.author = { "Scoop" => "[email protected]" }
s.source = { :git => "https://github.com/TakeScoop/SwiftyRSA.git", :tag => s.version }
s.swift_versions = ['5.0', '5.1', '5.2', '5.3', '5.4']
s.source_files = "Source/*.{swift,m,h}"
s.exclude_files = "Source/SwiftyRSA+ObjC.swift"
s.framework = "Security"
s.requires_arc = true
s.swift_version = "5.0"
s.ios.deployment_target = "11.0"
s.tvos.deployment_target = "11.0"
s.watchos.deployment_target = "5.0"
s.subspec "ObjC" do |sp|
sp.source_files = "Source/*.{swift,m,h}"
end
end