[Add] YIM 2.2.1
[CocoaPods.git] / Specs / 5 / d / c / RxMKMapView / 1.0.5 / RxMKMapView.podspec.json
blob2d0b523098fce2cc925fcb1ae0bfc62cb1ba7f59
2   "name": "RxMKMapView",
3   "version": "1.0.5",
4   "summary": "Reactive wrapper for MKMapView `delegate`.",
5   "description": "RxMKMapView is a Reactive wrapper for MKMapView `delegate`.\n\n```swift\n\nlet mapView = MKMapView(frame: view.frame)\nview.addSubview(mapView)\n\nmapView.rx_mapViewWillStartLoadingMap\n.subscribeNext {\n  print(\"rx_mapViewWillStartLoadingMap\")\n}.addDisposableTo(disposeBag)\n\nmapView.rx_mapViewDidFinishLoadingMap\n.subscribeNext { _ in\n  print(\"rx_mapViewDidFinishLoadingMap\")\n}.addDisposableTo(disposeBag)\n\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": "1.0.5"
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.0"
29     ],
30     "RxSwift": [
31       "~> 2.0"
32     ],
33     "RxBlocking": [
34       "~> 2.0"
35     ]
36   },
37   "frameworks": "Foundation"