-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFunNet.podspec
More file actions
74 lines (59 loc) · 2.23 KB
/
FunNet.podspec
File metadata and controls
74 lines (59 loc) · 2.23 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 FunNet.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 https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'FunNet'
s.version = '0.1.1'
s.summary = 'FunNet provides a foundation for reusable functional networking in Swift.'
s.swift_versions = ['4.2', '5.0', '5.1', '5.2', '5.3']
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'https://github.com/schrockblock/funnet'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Elliot' => '' }
s.source = { :git => 'https://github.com/LithoByte/funnet.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/elliot_schrock'
s.ios.deployment_target = '11.0'
s.source_files = 'Sources/funnet/**/*'
s.dependency 'LithoOperators'
s.subspec 'Core' do |sp|
sp.source_files = 'Sources/funnet/Core/**/*.swift'
sp.dependency 'LithoOperators'
sp.dependency 'LithoUtils/Core'
sp.dependency 'Slippers/Core'
end
s.subspec 'Combine' do |sp|
sp.source_files = 'Sources/funnet/Combine/**/*.swift'
sp.ios.deployment_target = '13.0'
sp.dependency 'FunNet/Core'
sp.framework = 'Combine'
end
s.subspec 'ReactiveSwift' do |sp|
sp.source_files = 'Sources/funnet/ReactiveSwift/**/*'
sp.dependency 'FunNet/Core'
sp.dependency 'ReactiveSwift'
end
s.subspec 'Multipart' do |sp|
sp.source_files = 'Sources/funnet/Multipart/**/*.swift'
sp.dependency 'LithoOperators'
end
s.subspec 'ErrorHandling' do |sp|
sp.source_files = 'Sources/funnet/ErrorHandling/**/*.swift'
sp.dependency 'LithoOperators'
sp.dependency 'LithoUtils/Core'
sp.dependency 'Slippers/Core'
end
s.subspec 'ErrorHandlingCombine' do |sp|
sp.source_files = 'Sources/funnet/ErrorHandlingCombine/**/*.swift'
sp.dependency 'FunNet/ErrorHandling'
sp.dependency 'LithoOperators'
sp.dependency 'LithoUtils/Core'
sp.dependency 'Slippers/Core'
sp.framework = 'Combine'
end
end