2026-07-23 22:58:08 +05:30
|
|
|
require 'json'
|
|
|
|
|
|
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
|
|
|
|
|
|
|
|
Pod::Spec.new do |s|
|
|
|
|
|
# Pod name MUST be 'ShareInbox' (PascalCase of 'share-inbox') — same rule as the other plugins, or
|
|
|
|
|
# pod install fails with "No podspec found for `ShareInbox`".
|
|
|
|
|
s.name = 'ShareInbox'
|
|
|
|
|
s.version = package['version']
|
|
|
|
|
s.summary = package['description']
|
|
|
|
|
s.license = package['license']
|
|
|
|
|
s.homepage = 'https://bizgaze.com'
|
|
|
|
|
s.author = 'BizGaze'
|
|
|
|
|
s.source = { :git => 'https://bizgaze.com/share-inbox.git', :tag => s.version.to_s }
|
|
|
|
|
s.source_files = 'ios/Sources/**/*.{swift,h,m}'
|
2026-08-01 18:48:57 +05:30
|
|
|
s.ios.deployment_target = '15.0'
|
2026-07-23 22:58:08 +05:30
|
|
|
s.dependency 'Capacitor'
|
|
|
|
|
s.swift_version = '5.1'
|
|
|
|
|
end
|