-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathQRScanner.podspec
More file actions
20 lines (20 loc) · 1.62 KB
/
QRScanner.podspec
File metadata and controls
20 lines (20 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "QRScanner"
s.version = "0.2.0"
s.summary = "QRScanner helps to scan QR codes in ARKit"
s.description = <<-DESC
QRScanner scans an ARFrame, CIImage or CVPixelBuffer for a QR Code.
DESC
s.homepage = "https://github.com/maxxfrazer/ARKit-QRScanner"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = "Max Cobb"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/maxxfrazer/ARKit-QRScanner.git", :tag => "#{s.version}" }
s.swift_version = '4.1'
s.ios.deployment_target = '12.0'
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "ARKit-QRScanner/*.swift"
end