-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathCombineX.podspec
34 lines (26 loc) · 1.02 KB
/
CombineX.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
Pod::Spec.new do |s|
s.name = "CombineX"
s.version = "0.4.0"
s.summary = "Open source implementation for Apple's Combine."
s.homepage = "https://github.com/cx-org/CombineX"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Quentin Jin" => "luoxiustm@gmail.com", "ddddxxx" => "dengxiang2010@gmail.com" }
s.swift_versions = ['5.0']
s.osx.deployment_target = "10.10"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/cx-org/CombineX.git", :tag => "#{s.version}" }
s.subspec "CXUtility" do |ss|
ss.source_files = "Sources/CXUtility/**/*.swift"
end
s.subspec "Main" do |ss|
ss.source_files = "Sources/CombineX/**/*.swift"
ss.dependency "CombineX/CXUtility"
end
s.subspec "CXFoundation" do |ss|
ss.source_files = "Sources/CXFoundation/**/*.swift"
ss.dependency "CombineX/Main"
end
s.default_subspec = 'Main'
end