[Add] HyphenateChat_test1 1.0.1
[CocoaPods.git] / Specs / 1 / a / c / RxWebKit / 1.0.0 / RxWebKit.podspec.json
blob5692409e0b9eab81707f23aecd26a2272b76aad7
2   "name": "RxWebKit",
3   "version": "1.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": "1.0.0"
15   },
16   "source_files": "RxWebKit/Sources/**/*.{swift}",
17   "platforms": {
18     "ios": "8.0"
19   },
20   "exclude_files": [
21     "RxWebKit/Sources/*.{plist}",
22     "RxWebKit/Sources/**/*.{plist}",
23     "RxWebKit/*.{plist}",
24     "8.0"
25   ],
26   "swift_version": "5.0",
27   "dependencies": {
28     "RxSwift": [
29       "~> 5.0"
30     ],
31     "RxCocoa": [
32       "~> 5.0"
33     ]
34   }