-
Notifications
You must be signed in to change notification settings - Fork 16
/
rn-contact-tracing.podspec
33 lines (29 loc) · 1.19 KB
/
rn-contact-tracing.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "rn-contact-tracing"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
rn-contact-tracing
DESC
s.homepage = "https://github.com/MohGovIL/rn-contact-tracing"
# brief license entry:
s.license = "MIT"
# optional - use expanded license entry instead:
# s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Ofer Davidyan" => "ofer@igates.co.il",
"Yonatan Rimon" => "yoni.rimon@igates.co.il",
"Hagai Rotshild" => "hagai.rotshild@igates.co.il",
"Lev" => "lev.vidrak@gmail.com"
}
s.platforms = { :ios => "10.0" }
s.source = { :git => "https://github.com/MohGovIL/rn-contact-tracing.git", :tag => "#{s.version}" }
s.source_files = "lib/ios/**/*.{h,m,swift}"
s.resources = 'rn-contact-tracing/*.xcdatamodel'
s.resource_bundles = { 'FrameworkModel' => ['lib/ios/db/CoreData/**/*.xcdatamodeld'] }
s.requires_arc = true
s.dependency "React"
# ...
# s.dependency "..."
end