forked from charlymr/IRLDocumentScanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIRLDocumentScanner.podspec
More file actions
32 lines (24 loc) · 1.23 KB
/
Copy pathIRLDocumentScanner.podspec
File metadata and controls
32 lines (24 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
##
## Before you commit to the Podscpec repro, it is good practice to verify your settings via lint
## > pod spec lint IRLDocumentScanner.podspec --sources='https://github.com/CocoaPods/Specs'
##
## When done modifying that file simply run:
## > pod trunk push IRLDocumentScanner.podspec
##
Pod::Spec.new do |s|
s.name = "IRLDocumentScanner"
s.version = "0.1.2"
s.summary = "A Drop-in Document Scanner based View Controller."
s.description = "A very simple to use class allowing you scan document with border detection."
s.license = { :type => 'Copyright 2015. iRLMobile. Luxembourg', :file => 'LICENSE.txt' }
s.homepage = "https://github.com/charlymr/IRLDocumentScanner"
s.authors = { 'Denis Martin' => 'support@irlmobile.com' }
s.source = { :git => 'https://github.com/charlymr/IRLDocumentScanner.git', :branch => 'master', :tag => '0.1.2'}
s.platform = :ios, '8.0'
s.source_files = 'Source', 'Source/**/*.{h,m}'
s.public_header_files = 'Source/Public/**/*.h', 'Source/IRLDocumentScanner.h'
s.private_header_files = 'Source/Private/**/*.h'
s.resources = [ '*.storyboard', '*.xcassets' ]
s.ios.frameworks = 'Foundation', 'UIKit', 'AVFoundation', 'CoreImage', 'GLKit'
s.requires_arc = true
end