[Add] YLProgressHUD 0.0.2
[CocoaPods.git] / Specs / d / 6 / 0 / BDUIViewUpdateQueue / 0.1.0 / BDUIViewUpdateQueue.podspec.json
blob08b2a5cd6444a13f281dbc926f2c6a688dcd565d
2   "name": "BDUIViewUpdateQueue",
3   "version": "0.1.0",
4   "summary": "A class helps queuing asynchronous updates of UITableView (or UICollectionView).",
5   "description": "                      When using UITableView or UICollectionView, asynchronous updating of your datasource and your view can be difficult without proper queuing. Sometimes upating these views can even crash your app (NSInternalInconsistencyException dreads). \n\n`BDUIViewUpdateQueue` uses GCD (`dispatch_queue_t`) to lock your view to a serial queue, then execute your block in the main queue. That way datasource will always sync up with the state of your UITableView or UICollectionView. Other views will also work.\n\n",
6   "homepage": "https://github.com/norsez/BDUIViewUpdateQueue",
7   "license": "MIT",
8   "authors": {
9     "Norsez Orankijanan": "norsez@gmail.com"
10   },
11   "source": {
12     "git": "https://github.com/norsez/BDUIViewUpdateQueue.git",
13     "tag": "0.1.0"
14   },
15   "platforms": {
16     "ios": "6.0"
17   },
18   "requires_arc": true,
19   "source_files": "Pod/Classes/**/*",
20   "resource_bundles": {
21     "BDUIViewUpdateQueue": [
22       "Pod/Assets/*.png"
23     ]
24   }