forked from TakeScoop/SwiftyRSA
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathSwiftyRSA.podspec
More file actions
29 lines (23 loc) · 797 Bytes
/
SwiftyRSA.podspec
File metadata and controls
29 lines (23 loc) · 797 Bytes
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
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" => "ops@takescoop.com" }
s.source = { :git => "https://github.com/TakeScoop/SwiftyRSA.git", :tag => s.version }
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