-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLS2SDK.podspec
More file actions
78 lines (65 loc) · 2.7 KB
/
LS2SDK.podspec
File metadata and controls
78 lines (65 loc) · 2.7 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#
# Be sure to run `pod lib lint LS2SDK.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'LS2SDK'
s.version = '0.14.0'
s.summary = 'A short description of LS2SDK.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'https://github.com/CuriosityHealth/LS2SDK-iOS'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { 'jdkizer9' => 'jdkizer9@users.noreply.github.com' }
s.source = { :git => 'https://github.com/CuriosityHealth/LS2SDK-iOS.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.ios.deployment_target = '10.0'
s.swift_version = '5.0'
s.subspec 'Common' do |common|
common.source_files = 'Source/Common/**/*'
common.dependency 'Gloss', '~> 2.0'
end
s.subspec 'Core' do |core|
core.source_files = 'Source/Core/**/*'
core.dependency 'LS2SDK/Common'
core.dependency 'Alamofire', '~> 4'
core.dependency 'ResearchSuiteExtensions', '~> 0.17'
core.dependency 'Gloss', '~> 2.0'
end
s.subspec 'RKSupport' do |rks|
rks.source_files = 'Source/RKSupport/**/*'
rks.dependency 'LS2SDK/Core'
rks.dependency 'ResearchKit', '~> 1.5'
end
s.subspec 'RSTBSupport' do |rstb|
rstb.source_files = 'Source/RSTBSupport/**/*'
rstb.dependency 'LS2SDK/Core'
rstb.dependency 'LS2SDK/RKSupport'
rstb.dependency 'ResearchSuiteTaskBuilder', '~> 0.12'
end
s.subspec 'RSRPSupport' do |rsrp|
rsrp.source_files = 'Source/RSRPSupport/**/*'
rsrp.dependency 'LS2SDK/Core'
rsrp.dependency 'ResearchSuiteResultsProcessor', '~> 0.9'
end
s.subspec 'Database' do |db|
db.source_files = 'Source/Database/**/*'
db.dependency 'LS2SDK/Common'
db.dependency 'LS2SDK/RSRPSupport'
db.dependency 'RealmSwift', '~> 3'
db.dependency 'ResearchSuiteResultsProcessor', '~> 0.9'
db.dependency 'ResearchSuiteExtensions', '~> 0.17'
end
s.default_subspec = 'Common', 'Core', 'RKSupport', 'RSTBSupport', 'RSRPSupport'
# s.default_subspec = 'Core'
end