forked from CRedit360/WorkflowSchema
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorkflowSchema.podspec
More file actions
27 lines (23 loc) · 885 Bytes
/
WorkflowSchema.podspec
File metadata and controls
27 lines (23 loc) · 885 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 = "WorkflowSchema"
s.version = "0.5.0"
s.summary = "An iOS framework which allows you to define app workflows in XML."
s.homepage = "https://github.com/CRedit360/WorkflowSchema"
s.license = 'MIT'
s.source = { :git => "https://github.com/CRedit360/WorkflowSchema.git", :tag => "0.5.0" }
s.platform = :ios, '5.0'
s.requires_arc = true
s.preferred_dependency = 'Core'
s.subspec 'All' do |ss|
ss.dependency 'WorkflowSchema/Core'
ss.dependency 'WorkflowSchema/DTCoreText'
end
s.subspec 'Core' do |ss|
ss.source_files = 'WorkflowSchema/Code'
end
s.subspec 'DTCoreText' do |ss|
ss.source_files = 'WorkflowSchema/Modules/WorkflowSchema+DTCoreText/Code'
ss.dependency 'DTCoreText', '~> 1.0'
end
end