-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHealthQL.podspec
More file actions
27 lines (23 loc) · 990 Bytes
/
HealthQL.podspec
File metadata and controls
27 lines (23 loc) · 990 Bytes
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
Pod::Spec.new do |s|
s.name = 'HealthQL'
s.version = '1.2.1'
s.summary = 'SQL-like query interface for Apple HealthKit'
s.description = <<-DESC
HealthQL provides a SQL-like query interface for Apple HealthKit data.
Write familiar SQL queries to fetch and analyze health data.
DESC
s.homepage = 'https://github.com/glisom/HealthQL'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Grant Isom' => 'glisom@icloud.com' }
s.source = { :git => 'https://github.com/glisom/HealthQL.git', :tag => "v#{s.version}" }
s.ios.deployment_target = '15.0'
s.swift_version = '5.9'
# Include both HealthQL core and HealthQLParser sources
s.source_files = 'Sources/HealthQL/**/*.swift',
'Sources/HealthQLParser/**/*.swift'
s.frameworks = 'HealthKit'
s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
'SWIFT_COMPILATION_MODE' => 'wholemodule'
}
end