FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
IRLDocumentScanner/IRLDocumentScanner.podspec at master · charlymr/IRLDocumentScanner · GitHub
This repository was archived by the owner on Nov 8, 2021. It is now read-only.
charlymr
/
IRLDocumentScanner
Public archive
Notifications
You must be signed in to change notification settings
Fork
54
Star
175
Code
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
IRLDocumentScanner
/
IRLDocumentScanner.podspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
53 lines (36 loc) · 1.69 KB
Breadcrumbs
IRLDocumentScanner
/
IRLDocumentScanner.podspec
Copy path
File metadata and controls
53 lines (36 loc) · 1.69 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
.
new
do
|
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
Back
|
FazBrowse Home
|
New Git URL