-
Notifications
You must be signed in to change notification settings - Fork 58
/
FHIR.podspec
28 lines (26 loc) · 1.16 KB
/
FHIR.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
#
# Swift-FHIR
#
# Swift FHIR data model classes, with some goodies.
# Enjoy!
#
Pod::Spec.new do |s|
s.name = "FHIR"
s.version = "4.1.0"
s.summary = "Swift 🔥FHIR data model classes, with some goodies."
s.description = <<-DESC
Swift 🔥FHIR data model classes, generated from spec. Uses custom Date/Time structs to facilitate
working with dates. Contains server request/response classes and a FHIR server protocol intended to
help in building a full-fledged client, as implemented by SMART on FHIR.
DESC
s.homepage = "https://github.com/smart-on-fhir/Swift-FHIR"
s.documentation_url = "http://docs.smarthealthit.org/Swift-SMART/"
s.license = "Apache 2"
s.author = { "Pascal Pfiffner" => "[email protected]" }
s.source = { :git => "https://github.com/smart-on-fhir/Swift-FHIR.git", :tag => "#{s.version}" }
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.10"
s.requires_arc = true
s.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS' => '-DNO_MODEL_IMPORT' }
s.source_files = "Sources/*/*.swift"
end