forked from ewhitley/CDAKit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCDAKit.podspec
executable file
·37 lines (33 loc) · 1.32 KB
/
CDAKit.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
34
35
36
37
#
# CDAKit
#
# CDAKit for iOS, the Open Source Clinical Document Architecture Library with HealthKit Connectivity
#
Pod::Spec.new do |s|
s.name = "CDAKit"
s.version = "1.0.2"
s.summary = "CDAKit for iOS, the Open Source Clinical Document Architecture Library with HealthKit Connectivity."
s.description = <<-DESC
Swift framework port of the the Ruby Health-Data-Standards GEM's C32 and C-CDA import and export functionality. Allows for bridging between CDA and HealthKit so you can integrate with an Electronic Medical Records system.
DESC
s.homepage = "https://github.com/ewhitley/CDAKit"
s.license = 'Apache 2'
s.authors = { "Eric Whitley" => "[email protected]" }
s.source = { :git => "https://github.com/ewhitley/CDAKit.git", :tag => s.version.to_s }
s.documentation_url = "http://ewhitley.github.io/CDAKit"
s.platform = :ios, '8.0'
s.ios.deployment_target = "8.0"
s.requires_arc = true
s.source_files = 'CDAKit/**/*.swift'
s.resource_bundles = {
'CDAKit' => [
'CDAKit/**/*.mustache',
'CDAKit/**/CDAKitDefaultHealthKitTermMap.plist',
'CDAKit/**/CDAKitDefaultSampleTypeIdentifierSettings.plist'
]
}
s.frameworks = 'HealthKit'
s.dependency 'GRMustache.swift', '~> 0.11.0'
s.dependency 'Fuzi', '0.3.0'
s.dependency 'Try', '~> 1.0.0'
end