17 lines
631 B
Ruby
17 lines
631 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "RDPDFReaderView"
|
|
s.module_name = "RDPDFReaderView"
|
|
s.version = "0.0.1"
|
|
s.summary = "UIKit PDF reader supporting host images and direct PDFKit parsing"
|
|
s.platform = :ios, "15.0"
|
|
s.swift_versions = ["5.10"]
|
|
s.homepage = "https://example.invalid/RDPDFReaderView"
|
|
s.author = { "readoor" => "ios@touchread.com" }
|
|
s.source = { :path => "." }
|
|
s.license = "MIT"
|
|
s.source_files = "{Sources,ReaderView}/**/*.swift"
|
|
s.dependency "SnapKit", "~> 5.7"
|
|
s.frameworks = "Vision", "CoreImage", "PDFKit"
|
|
s.requires_arc = true
|
|
end
|