-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScannerChekinIOS.podspec
More file actions
executable file
·43 lines (31 loc) · 1014 Bytes
/
ScannerChekinIOS.podspec
File metadata and controls
executable file
·43 lines (31 loc) · 1014 Bytes
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
Pod::Spec.new do |s|
# 1
s.platform = :ios
s.ios.deployment_target = '12.0'
s.name = "ScannerChekinIOS"
s.summary = "Private project from Chekin"
s.requires_arc = true
# 2
s.version = "1.1.5"
# 3
s.license = { :type => "MIT", :file => "LICENSE" }
# 4 - Replace with your name and e-mail address
s.author = { "Alejandro Ruiz" => "alejandroruizponce93@gmail.com" }
# 5 - Replace this URL with your own GitHub page's URL (from the address bar)
s.homepage = "https://github.com/alejandroruizponce/ScannerChekinIOS"
# 6 - Replace this URL with your own Git URL from "Quick Setup"
s.source = { :git => "https://github.com/alejandroruizponce/ScannerChekinIOS.git",
:tag => "#{s.version}" }
# 7
s.framework = "UIKit"
s.dependency 'EVGPUImage2'
s.dependency 'GPUImage'
s.dependency 'TesseractOCRiOS'
s.dependency 'UIImage-Resize'
# 8
s.source_files = "ScannerChekinIOS/**/*.{swift}"
# 9
# s.resources = "ScannerChekinIOS/**/*.{png,jpeg,jpg,storyboard,xib,xcassets,traineddata}"
# 10
s.swift_version = "4.2"
end