[Add] MentaKSAdapter 5.20.35
[CocoaPods.git] / Specs / 9 / 2 / 1 / DZAUnsafeMutableArray / 0.1.0 / DZAUnsafeMutableArray.podspec.json
blobb744c40c3667cbc75fb44fbb568ce3b79627878a
2   "name": "DZAUnsafeMutableArray",
3   "version": "0.1.0",
4   "summary": "An Objective-C wrapper around a c auto-growing pointer array.",
5   "description": "I built this library because I'm rewriting [RouletteBetter](https://itunes.apple.com/us/app/roulettebetter-odds-calculator-betting-strategies-for/id310598685?mt=8) and I wanted a way to make *lot* of statistics calculation on vectors. To do so, we can use the [iOS Accelerate framework](https://developer.apple.com/documentation/accelerate) to 'Make large-scale mathematical computations and image calculations, optimized for high performance'. Unfortunately the Accelerate framework wants basic c pointer array as input/output parameters, so we can't use NSMutableArray or high level NSObjects.\n\nWith this wrapper library, we can easily create and manupulate the c pointer array as an high level object and, whenewer we need it, access the low level pointer property (for example to pass it to the Accelerate framework c functions).",
6   "homepage": "https://github.com/Dzamir/DZAUnsafeMutableArray",
7   "screenshots": [
8     "https://raw.githubusercontent.com/Dzamir/DZAUnsafeMutableArray/master/screen_2.jpg",
9     "https://raw.githubusercontent.com/Dzamir/DZAUnsafeMutableArray/master/screen_1.jpg"
10   ],
11   "license": {
12     "type": "MIT",
13     "file": "LICENSE"
14   },
15   "authors": {
16     "Davide Di Stefano": "dzamirro@gmail.com"
17   },
18   "source": {
19     "git": "https://github.com/Dzamir/DZAUnsafeMutableArray.git",
20     "tag": "0.1.0"
21   },
22   "social_media_url": "https://twitter.com/dzamir",
23   "platforms": {
24     "ios": "8.0"
25   },
26   "source_files": "DZAUnsafeMutableArray/Classes/**/*"