forked from zhengjinghua/MQRCodeReaderViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QRCodeReaderViewController.podspec
18 lines (17 loc) · 1.1 KB
/
QRCodeReaderViewController.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'QRCodeReaderViewController'
s.version = '3.5.2'
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/zhengjinghua/MQRCodeReaderViewController.git',
:tag => s.version.to_s }
s.requires_arc = true
s.source_files = "QRCodeReaderViewController", "QRCodeReaderViewController/**/*.{h,m}"
s.resources = "QRCodeReaderViewController/Resources/*.png"
s.framework = 'AVFoundation'
s.ios.deployment_target = '7.0'
end