-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResearchSuiteApplicationFramework.podspec
More file actions
74 lines (64 loc) · 3 KB
/
ResearchSuiteApplicationFramework.podspec
File metadata and controls
74 lines (64 loc) · 3 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
#
# Be sure to run `pod lib lint ResearchSuiteApplicationFramework.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 = 'ResearchSuiteApplicationFramework'
s.version = '0.35.0'
s.summary = 'The ResearchSuite Application Framework is the easiest way to build mobile health research studies.'
# 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
The ResearchSuite Application Framework is the easiest way to build mobile health research studies.
NOTE: VERY EXPERIMENTAL!!
DESC
s.homepage = 'https://github.com/CuriosityHealth/ResearchSuiteApplicationFramework-iOS'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.author = { 'jdkizer9' => 'jdkizer9@users.noreply.github.com' }
s.source = { :git => 'https://github.com/CuriosityHealth/ResearchSuiteApplicationFramework-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 'Core' do |core|
core.source_files = 'Source/Core/Classes/**/*'
core.resources = 'Source/Core/Storyboards/**/*', 'source/Core/Assets/Media.xcassets'
core.dependency 'ResearchKit', '~> 1.4'
core.dependency 'ReSwift', '~> 3.0'
core.dependency 'ResearchSuiteTaskBuilder', '~> 0.13'
core.dependency 'ResearchSuiteResultsProcessor', '~> 0.9'
core.dependency 'ResearchSuiteExtensions', '~> 0.28'
core.dependency 'Gloss', '~> 2'
core.dependency 'SimplePDF', '~> 3'
core.dependency 'GRMustache.swift', '~> 4'
core.dependency 'FSCalendar'
core.dependency 'SnapKit'
core.dependency 'LS2SDK/Common', '~> 0.11'
end
s.subspec 'Development' do |dev|
dev.source_files = 'Source/Development/Classes/**/*'
dev.dependency 'ResearchSuiteApplicationFramework/Core'
dev.dependency 'Starscream', '~> 3.0'
dev.dependency 'ReSwift', '~> 3.0'
dev.dependency 'Gloss', '~> 2'
end
s.subspec 'Database' do |db|
db.source_files = 'Source/Database/**/*'
db.dependency 'ResearchSuiteApplicationFramework/Core'
db.dependency 'RealmSwift', '~> 3'
db.dependency 'LS2SDK/Common', '~> 0.11'
db.dependency 'LS2SDK/Database', '~> 0.11'
end
s.subspec 'ConfigCaching' do |config|
config.source_files = 'Source/ConfigCache/**/*'
config.dependency 'ResearchSuiteApplicationFramework/Core'
config.dependency 'Zip', '~> 1.1'
config.dependency 'Alamofire', '~> 4'
end
s.default_subspec = 'Core'
end