forked from hyperoslo/BarcodeScanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBarcodeScanner.podspec
More file actions
23 lines (19 loc) · 749 Bytes
/
BarcodeScanner.podspec
File metadata and controls
23 lines (19 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "BarcodeScanner"
s.summary = "Simple and beautiful barcode scanner."
s.version = "2.0.0"
s.homepage = "https://github.com/hyperoslo/BarcodeScanner"
s.license = 'MIT'
s.author = { "Hyper Interaktiv AS" => "ios@hyper.no" }
s.source = {
:git => "https://github.com/hyperoslo/BarcodeScanner.git",
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/hyperoslo'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Sources/**/*'
s.resource_bundles = { 'BarcodeScanner' => ['Images/*.{png}'] }
s.frameworks = 'UIKit', 'AVFoundation'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
end