require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = 'IrisOcr' s.version = package['version'] s.summary = package['description'] s.license = 'MIT' s.homepage = 'https://github.com/vsguarino/iris-chat' s.author = 'Bell-Kenz' s.source = { :git => 'https://github.com/vsguarino/iris-chat', :tag => s.version.to_s } s.source_files = 'ios/Plugin/**/*.{swift,h,m}' s.ios.deployment_target = '13.0' s.dependency 'Capacitor' s.swift_version = '5.1' # Apple Vision is part of the iOS SDK — no third-party dependency to fetch. s.frameworks = 'Vision', 'UIKit' end