forked from yannickl/QRCodeReaderViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQRCodeReaderViewController.podspec
16 lines (16 loc) · 1 KB
/
QRCodeReaderViewController.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = 'QRCodeReaderViewController'
s.version = '4.0.1'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'Simple QRCode reader for iOS 7 and over'
s.description = 'The `QRCodeReaderViewController` is a simple QRCode and bar code reader/scanner based on the `AVFoundation` framework from Apple. It aims to replace ZXing or ZBar for iOS 7 and over.'
s.homepage = 'https://github.com/YannickL/QRCodeReaderViewController'
s.authors = { 'Yannick Loriot' => '[email protected]' }
s.social_media_url = "https://twitter.com/yannickloriot"
s.source = { :git => 'https://github.com/yannickl/QRCodeReaderViewController.git',
:tag => s.version.to_s }
s.requires_arc = true
s.source_files = ['QRCodeReaderViewController/*.{h,m}']
s.framework = 'AVFoundation'
s.ios.deployment_target = '7.0'
end