RxSwift/RxRelay.podspec
2021-05-08 18:20:49 +03:00

30 lines
933 B
Ruby

Pod::Spec.new do |s|
s.name = "RxRelay"
s.version = "6.2.0"
s.summary = "Relays for RxSwift - PublishRelay, BehaviorRelay and ReplayRelay"
s.description = <<-DESC
Relays for RxSwift - PublishRelay, BehaviorRelay and ReplayRelay
* PublishRelay
* BehaviorRelay
* ReplayRelay
* Binding overloads
DESC
s.homepage = "https://github.com/ReactiveX/RxSwift"
s.license = 'MIT'
s.author = { "Krunoslav Zaher" => "krunoslav.zaher@gmail.com" }
s.source = { :git => "https://github.com/ReactiveX/RxSwift.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'RxRelay/**/*.{swift,h,m}'
s.dependency 'RxSwift', '6.2.0'
s.swift_version = '5.1'
end