blob: c345caf1432822e34d6ece852dfe0797a91edff4 [file] [log] [blame]
{
"name": "RxWebKit",
"version": "1.0.2",
"summary": "RxWebKit is a RxSwift wrapper for WebKit.",
"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```",
"homepage": "https://github.com/RxSwiftCommunity/RxWebKit",
"license": "MIT",
"authors": {
"mokumoku": "da1lawmoku2@gmail.com",
"RxSwift Community": "community@rxswift.org"
},
"source": {
"git": "https://github.com/RxSwiftCommunity/RxWebKit.git",
"tag": "1.0.2"
},
"source_files": "RxWebKit/Sources/**/*.{swift}",
"exclude_files": "RxWebKit/Sources/**/*.{plist}",
"platforms": {
"ios": "8.0"
},
"swift_versions": "5.0",
"dependencies": {
"RxSwift": [
"~> 5.0"
],
"RxCocoa": [
"~> 5.0"
]
},
"swift_version": "5.0"
}