-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBoardingPassKit.podspec
More file actions
24 lines (21 loc) · 871 Bytes
/
BoardingPassKit.podspec
File metadata and controls
24 lines (21 loc) · 871 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
Pod::Spec.new do |s|
s.name = "BoardingPassKit"
s.version = "0.3.0"
s.summary = "A library to parse the contents of airline boarding pass barcodes."
s.description = <<-DESC
BoardingPassKit allows parsing the content of airline boarding pass barcodes.
Use other means to parse the actual PDF417, Aztec, or QR Code and then pass the result to
BPKBoardingPass(data:).
DESC
s.homepage = "https://github.com/invliD/BoardingPassKit"
s.license = "MPL-2.0"
s.author = "Sebastian Brückner"
s.ios.deployment_target = "12.0"
# s.osx.deployment_target = "10.7"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
s.swift_version = '5.0'
s.source = { :git => "https://github.com/invliD/BoardingPassKit.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.swift"
s.requires_arc = true
end