[Add] YLCategory-MacOS 1.1.3
[CocoaPods.git] / Specs / 5 / d / c / RxMKMapView / 2.0.3 / RxMKMapView.podspec.json
blobad814eb731ea7c91adf8627826e3fd3b14214de9
2   "name": "RxMKMapView",
3   "version": "2.0.3",
4   "summary": "Reactive wrapper for MKMapView `delegate`",
5   "description": "RxMKMapView is a Reactive wrapper for MKMapView `delegate`.\n\n```swift\nlet mapView = MKMapView(frame: view.frame)\nview.addSubview(mapView)\n\nmapView.rx_WillStartLoadingMap\n    .asDriver()\n    .driveeNext {\n        print(\"rx_WillStartLoadingMap\")\n    }.addDisposableTo(disposeBag)\n\nmapView.rx_DidFinishLoadingMap\n    .asDriver()\n    .driveNext {\n        print(\"rx_DidFinishLoadingMap\")\n    }.addDisposableTo(disposeBag)\n```",
6   "homepage": "https://github.com/sger/RxMKMapView",
7   "license": "MIT",
8   "authors": {
9     "Spiros Gerokostas": "spiros.gerokostas@gmail.com"
10   },
11   "source": {
12     "git": "https://github.com/sger/RxMKMapView.git",
13     "tag": "2.0.3"
14   },
15   "social_media_url": "https://twitter.com/sger",
16   "platforms": {
17     "ios": "8.0"
18   },
19   "requires_arc": true,
20   "source_files": "Pod/Classes/**/*",
21   "resource_bundles": {
22     "RxMKMapView": [
23       "Pod/Assets/*.png"
24     ]
25   },
26   "dependencies": {
27     "RxCocoa": [
28       "~> 2.3.1"
29     ],
30     "RxSwift": [
31       "~> 2.3.1"
32     ]
33   },
34   "frameworks": "Foundation"