[Add] DocumentReaderMRZStage 7.5.10959
[CocoaPods.git] / Specs / 1 / a / c / RxWebKit / 0.2.2 / RxWebKit.podspec.json
blobaecadf5d752eadcdb1af352233abb65247973d61
2   "name": "RxWebKit",
3   "version": "0.2.2",
4   "summary": "RxWebKit is a RxSwift wrapper for WebKit.",
5   "description": "RxWebKit is a RxSwift wrapper for `WebKit`.\n\n```swift\n// MARK: Setup WKWebView\n\nlet webView = WKWebView(frame: self.view.bounds)\nself.view.addSubview(webView)\n\n\n// MARK: Observing properties\n\nwebView.rx_title\n    .subscribeNext {\n        print(\"title: ($0)\")\n    }\n    .addDisposableTo(disposeBag)\n\nwebView.rx_URL\n    .subscribeNext {\n        print(\"URL: ($0)\")\n    }\n    .addDisposableTo(disposeBag)\n```",
6   "homepage": "https://github.com/RxSwiftCommunity/RxWebKit",
7   "license": "MIT",
8   "authors": {
9     "mokumoku": "da1lawmoku2@gmail.com"
10   },
11   "source": {
12     "git": "https://github.com/RxSwiftCommunity/RxWebKit.git",
13     "tag": "0.2.2"
14   },
15   "source_files": "RxWebKit/Sources/**/*.swift",
16   "platforms": {
17     "ios": "8.0"
18   },
19   "dependencies": {
20     "RxSwift": [
21       "~> 2.1"
22     ],
23     "RxCocoa": [
24       "~> 2.1"
25     ]
26   }