[Add] DocumentReaderOCRRFIDStage 7.5.11035
[CocoaPods.git] / Specs / 1 / a / c / RxWebKit / 1.0.2 / RxWebKit.podspec.json
blobc345caf1432822e34d6ece852dfe0797a91edff4
2   "name": "RxWebKit",
3   "version": "1.0.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    .subscribe(onNext: {\n        print(\"title: ($0)\")\n    })\n    .disposed(by: disposeBag)\n\nwebView.rx.url\n    .subscribe(onNext: {\n        print(\"URL: ($0)\")\n    })\n    .disposed(by: disposeBag)\n```",
6   "homepage": "https://github.com/RxSwiftCommunity/RxWebKit",
7   "license": "MIT",
8   "authors": {
9     "mokumoku": "da1lawmoku2@gmail.com",
10     "RxSwift Community": "community@rxswift.org"
11   },
12   "source": {
13     "git": "https://github.com/RxSwiftCommunity/RxWebKit.git",
14     "tag": "1.0.2"
15   },
16   "source_files": "RxWebKit/Sources/**/*.{swift}",
17   "exclude_files": "RxWebKit/Sources/**/*.{plist}",
18   "platforms": {
19     "ios": "8.0"
20   },
21   "swift_versions": "5.0",
22   "dependencies": {
23     "RxSwift": [
24       "~> 5.0"
25     ],
26     "RxCocoa": [
27       "~> 5.0"
28     ]
29   },
30   "swift_version": "5.0"