blob: 3b7a1bb0f0163cc7dc8575323fadd17e2169a2d9 [file] [log] [blame]
{
"name": "RxSwift",
"version": "6.0.0-rc.1",
"summary": "RxSwift is a Swift implementation of Reactive Extensions",
"description": "This is a Swift port of [ReactiveX.io](https://github.com/ReactiveX)\n\nLike the original [Rx](https://github.com/Reactive-extensions/Rx.Net), its intention is to enable easy composition of asynchronous operations and event streams.\n\nIt 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.\n\nProbably the best analogy for those who have never heard of Rx would be:\n\n```\ngit diff | grep bug | less # linux pipes - programs communicate by sending\n\t\t\t\t # sequences of bytes, words, lines, '\u0000' terminated strings...\n```\nwould become if written in RxSwift\n```\ngitDiff().grep(\"bug\").less // sequences of swift objects\n```",
"homepage": "https://github.com/ReactiveX/RxSwift",
"license": "MIT",
"authors": {
"Krunoslav Zaher": "krunoslav.zaher@gmail.com"
},
"source": {
"git": "https://github.com/ReactiveX/RxSwift.git",
"tag": "6.0.0-rc.1"
},
"requires_arc": true,
"platforms": {
"ios": "9.0",
"osx": "10.9",
"watchos": "3.0",
"tvos": "9.0"
},
"source_files": [
"RxSwift/**/*.swift",
"Platform/**/*.swift"
],
"exclude_files": "RxSwift/Platform/**/*.swift",
"swift_versions": "5.1",
"swift_version": "5.1"
}