-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathKumo.podspec
More file actions
27 lines (22 loc) · 893 Bytes
/
Kumo.podspec
File metadata and controls
27 lines (22 loc) · 893 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 = 'Kumo'
s.version = '3.0.0'
s.summary = 'Simple networking with little boilerplate built with reactive programming.'
s.homepage = 'https://gitlab.duethealth.com/ios-projects/Dependencies/Kumo'
s.license = 'MIT'
s.author = 'ライアン'
s.source = { git: 'https://gitlab.duethealth.com/ios-projects/Dependencies/Kumo.git', tag: "#{s.version}" }
s.swift_version = '5.5'
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '12.0'
s.tvos.deployment_target = '15.0'
s.default_subspecs = 'Kumo', 'KumoCoding'
s.subspec 'KumoCoding' do |sp|
sp.name = 'KumoCoding'
sp.source_files = 'Sources/KumoCoding/**/*.{h,m,swift}'
end
s.subspec 'Kumo' do |myLib|
myLib.dependency 'Kumo/KumoCoding'
myLib.source_files = 'Sources/Kumo/**/*.{h,m,swift}'
end
end