-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRxSwiftSupplement.podspec
More file actions
33 lines (27 loc) · 934 Bytes
/
Copy pathRxSwiftSupplement.podspec
File metadata and controls
33 lines (27 loc) · 934 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
28
29
30
31
32
33
Pod::Spec.new do |s|
s.name = "RxSwiftSupplement"
s.version = "5.0.0"
s.platforms = { :ios => "15.0" }
s.swift_versions = ["5.9"]
s.requires_arc = true
s.summary = "RxSwift Supplement"
s.homepage = "https://github.com/CloudlessMoon/RxSwiftSupplement"
s.license = "MIT"
s.author = "CloudlessMoon"
s.source = { :git => "https://github.com/CloudlessMoon/RxSwiftSupplement.git", :tag => s.version.to_s }
# Core dependency
s.dependency "ThreadSafe", "~> 2.0"
s.dependency "RxSwift", "~> 6.0"
s.dependency "RxRelay", "~> 6.0"
s.subspec "Core" do |ss|
ss.source_files = "Sources/Core/**/*.{swift}"
end
s.subspec "PropertyWrapper" do |ss|
ss.source_files = "Sources/PropertyWrapper/**/*.{swift}"
ss.dependency "RxSwiftSupplement/Core"
end
s.subspec "DisposeBag" do |ss|
ss.source_files = "Sources/DisposeBag/**/*.{swift}"
ss.dependency "RxSwiftSupplement/Core"
end
end