[Add] VisualEffectBlurView 6.0.0
[CocoaPods.git] / Specs / 1 / a / c / RxWebKit / 0.3 / RxWebKit.podspec.json
blobc63537903a1abab6713b00ad0456e83d109ea7ab
2   "name": "RxWebKit",
3   "version": "0.3",
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    .addDisposableTo(disposeBag)\n\nwebView.rx.url\n    .subscribe(onNext: {\n        print(\"URL: ($0)\")\n    })\n    .addDisposableTo(disposeBag)\n```",
6   "homepage": "https://github.com/RxSwiftCommunity/RxWebKit",
7   "license": "MIT",
8   "authors": {
9     "mokumoku": "da1lawmoku2@gmail.com"
10   },
11   "source": {
12     "git": "https://github.com/RxSwiftCommunity/RxWebKit.git",
13     "tag": "0.3"
14   },
15   "source_files": "RxWebKit/Sources/**/*.swift",
16   "platforms": {
17     "ios": "8.0"
18   },
19   "dependencies": {
20     "RxSwift": [
21       "~> 3.0.0-beta.1"
22     ],
23     "RxCocoa": [
24       "~> 3.0.0-beta.1"
25     ]
26   }