RxSwift/RxBlocking.podspec

29 lines
1020 B
Plaintext
Raw Normal View History

2015-07-12 22:13:38 +03:00
Pod::Spec.new do |s|
s.name = "RxBlocking"
2016-08-21 04:44:23 +03:00
s.version = "3.0.0.alpha.1"
2015-08-03 01:09:58 +03:00
s.summary = "RxSwift Blocking operatos"
2015-07-12 22:13:38 +03:00
s.description = <<-DESC
2015-12-20 03:28:29 +03:00
Set of blocking operators for RxSwift. These operators are mostly intended for unit/integration tests
with a couple of other special scenarios where they could be useful.
E.g.
Waiting for observable sequence to complete before exiting command line application.
2015-07-12 22:13:38 +03:00
DESC
2015-09-01 13:21:06 +03:00
s.homepage = "https://github.com/ReactiveX/RxSwift"
2015-07-12 22:13:38 +03:00
s.license = 'MIT'
s.author = { "Krunoslav Zaher" => "krunoslav.zaher@gmail.com" }
2015-09-01 13:21:06 +03:00
s.source = { :git => "https://github.com/ReactiveX/RxSwift.git", :tag => s.version.to_s }
2015-07-12 22:13:38 +03:00
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
2015-10-04 13:22:30 +03:00
s.tvos.deployment_target = '9.0'
2015-07-12 22:13:38 +03:00
2015-08-24 02:28:57 +03:00
s.source_files = 'RxBlocking/**/*.swift'
2015-07-12 22:13:38 +03:00
2016-08-21 04:44:23 +03:00
s.dependency 'RxSwift', '~> 3.0.0.alpha.1'
2015-07-12 22:13:38 +03:00
end