- Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathBCScanner.podspec
More file actions
Latest commit
15 lines (15 loc) · 749 Bytes
/
Copy pathBCScanner.podspec
File metadata and controls
15 lines (15 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.newdo |s|
s.name="BCScanner"
s.version="0.1.1"
s.summary="A barcode and qr code scanner that wraps the `AVFoundation` scanning capabilities in a `UIViewController`"
s.homepage="https://github.com/michaelochs/BCScanner"
s.license={:type=>'Apache License, Version 2.0',:file=>'LICENSE'}
s.author='Michael Ochs, @_mochs'
s.platform=:ios,'7.0'
s.requires_arc=true
s.framework='AVFoundation','UIKit'
s.source={:git=>"https://github.com/michaelochs/BCScanner.git",:tag=>s.version.to_s}
s.source_files='BCScanner','BCScanner/**/*.{h,m}'
s.public_header_files='BCScanner/*.h'
s.preserve_path='LICENSE','VERSION','CREDITS.md'
end