blob: 5692409e0b9eab81707f23aecd26a2272b76aad7 [file] [log] [blame]
{
"name": "RxWebKit",
"version": "1.0.0",
"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.0"
},
"source_files": "RxWebKit/Sources/**/*.{swift}",
"platforms": {
"ios": "8.0"
},
"exclude_files": [
"RxWebKit/Sources/*.{plist}",
"RxWebKit/Sources/**/*.{plist}",
"RxWebKit/*.{plist}",
"8.0"
],
"swift_version": "5.0",
"dependencies": {
"RxSwift": [
"~> 5.0"
],
"RxCocoa": [
"~> 5.0"
]
}
}