-
Notifications
You must be signed in to change notification settings - Fork 3
/
IRLPDFScanContent.podspec
29 lines (23 loc) · 1.24 KB
/
IRLPDFScanContent.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
##
## Before you commit to the Podscpec repro, it is good practice to verify your settings via lint
## > pod spec lint IRLPDFScanContent.podspec --sources='https://github.com/CocoaPods/Specs'
##
## When done modifying that file simply run:
## > pod trunk push IRLPDFScanContent.podspec
##
Pod::Spec.new do |s|
s.name = 'IRLPDFScanContent'
s.version = '1.1.1'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'SwiftUI & UKKit - Images or PDF scanner. Big brother and replacement of IRLDocumentScanner'
s.description = 'A convenient class usable from `UIKit` view controller or `SwiftUI` to scan document & get `UIImage` or `PDFDocument` as result'
s.homepage = 'https://github.com/charlymr/IRLPDFScanContent'
s.documentation_url = 'https://irlpdfscancontent.irlmobile.com/documentation/'
s.authors = 'charlymr'
s.source = { :git => 'https://github.com/charlymr/IRLPDFScanContent.git', :tag => s.version }
s.module_name = 'IRLPDFScanContent'
s.ios.deployment_target = '13.0'
s.swift_versions = ['5.5']
s.source_files = 'Sources/IRLPDFScanContent/*.{swift}', 'Sources/IRLPDFScanContent/Internal/*.{swift}', 'Sources/IRLPDFScanContent/Legacy/*.{swift}',
s.ios.frameworks = 'UIKit', 'PDFKit', 'VisionKit', 'SwiftUI'
end