blob: 27932bb9c70d53b9aec8cb11c6bf6402d9e38f2b [file] [log] [blame]
{
"name": "RxSwift",
"version": "1.9.1",
"summary": "Microsoft Reactive Extensions (Rx) for Swift and iOS/OSX platform",
"description": "This is a Swift port of Reactive extensions.\n\n[https://github.com/Reactive-Extensions](https://github.com/Reactive-Extensions)\n\nLike the original Rx, 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/OSX environment.\n\nProbably the best analogy for those who have never heard of Rx would be:\n\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 // rx sink (>-) operator - rx units communicate by sending\n\t\t\t\t // sequences of swift objects\n```",
"homepage": "https://github.com/kzaher/RxSwift",
"license": "MIT",
"authors": {
"Krunoslav Zaher": "krunoslav.zaher@gmail.com"
},
"source": {
"git": "https://github.com/kzaher/RxSwift.git",
"tag": "1.9.1"
},
"requires_arc": true,
"platforms": {
"ios": "8.0",
"osx": "10.9"
},
"source_files": "RxSwift/RxSwift/**/*.swift"
}