This repository was archived by the owner on Nov 8, 2021. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathIRLDocumentScanner.podspec
More file actions
Latest commit
53 lines (36 loc) · 1.69 KB
/
Copy pathIRLDocumentScanner.podspec
File metadata and controls
53 lines (36 loc) · 1.69 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
##
## 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.newdo |s|
s.name="IRLDocumentScanner"
s.version="0.3.1"
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=>'MIT',: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.3.1'}
s.platform=:ios,'8.0'
s.module_name='IRLDocumentScanner'
s.default_subspec='Default'
s.dependency'TOCropViewController','~> 2.3'
s.subspec'Default'do |d|
d.source_files='Source','Source/**/*.{h,m}'
d.resources=['*.storyboard','*.xcassets']
d.ios.frameworks='Foundation','UIKit','AVFoundation','CoreImage','GLKit'
d.requires_arc=true
d.public_header_files='Source/Public/**/*.h','Source/IRLDocumentScanner.h'
d.private_header_files='Source/Private/**/*.h'
end
s.subspec'Private'do |p|
p.source_files='Source','Source/**/*.{h,m}'
p.resources=['*.storyboard','*.xcassets']
p.ios.frameworks='Foundation','UIKit','AVFoundation','CoreImage','GLKit'
p.requires_arc=true
p.public_header_files='Source/Public/**/*.h','Source/IRLDocumentScanner.h','Source/Private/**/*.h'
end
end