RxSwift/RxSwift.podspec

40 lines
1.6 KiB
Plaintext
Raw Normal View History

2015-04-10 02:54:44 +03:00
Pod::Spec.new do |s|
s.name = "RxSwift"
2020-02-08 19:07:39 +03:00
s.version = "5.1.0"
2016-01-01 20:08:10 +03:00
s.summary = "RxSwift is a Swift implementation of Reactive Extensions"
2015-04-10 02:54:44 +03:00
s.description = <<-DESC
2015-12-20 03:28:29 +03:00
This is a Swift port of [ReactiveX.io](https://github.com/ReactiveX)
2015-04-10 02:54:44 +03:00
2015-12-20 03:28:29 +03:00
Like the original [Rx](https://github.com/Reactive-extensions/Rx.Net), its intention is to enable easy composition of asynchronous operations and event streams.
2015-04-10 02:54:44 +03:00
2016-10-20 01:03:41 +03:00
It tries to port as many concepts from the original Rx as possible, but some concepts were adapted for more pleasant and performant integration with iOS/macOS/Linux environment.
2015-04-10 02:54:44 +03:00
2015-12-20 03:28:29 +03:00
Probably the best analogy for those who have never heard of Rx would be:
2015-04-10 02:54:44 +03:00
2015-12-20 03:28:29 +03:00
```
git diff | grep bug | less # linux pipes - programs communicate by sending
# sequences of bytes, words, lines, '\0' terminated strings...
```
would become if written in RxSwift
```
gitDiff().grep("bug").less // sequences of swift objects
```
2015-04-10 02:54:44 +03:00
DESC
2015-09-01 13:21:06 +03:00
s.homepage = "https://github.com/ReactiveX/RxSwift"
2015-04-10 02:54:44 +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-05-21 21:48:01 +03:00
s.requires_arc = true
2015-05-11 00:04:29 +03:00
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
2018-11-01 22:49:44 +03:00
s.watchos.deployment_target = '3.0'
2015-10-04 13:22:30 +03:00
s.tvos.deployment_target = '9.0'
2015-05-21 21:48:01 +03:00
2016-10-17 00:46:27 +03:00
s.source_files = 'RxSwift/**/*.swift', 'Platform/**/*.swift'
s.exclude_files = 'RxSwift/Platform/**/*.swift'
2019-04-06 22:24:05 +03:00
s.swift_version = '5.0'
2015-04-10 02:54:44 +03:00
end