-
Notifications
You must be signed in to change notification settings - Fork 2
/
flowkit-ios.podspec
35 lines (27 loc) · 1.15 KB
/
flowkit-ios.podspec
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
Pod::Spec.new do |s|
s.name = 'flowkit-ios'
s.version = '1.0.3'
s.summary = 'Dynamic and type-safe framework for building linear and non-linear flows'
s.description = "FlowKit is a dynamic flow framework capable of building a flow, based on conditions and ordered according to a logic of next steps"
s.homepage = 'https://github.com/n26/flowkit-ios/tree/main'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'NA' => 'N26 AG' }
s.source = { :git => 'git@github.com:n26/flowkit-ios.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.swift_version = '5.0'
s.module_name = 'FlowKit'
s.default_subspec = 'Core'
s.subspec 'Core' do |sp|
sp.source_files = 'flowkit-ios/Classes/**/*'
end
s.test_spec 'Tests' do |test_spec|
test_spec.requires_app_host = false
test_spec.dependency 'Quick'
test_spec.dependency 'Nimble'
test_spec.source_files = ['flowkit-ios/Tests/Classes/**/*.{swift}']
end
s.subspec 'Additions' do |sp|
sp.source_files = 'flowkitAdditions/Classes/**/*'
sp.dependency 'flowkit-ios/Core'
end
end