forked from nenosinc/RMScannerView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRMScannerView.podspec
More file actions
19 lines (17 loc) · 794 Bytes
/
RMScannerView.podspec
File metadata and controls
19 lines (17 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'RMScannerView'
s.version = '1.3'
s.platform = :ios, '7.0'
s.license = 'MIT'
s.summary = 'Simple barcode scanner UIView subclass for iOS apps.'
s.homepage = 'https://github.com/iRareMedia/RMScannerView'
s.author = { 'Sam Spencer' => 'contact@iraremedia.com' }
s.source = { :git => 'https://github.com/iRareMedia/RMScannerView.git', :tag => s.version.to_s }
s.description = 'Simple barcode scanner UIView subclass for iOS apps. ' \
'Quickly and efficiently scans a large variety of barcodes ' \
'using the iOS device\'s built in camera. '
s.frameworks = ['AVFoundation', 'CoreGraphics']
s.source_files = 'RMScannerView/*.{h,m}'
s.preserve_paths = 'Scanner App'
s.requires_arc = true
end