You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
556 B
17 lines
556 B
require 'json'
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = 'CapacitorDailyNotification'
|
|
s.version = package['version']
|
|
s.summary = package['description']
|
|
s.license = package['license']
|
|
s.homepage = package['repository']['url']
|
|
s.author = package['author']
|
|
s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
|
|
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
|
|
s.ios.deployment_target = '13.0'
|
|
s.dependency 'Capacitor'
|
|
s.swift_version = '5.1'
|
|
end
|