-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRxSwiftSupplement.podspec
31 lines (27 loc) · 1.09 KB
/
RxSwiftSupplement.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
Pod::Spec.new do |s|
s.name = "RxSwiftSupplement"
s.version = "2.0.0"
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}" }
s.platform = :ios, "13.0"
s.swift_versions = ["5.1"]
s.requires_arc = true
# Core dependency
s.dependency "ThreadSafe", "~> 1.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