-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodspec.template
More file actions
24 lines (21 loc) · 1.04 KB
/
Podspec.template
File metadata and controls
24 lines (21 loc) · 1.04 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
Pod::Spec.new do |s|
s.name = 'SwiftyWorkflow'
s.version = '{{VERSION_NUMBER}}'
s.summary = 'Workflows abstraction for Swift. Business oriented declarative way of creating Swift apps.'
s.description = <<-DESC
Library that abstracts navigation, to provide business oriented declarative way of creating views flow.
Handles dependency injection containers and UIKit independent navigation abstraction.
DESC
s.homepage = 'https://github.com/GirAppe/SwiftyWorkflow'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Andrzej Michnia' => 'amichnia@gmail.com' }
s.source = { :git => 'https://github.com/GirAppe/SwiftyWorkflow.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.swift_versions = ['5.0', '5.1.2']
s.default_subspec = "Core"
s.preserve_paths = '*'
s.subspec 'Core' do |core|
core.source_files = 'SwiftyWorkflow/{Categories,Workflow,Injection,Routing}/*'
core.frameworks = 'Foundation'
end
end