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",
9 "mokumoku": "da1lawmoku2@gmail.com",
10 "RxSwift Community": "community@rxswift.org"
13 "git": "https://github.com/RxSwiftCommunity/RxWebKit.git",
16 "source_files": "RxWebKit/Sources/**/*.{swift}",
17 "exclude_files": "RxWebKit/Sources/**/*.{plist}",
21 "swift_versions": "5.0",
30 "swift_version": "5.0"