[Add] VisualEffectBlurView 6.0.0
[CocoaPods.git] / Specs / 1 / a / c / RxWebKit / 2.0.0 / RxWebKit.podspec.json
blob55c5f2c0b64b04a7a9d71dbf9a60557521dd9c0f
2   "name": "RxWebKit",
3   "version": "2.0.0",
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": "2.0.0"
15   },
16   "source_files": "RxWebKit/Sources/**/*.{swift}",
17   "exclude_files": "RxWebKit/Sources/**/*.{plist}",
18   "platforms": {
19     "ios": "9.0",
20     "osx": "10.13"
21   },
22   "swift_versions": "5.0",
23   "dependencies": {
24     "RxSwift": [
25       "~> 6.0"
26     ],
27     "RxCocoa": [
28       "~> 6.0"
29     ]
30   },
31   "swift_version": "5.0"