Skip to content

Commit 8210554

Browse files
committed
Add Podspec
1 parent ed8861b commit 8210554

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

BoardingPassKit.podspec

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Pod::Spec.new do |s|
2+
s.name = "BoardingPassKit"
3+
s.version = "0.1.0"
4+
s.summary = "A library to parse the contents of airline boarding pass barcodes."
5+
s.description = <<-DESC
6+
BoardingPassKit allows parsing the content of airline boarding pass barcodes.
7+
Use other means to parse the actual PDF417, Aztec, or QR Code and then pass the result to
8+
BPKBoardingPass(data:).
9+
DESC
10+
11+
s.homepage = "https://github.com/invliD/BoardingPassKit"
12+
s.license = "MPL-2.0"
13+
s.author = "Sebastian Brückner"
14+
15+
s.ios.deployment_target = "8.0"
16+
# s.osx.deployment_target = "10.7"
17+
# s.watchos.deployment_target = "2.0"
18+
# s.tvos.deployment_target = "9.0"
19+
20+
s.swift_version = '4.0'
21+
s.source = { :git => "https://github.com/invliD/BoardingPassKit.git", :tag => "#{s.version}" }
22+
s.source_files = "Source/**/*.swift"
23+
s.requires_arc = true
24+
end

BoardingPassKit.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
/* End PBXContainerItemProxy section */
3030

3131
/* Begin PBXFileReference section */
32+
24AEAF892054D45A00311ED5 /* BoardingPassKit.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = BoardingPassKit.podspec; sourceTree = "<group>"; };
3233
24B3F5061FF3E06F002E489B /* BoardingPassKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BoardingPassKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3334
24B3F5091FF3E06F002E489B /* BoardingPassKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BoardingPassKit.h; sourceTree = "<group>"; };
3435
24B3F50A1FF3E06F002E489B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
@@ -65,6 +66,7 @@
6566
24B3F4FC1FF3E06F002E489B = {
6667
isa = PBXGroup;
6768
children = (
69+
24AEAF892054D45A00311ED5 /* BoardingPassKit.podspec */,
6870
24B3F5081FF3E06F002E489B /* Source */,
6971
24B3F51D1FFE9075002E489B /* Test */,
7072
24B3F5071FF3E06F002E489B /* Products */,

0 commit comments

Comments
 (0)