-
Notifications
You must be signed in to change notification settings - Fork 213
/
RxSwiftExt.podspec
32 lines (28 loc) · 1.12 KB
/
RxSwiftExt.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
Pod::Spec.new do |s|
s.name = "RxSwiftExt"
s.version = "6.2.1"
s.summary = "RxSwift operators not found in the core distribtion"
s.description = <<-DESC
A collection of operators for RxSwift adding commonly requested operations not found in the core distribution
of RxSwift.
DESC
s.homepage = "https://github.com/RxSwiftCommunity/RxSwiftExt"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "RxSwiftCommunity" => "https://github.com/RxSwiftCommunity" }
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
s.watchos.deployment_target = '4.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => "https://github.com/RxSwiftCommunity/RxSwiftExt.git", :tag => s.version }
s.subspec "Core" do |cs|
cs.source_files = "Source/RxSwift", "Source/Tools"
cs.frameworks = "Foundation"
cs.dependency "RxSwift", '~> 6.0'
end
s.subspec "RxCocoa" do |co|
co.source_files = "Source/RxCocoa"
co.frameworks = "Foundation"
co.dependency "RxCocoa", '~> 6.0'
co.dependency "RxSwiftExt/Core"
end
end