28 lines
949 B
Ruby
28 lines
949 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
|
|
|
|
s.subspec "Speech" do |speech|
|
|
speech.source_files = "Speech/**/*.swift"
|
|
speech.dependency "RDSpeechReaderView", "~> 0.1"
|
|
end
|
|
|
|
s.subspec "AI" do |ai|
|
|
ai.source_files = "AI/**/*.swift"
|
|
ai.dependency "RDAIReaderView/NaturalLanguage", "~> 0.1"
|
|
ai.dependency "RDAIReaderView/UI", "~> 0.1"
|
|
end
|
|
end
|