forked from filom/ASN1Decoder
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathASN1Decoder.podspec
More file actions
Latest commit
17 lines (17 loc) · 702 Bytes
/
Copy pathASN1Decoder.podspec
File metadata and controls
17 lines (17 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.newdo |s|
s.name="ASN1Decoder"
s.version="1.3.3"
s.summary="ASN1 DER Decoder for X.509 certificate"
s.description="ASN1 DER Decoder to parse X.509 certificate"
s.homepage="https://github.com/filom/ASN1Decoder"
s.license={:type=>"MIT",:file=>"LICENSE"}
s.author={"Filippo Maguolo"=>"maguolo.ios@outlook.com"}
s.ios.deployment_target="9.0"
s.osx.deployment_target="10.10"
s.source={:git=>"https://github.com/filom/ASN1Decoder.git",:tag=>s.version}
s.source_files="ASN1Decoder/*.swift"
s.frameworks="Foundation"
s.pod_target_xcconfig={
'SWIFT_VERSION'=>'5.0',
}
end