-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathDocumentScanner.podspec
29 lines (23 loc) · 1.02 KB
/
DocumentScanner.podspec
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
Pod::Spec.new do |s|
s.name = 'DocumentScanner'
s.version = '1.1.0'
s.summary = 'Simple documents scanner using Vision'
s.description = <<-DESC
DocumentScanner is based on rectangle detection, crops region of interest and exports UIImage(s)
DESC
s.homepage = 'https://github.com/StanDimitroff/DocumentScanner'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'StanDimitroff' => 'standimitroff@gmail.com' }
s.source = { :git => 'https://github.com/StanDimitroff/DocumentScanner.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/standimitroff'
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
s.source_files = 'DocumentScanner/Source/*.swift'
s.resource_bundles = {
'DocumentScanner' => [
'DocumentScanner/Resources/*.xib',
'DocumentScanner/Assets/*.png'
]
}
end