Skip to content

Commit

Permalink
Added cocoapods
Browse files Browse the repository at this point in the history
  • Loading branch information
filom committed Aug 29, 2017
1 parent b5d86a7 commit ef6771a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
Binary file modified .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

# OS X
.DS_Store

## Build generated
build/
DerivedData/
Expand Down
10 changes: 4 additions & 6 deletions ASN1Decoder.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@ Pod::Spec.new do |s|
s.name = "ASN1Decoder"
s.version = "1.0.0"
s.summary = "ASN1 DER Decoder for X.509 certificate"
s.description = <<-DESC
ASN1 DER Decoder to parse X.509 certificate§
DESC
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" => "[email protected]" }
s.author = { "Filippo Maguolo" => "[email protected]" }
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 = { :git => "https://github.com/filom/ASN1Decoder.git", :tag => s.version.to_s }
s.source_files = "ASN1Decoder/*.swift"
s.frameworks = "Foundation"
s.frameworks = "Foundation"
s.pod_target_xcconfig = {
'SWIFT_VERSION' => '3.0',
}
Expand Down

0 comments on commit ef6771a

Please sign in to comment.